Tizen Native API
6.0
|
Almost every evas object created will have some generic function used to manipulate it. That's because there are a number of basic actions to be done to objects that are irrespective of the object's type, things like:
- Showing/Hiding
- Setting (and getting) geometry
- Bring up or down a layer
- Color management
- Handling focus
- Clipping
- Reference counting
All of these issues are handled through the functions grouped here. Examples of these function can be seen in Evas objects basic manipulation example(which deals with the most common ones) and in Evas object stacking functions (and some event handling) (which deals with stacking functions).
Functions | |
void | evas_object_ref (Evas_Object *obj) |
void | evas_object_unref (Evas_Object *obj) |
int | evas_object_ref_get (const Evas_Object *obj) |
void | evas_object_del (Evas_Object *obj) |
const char * | evas_object_type_get (const Evas_Object *obj) |
Retrieves the type of the given Evas object. | |
void | evas_object_name_set (Evas_Object *obj, const char *name) |
Sets the name of the given Evas object to the given name. | |
const char * | evas_object_name_get (const Evas_Object *obj) |
Retrieves the name of the given Evas object. | |
Evas_Object * | evas_object_name_child_find (const Evas_Object *obj, const char *name, int recurse) |
Retrieves the object from children of the given object with the given name. | |
void | evas_object_geometry_get (const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h) |
void | evas_object_geometry_set (Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h) |
void | evas_object_show (Evas_Object *obj) |
void | evas_object_hide (Evas_Object *obj) |
void | evas_object_color_set (Evas_Object *obj, int r, int g, int b, int a) |
void | evas_object_color_get (const Evas_Object *obj, int *r, int *g, int *b, int *a) |
Function Documentation
void evas_object_color_get | ( | const Evas_Object * | obj, |
int * | r, | ||
int * | g, | ||
int * | b, | ||
int * | a | ||
) |
Retrieves the general/main color of the given Evas object.
Retrieves the “main” color's RGB component (and alpha channel) values, which range from 0 to 255. For the alpha channel, which defines the object's transparency level, 0 means totally transparent, while 255 means opaque. These color values are premultiplied by the alpha value.
Usually you’ll use this attribute for text and rectangle objects, where the “main” color is their unique one. If set for objects which themselves have colors, like the images one, those colors get modulated by this one.
- Note:
- All newly created Evas rectangles get the default color values of
255 255 255 255
(opaque white). -
Use
NULL
pointers on the components you're not interested in: they'll be ignored by the function.
Example:
int alpha, r, g, b; evas_object_color_get(d.clipper, &r, &g, &b, &alpha); evas_color_argb_unpremul(alpha, &r, &g, &b); alpha -= 20; if (alpha < 0) alpha = 255; evas_color_argb_premul(alpha, &r, &g, &b); evas_object_color_set(d.clipper, r, g, b, alpha); printf("Changing clipper's opacity: %d%%\n", (int)((alpha / 255.0) * 100)); return;
See the full example.
- Parameters:
-
[out] r The red component of the given color. [out] g The green component of the given color. [out] b The blue component of the given color. [out] a The alpha component of the given color.
- Since :
- 2.3.1
- Examples:
- edje-basic.c, evas-object-manipulation.c, evas-smart-interface.c, and evas-smart-object.c.
void evas_object_color_set | ( | Evas_Object * | obj, |
int | r, | ||
int | g, | ||
int | b, | ||
int | a | ||
) |
Sets the general/main color of the given Evas object to the given one.
- See also:
- evas_object_color_get() (for an example)
- Note:
- These color values are expected to be premultiplied by
a
.
- Parameters:
-
[in] r The red component of the given color. [in] g The green component of the given color. [in] b The blue component of the given color. [in] a The alpha component of the given color.
- Since :
- 2.3.1
- Examples:
- box_example_02.c, bubble_example_01.c, check_example_01.c, colorselector_example_01.c, ecore_animator_example.c, ecore_evas_basics_example.c, ecore_evas_buffer_example_01.c, ecore_evas_buffer_example_02.c, ecore_evas_callbacks.c, ecore_evas_object_example.c, ecore_evas_window_sizes_example.c, ecore_imf_example.c, edje-basic.c, edje-box.c, edje-box2.c, edje-color-class.c, edje-drag.c, edje-perspective.c, edje-signals-messages.c, edje-swallow.c, edje-table.c, edje-text.c, efl_thread_1.c, efl_thread_2.c, efl_thread_3.c, efl_thread_4.c, efl_thread_5.c, eina_tiler_01.c, evas-aspect-hints.c, evas-box.c, evas-buffer-simple.c, evas-events.c, evas-hints.c, evas-images.c, evas-images2.c, evas-map-utils.c, evas-object-manipulation.c, evas-smart-interface.c, evas-smart-object.c, evas-stacking.c, evas-table.c, evas-text.c, flip_example_01.c, frame_example_01.c, hover_example_01.c, hoversel_example_01.c, label_example_01.c, menu_example_01.c, separator_example_01.c, table_example_02.c, and transit_example_04.c.
void evas_object_del | ( | Evas_Object * | obj | ) |
Marks the given Evas object for deletion (when Evas will free its memory).
- Parameters:
-
obj The given Evas object.
This call will mark obj
for deletion, which will take place whenever it has no more references to it (see evas_object_ref() and evas_object_unref()).
At actual deletion time, which may or may not be just after this call, ::EVAS_CALLBACK_DEL and ::EVAS_CALLBACK_FREE callbacks will be called. If the object currently had the focus, its ::EVAS_CALLBACK_FOCUS_OUT callback will also be called.
- See also:
- evas_object_ref()
- evas_object_unref()
- Since :
- 2.3.1
- Examples:
- ctxpopup_example_01.c, ecore_animator_example.c, ecore_imf_example.c, edje-basic.c, edje-box.c, edje-box2.c, edje-signals-messages.c, edje-table.c, efl_thread_4.c, efl_thread_5.c, eina_tiler_01.c, entry_example.c, evas-box.c, evas-smart-interface.c, evas-smart-object.c, glview_example_01.c, inwin_example.c, layout_example_01.c, popup_example_02.c, web_example_02.c, and win_example.c.
void evas_object_geometry_get | ( | const Evas_Object * | obj, |
Evas_Coord * | x, | ||
Evas_Coord * | y, | ||
Evas_Coord * | w, | ||
Evas_Coord * | h | ||
) |
Retrieves the position and (rectangular) size of the given Evas object.
- Parameters:
-
obj The given Evas object. x Pointer to an integer in which to store the X coordinate of the object. y Pointer to an integer in which to store the Y coordinate of the object. w Pointer to an integer in which to store the width of the object. h Pointer to an integer in which to store the height of the object.
The position, naturally, will be relative to the top left corner of the canvas' viewport.
- Note:
- Use
NULL
pointers on the geometry components you're not interested in: they'll be ignored by the function.
Example:
int w, h, cw, ch; evas_object_geometry_get(d.img, NULL, NULL, &w, &h); ecore_evas_geometry_get(d.ee, NULL, NULL, &cw, &ch); if (w < cw) evas_object_resize(d.img, cw, ch); else evas_object_resize(d.img, cw / 2, ch / 2); return EINA_TRUE; /* re-issue the timer */
See the full example.
- Since :
- 2.3.1
void evas_object_geometry_set | ( | Evas_Object * | obj, |
Evas_Coord | x, | ||
Evas_Coord | y, | ||
Evas_Coord | w, | ||
Evas_Coord | h | ||
) |
Set the position and (rectangular) size of the given Evas object.
- Parameters:
-
obj The given Evas object. x X position to move the object to, in canvas units. y Y position to move the object to, in canvas units. w The new width of the Evas object. h The new height of the Evas object.
The position, naturally, will be relative to the top left corner of the canvas' viewport.
If the object get moved, the object's ::EVAS_CALLBACK_MOVE callback will be called.
If the object get resized, the object's ::EVAS_CALLBACK_RESIZE callback will be called.
- Since (EFL) :
- 1.8
- Since :
- 3.0
void evas_object_hide | ( | Evas_Object * | obj | ) |
Makes the given Evas object invisible.
- Parameters:
-
obj The given Evas object.
Hidden objects, besides not being shown at all in your canvas, won't be checked for changes on the canvas rendering process. Furthermore, they will not catch input events. Thus, they are much ligher (in processing needs) than an object that is invisible due to indirect causes, such as being clipped or out of the canvas' viewport.
Besides becoming hidden, obj
object's ::EVAS_CALLBACK_SHOW callback will be called.
- Note:
- All objects are created in the hidden state! If you want them shown, use evas_object_show() after their creation.
Example:
if (evas_object_visible_get(d.clipper)) { evas_object_hide(d.clipper); printf("hidden\n"); } else { evas_object_show(d.clipper); printf("visible\n"); } return;
See the full example.
- Since :
- 2.3.1
Evas_Object* evas_object_name_child_find | ( | const Evas_Object * | obj, |
const char * | name, | ||
int | recurse | ||
) |
Retrieves the object from children of the given object with the given name.
This looks for the evas object given a name by evas_object_name_set, but it ONLY looks at the children of the object *p obj, and will only recurse into those children if recurse
is greater than 0. If the name is not unique within immediate children (or the whole child tree) then it is not defined which child object will be returned. If recurse
is set to -1 then it will recurse without limit.
- Parameters:
-
[in] name The given name. [in] recurse Set to the number of child levels to recurse (0 == don't recurse, 1 == only look at the children of obj
or their immediate children, but no further etc.).
- Returns:
- The Evas object with the given name on success, Otherwise
null
.
- Since (EFL) :
- 1.2
- Since :
- 3.0
const char* evas_object_name_get | ( | const Evas_Object * | obj | ) |
Retrieves the name of the given Evas object.
Return: The name of the object or null
, if no name has been given to it.
- Returns:
- The given name.
- Since :
- 2.3.1
- Examples:
- evas-events.c, and evas-stacking.c.
void evas_object_name_set | ( | Evas_Object * | obj, |
const char * | name | ||
) |
Sets the name of the given Evas object to the given name.
There might be occasions where one would like to name his/her objects.
- Parameters:
-
[in] name The given name.
- Since :
- 2.3.1
- Examples:
- edje-box2.c, evas-events.c, evas-map-utils.c, evas-object-manipulation.c, and evas-stacking.c.
void evas_object_ref | ( | Evas_Object * | obj | ) |
Increments object reference count to defer its deletion.
- Parameters:
-
obj The given Evas object to reference
This increments the reference count of an object, which if greater than 0 will defer deletion by evas_object_del() until all references are released back (counter back to 0). References cannot go below 0 and unreferencing past that will result in the reference count being limited to 0. References are limited to 2^32 - 1
for an object. Referencing it more than this will result in it being limited to this value.
- See also:
- evas_object_unref()
- evas_object_del()
- Note:
- This is a very simple reference counting mechanism! For instance, Evas is not ready to check for pending references on a canvas deletion, or things like that. This is useful on scenarios where, inside a code block, callbacks exist which would possibly delete an object we are operating on afterwards. Then, one would evas_object_ref() it on the beginning of the block and evas_object_unref() it on the end. It would then be deleted at this point, if it should be.
Example:
evas_object_ref(obj); // action here... evas_object_smart_callback_call(obj, SIG_SELECTED, NULL); // more action here... evas_object_unref(obj);
- Since (EFL) :
- 1.1
- Since :
- 2.3.1
int evas_object_ref_get | ( | const Evas_Object * | obj | ) |
Get the object reference count.
- Parameters:
-
obj The given Evas object to query
This gets the reference count for an object (normally 0 until it is referenced). Values of 1 or greater mean that someone is holding a reference to this object that needs to be unreffed before it can be deleted.
- Since (EFL) :
- 1.2
- Since :
- 2.3.1
void evas_object_show | ( | Evas_Object * | obj | ) |
Makes the given Evas object visible.
- Parameters:
-
obj The given Evas object.
Besides becoming visible, the object's ::EVAS_CALLBACK_SHOW callback will be called.
- See also:
- evas_object_hide() for more on object visibility.
- evas_object_visible_get()
- Since :
- 2.3.1
- Examples:
- actionslider_example_01.c, bg_example_01.c, bg_example_02.c, bg_example_03.c, box_example_02.c, bubble_example_01.c, button_example_00.c, button_example_01.c, calendar_example_01.c, calendar_example_02.c, calendar_example_03.c, calendar_example_04.c, calendar_example_05.c, calendar_example_06.c, check_example_01.c, clock_example.c, codegen_example.c, colorselector_example_01.c, combobox_example_01.c, conformant_example_01.c, conformant_example_02.c, ctxpopup_example_01.c, datetime_example.c, dayselector_example.c, diskselector_example_01.c, diskselector_example_02.c, ecore_animator_example.c, ecore_evas_basics_example.c, ecore_evas_buffer_example_01.c, ecore_evas_buffer_example_02.c, ecore_evas_callbacks.c, ecore_evas_object_example.c, ecore_evas_window_sizes_example.c, ecore_imf_example.c, edje-basic.c, edje-box.c, edje-box2.c, edje-color-class.c, edje-drag.c, edje-perspective.c, edje-signals-messages.c, edje-swallow.c, edje-table.c, edje-text.c, efl_thread_1.c, efl_thread_2.c, efl_thread_3.c, efl_thread_4.c, efl_thread_5.c, efl_thread_6.c, eina_tiler_01.c, entry_example.c, evas-aspect-hints.c, evas-box.c, evas-buffer-simple.c, evas-events.c, evas-hints.c, evas-images.c, evas-images2.c, evas-map-utils.c, evas-object-manipulation.c, evas-smart-interface.c, evas-smart-object.c, evas-stacking.c, evas-table.c, evas-text.c, fileselector_button_example.c, fileselector_entry_example.c, fileselector_example.c, flip_example_01.c, flipselector_example.c, frame_example_01.c, general_funcs_example.c, gengrid_example.c, genlist_example_01.c, genlist_example_02.c, genlist_example_03.c, genlist_example_04.c, genlist_example_05.c, glview_example_01.c, hover_example_01.c, hoversel_example_01.c, icon_example_01.c, image_example_01.c, index_example_01.c, index_example_02.c, inwin_example.c, label_example_01.c, layout_example_01.c, layout_example_02.c, layout_example_03.c, list_example_01.c, list_example_02.c, list_example_03.c, map_example_01.c, map_example_02.c, map_example_03.c, mapbuf_example.c, menu_example_01.c, naviframe_example.c, notify_example_01.c, panel_example_01.c, panes_example.c, photocam_example_01.c, popup_example_01.c, popup_example_02.c, popup_example_03.c, prefs_example_01.c, prefs_example_02.c, prefs_example_03.c, progressbar_example.c, radio_example_01.c, relative_container_example_01.c, relative_container_example_02.c, scroller_example_01.c, segment_control_example.c, separator_example_01.c, slider_example.c, slideshow_example.c, spinner_example.c, table_example_01.c, table_example_02.c, theme_example_01.c, theme_example_02.c, thumb_example_01.c, toolbar_example_01.c, toolbar_example_02.c, toolbar_example_03.c, track_example_01.c, transit_example_01.c, transit_example_02.c, transit_example_03.c, transit_example_04.c, web_example_02.c, and win_example.c.
const char* evas_object_type_get | ( | const Evas_Object * | obj | ) |
Retrieves the type of the given Evas object.
For Evas' builtin types, the return strings will be one of "rectangle", "line", "polygon", "text", "textblock" or "image".
For Evas smart objects (see Smart Functions), the name of the smart class itself is returned on this call. For the built-in smart objects, these names are "EvasObjectSmartClipped" for the clipped smart object, "Evas_Object_Box" for the box object and "Evas_Object_Table" for the table object.
- Returns:
- The type of the object.
- Since (EFL) :
- 1.18
- Since :
- 2.3.1
- Examples:
- evas-object-manipulation.c.
void evas_object_unref | ( | Evas_Object * | obj | ) |
Decrements object reference count.
- Parameters:
-
obj The given Evas object to unreference
This decrements the reference count of an object. If the object has had evas_object_del() called on it while references were more than 0, it will be deleted at the time this function is called and puts the counter back to 0. See evas_object_ref() for more information.
- See also:
- evas_object_ref() (for an example)
- evas_object_del()
- Since (EFL) :
- 1.1
- Since :
- 2.3.1