From cf280a4c83a21c600ca8aada38e01d985f4ab163 Mon Sep 17 00:00:00 2001 From: Jaehyun Cho Date: Tue, 19 Jul 2016 13:27:03 +0900 Subject: [PATCH] reference: Add part type keywords. box, group, image, part, proxy, rect, spacer, swallow, table, text, textblock, vector, and their children keywords are added. Notice that most of properties of part types are the same. Now the descriptions of the properties are duplicated. Notice that external part type is not added since there is no description about external part type. --- data/reference/reference.src | 1377 +++++++++++++++++++++++++++++++++- 1 file changed, 1366 insertions(+), 11 deletions(-) diff --git a/data/reference/reference.src b/data/reference/reference.src index 924fb76..8c3a2b0 100644 --- a/data/reference/reference.src +++ b/data/reference/reference.src @@ -66,29 +66,1384 @@ collections { "The collections represents a theme.
The parts represents visual elements.
The parts block contains a list of parts that describes a basic design element."; - part { "The part represents a basic design element such as an image, rectangle or text.
The part block contains a list of descriptions that defines a state of the element."; - desc { "The desc defines a state of a part.
The desc block contains properties of a part such as a size, position, color, image and text."; + box { "The box represents a box part. The box part is used to contain other objects.
The box block contains a list of descriptions that defines a state of the box part.
It also has a row or column."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } + desc { "The desc defines a state of a part.
The desc block inside of a box block contains properties of the box part."; + } + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } } } - image { "The image represents an image part. The image is used to display an image file.
The image block contains a list of descriptions that defines a state of the image part."; + + group { "The group represents a group part. The group part is used to include other group (widget style) inside of it.
The group block contains a list of descriptions that defines a state of the group part."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } + desc { "The desc defines a state of a part.
The desc block inside of a group block contains properties of the group part."; + } + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + } + + image { "The image represents an image part. The image part is used to display an image file.
The image block contains a list of descriptions that defines a state of the image part."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } desc { "The desc defines a state of a part.
The desc block inside of an image block contains properties of the image part such as an image resource file, size, position and color."; } - } - rect { "The rect represents a rectangle part. The rect is used to draw a rectangle.
The rect block contains a list of descriptions that defines a state of the rectangle part."; - desc { "The desc defines a state of a part.
The desc block inside of a rect block contains properties of the rect part such as a size, position and color."; + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } } } - text { "The text represents a text part. The text is used to write a simple string with single line in this part.
The text block contains a list of descriptions that defines a state of the text part."; - desc { "The desc defines a state of a part.
The desc block inside of a text block contains properties of the text part such as a text font, text size, text position and text color."; + + part { "The part represents a basic design element such as an image, rectangle or text.
The part block contains a list of descriptions that defines a state of the element."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } + desc { "The desc defines a state of a part.
The desc block contains properties of a part such as size, position, color, image and text."; + } + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } } } - textblock { "The textblock represents a textblock part. The textblock is used to write complex strings and mark-up elements with multiple lines in this part.
The textblock block contains a list of descriptions that defines a state of the textblock part."; - desc { "The desc defines a state of a part.
The desc block inside of a textblock block contains properties of the textblock part such as a text style, text font, text size, text position and text color."; + + proxy { "The proxy represents a proxy part. The proxy part is used to clone other part in the same group.
The proxy block contains a list of descriptions that defines a state of the proxy part."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } + desc { "The desc defines a state of a part.
The desc block inside of a proxy block contains properties of the proxy part."; + } + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } } } - swallow { "The swallow represents a swallow part. The swallow is used to set a widget into this part.
The swallow block contains a list of descriptions that defines a state of the swallow part."; + + rect { "The rect represents a rectangle part. The rect part is used to draw a rectangle.
The rect block contains a list of descriptions that defines a state of the rectangle part."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } + desc { "The desc defines a state of a part.
The desc block inside of a rect block contains properties of the rect part such as size, position and color."; + } + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + } + + spacer { "The spacer represents a spacer part. The spacer part is used as a padding area (it is not visible and it does not receive mouse events and it also does not need any memory allocation unlike other parts.).
The spacer block contains a list of descriptions that defines a state of the spacer part."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } + desc { "The desc defines a state of a part.
The desc block inside of a spacer block contains properties of the spacer part such as size and position."; + } + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + } + + swallow { "The swallow represents a swallow part. The swallow part is used to set a widget into this part.
The swallow block contains a list of descriptions that defines a state of the swallow part."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } desc { "The desc defines a state of a part.
The desc block inside of a swallow block contains properties of the swallow part such as size and position."; } + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + } + + table { "The table represents a table part. The table part is used to contain other parts.
The table block contains a list of descriptions that defines a state of the table part.
It also has a row and column."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } + desc { "The desc defines a state of a part.
The desc block inside of a table block contains properties of the table part."; + } + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + } + + text { "The text represents a text part. The text part is used to write a simple string with single line in this part.
The text block contains a list of descriptions that defines a state of the text part."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } + desc { "The desc defines a state of a part.
The desc block inside of a text block contains properties of the text part such as text font, text size, text position and text color."; + } + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + } + + textblock { "The textblock represents a textblock part. The textblock part is used to write complex strings and mark-up elements with multiple lines in this part.
The textblock block contains a list of descriptions that defines a state of the textblock part."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } + desc { "The desc defines a state of a part.
The desc block inside of a textblock block contains properties of the textblock part such as text style, text font, text size, text position and text color."; + } + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + } + + vector { "The vector represents a vector part. The vector part is used to display a vector file.
The vector block contains a list of descriptions that defines a state of the vector part."; + access { "Specifies whether the part uses accessibility feature (1), or not (0).
It is set to 0 by default."; + } + box { "On a box part, the box block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } + clip_to { "Only renders the area of the part that coincides with the given part."; + } + cursor_mode { "Sets where to draw the (blinking) cursor for textblock parts.
The available modes are UNDER and BEFORE."; + } + desc { "The desc defines a state of a part.
The desc block inside of a vector block contains properties of the vector part such as a vector resource file, size, and position."; + } + dragable { "When this block is used the part can be dragged around the interface, do not confuse with external drag and drop.
By default Edje (and most applications) attempts to use the minimal size possible for a draggable part.
If the min property is not set in the description the part is (most likely) set to 0px width and 0px height, thus invisible."; + confine { "Limits the movement of the dragged part to another part's container.
Set a min size for the part, or the dragged object will not show up."; + } + events { "Causes the part to forward the drag events to another part, thus ignoring them for itself."; + } + threshold { "When set, the movement of the dragged part can only start when it get moved enough to be outside of the threshold part."; + } + x { "Used to set up dragging events for the X axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as width of confine part divided by the third parameter,count."; + } + y { "Used to set up dragging events for the Y axis.
The first parameter is used to enable (1 or -1) and disable (0) dragging along the axis.
When enabled, 1 sets the starting point at 0.0 and -1 at 1.0.
The second parameter takes any integer and limits movement to values divisible by it, causing the part to jump from position to position.
If the second parameter, step, is set to 0 it is calculated as height of confine part divided by the third parameter, count."; + } + } + effect { "Applies the selected outline, shadow, or glow effect to textblock parts.
The available effects are PLAIN, OUTLINE, SOFT_OUTLINE, SHADOW, SOFT_SHADOW, OUTLINE_SHADOW, OUTLINE_SOFT_SHADOW, FAR_SHADOW, FAR_SOFT_SHADOW, and GLOW.
The available shadow directions definitions are BOTTOM_RIGHT, BOTTOM, BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, and RIGHT (default is BOTTOM_RIGHT)."; + } + entry_mode { "Sets the edit mode for textblock parts.
The available modes are NONE, PLAIN, EDITABLE, and PASSWORD."; + } + ignore_flags { "Specifies whether events with the given flags are ignored, i.e., do not emit signals to the parts.
Multiple flags must be separated by spaces, the effect is ignoring all events with one of the flags specified.
The available flags are NONE and ON_HOLD"; + } + insert_after { "Inserts the part above the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_after."; + } + insert_before { "Inserts the part below the given part.
Notice that one part cannot have both insert_before and insert_after.
Notice that one part cannot refer more than one by insert_before."; + } + mouse_events { "Specifies whether the part receives mouse events or not.
The default value is 1 (receiving mouse events)."; + } + multiline { "Specifies whether multiple lines are allowed for editable textblock parts."; + } + pointer_mode { "Sets the mouse pointer behavior for the given part.
The default value is AUTOGRAB.
The available modes are AUTOGRAB and NOGRAB."; + } + repeat_events { "Specifies whether the part passes mouse events to other parts below it.
The default value is 0 (not passing mouse events)."; + } + scale { "Specifies whether the part scales its size with an Edje scaling factor.
This is used to scale properties such as font size, min/max size of the part, and it can also be used to scale based on DPI of the target device.
The default value is 0 (not scaling)."; + } + select_mode { "Sets how the text selection is triggered for textblock parts.
The available modes are DEFAULT and EXPLICIT."; + } + source { "Sets the given group to the group/textblock parts."; + } + table { "On a box part, the table block is used to set other groups as elements of the box.
These can be mixed with external objects set by the application through the edje_object_part_box*() functions."; + items { "The items block contains a list of item blocks.
Each item item block contains other group as an element of the box."; + item { "The item item block contains other group as an element of the box."; + align { "Sets the alignment hints for this object."; + } + aspect { "Sets the aspect width and height hints for this object."; + } + aspect_mode { "Sets the aspect control hints for this object.
The available hints are NONE, NEITHER, HORIZONTAL, VERTICAL, and BOTH."; + } + max { "Sets the maximum size hints for this object."; + } + min { "Sets the minimum size hints for this object."; + } + name { "Sets the name of the object via evas_object_name_set()"; + } + options { "Sets extra options for the object."; + } + padding { "Sets the padding hints for this object."; + } + position { "Sets the position in the table."; + } + prefer { "Sets the preferred size hints for this object."; + } + source { "Sets the group this object is made of."; + } + span { "Sets how many columns and rows this item uses.
The default value is 1 1."; + } + spread { "Replicates the item in a rectangle of size width x height box starting from the defined position of this item.
The default value is 1 1."; + } + type { "Sets the type of the object this item holds.
The supported type is GROUP."; + } + weight { "Sets the weight hints for this object."; + } + } + } + } } }