Functions | |
Eina_Bool | elm_config_cursor_engine_only_get (void) |
Get the configured cursor engine only usage. More... | |
void | elm_config_cursor_engine_only_set (Eina_Bool engine_only) |
Set the configured cursor engine only usage. More... | |
Eina_Bool | elm_object_cursor_set (Eo *obj, const char *cursor) |
The cursor to be shown when mouse is over the object. More... | |
const char * | elm_object_cursor_get (const Eo *obj) |
The cursor to be shown when mouse is over the object. More... | |
Eina_Bool | elm_object_cursor_style_set (Eo *obj, const char *style) |
A different style for the cursor. More... | |
const char * | elm_object_cursor_style_get (const Eo *obj) |
A different style for the cursor. More... | |
Eina_Bool | elm_object_cursor_theme_search_enabled_set (Eo *obj, Eina_Bool allow) |
Whether the cursor may be looked in the theme or not. More... | |
Eina_Bool | elm_object_cursor_theme_search_enabled_get (const Eo *obj) |
Whether the cursor may be looked in the theme or not. More... | |
void | elm_object_cursor_unset (Evas_Object *obj) |
Unset cursor for object. More... | |
Eina_Bool elm_config_cursor_engine_only_get | ( | void | ) |
Get the configured cursor engine only usage.
This gets the globally configured exclusive usage of engine cursors.
void elm_config_cursor_engine_only_set | ( | Eina_Bool | engine_only | ) |
Set the configured cursor engine only usage.
This sets the globally configured exclusive usage of engine cursors. It won't affect cursors set before changing this value.
engine_only | If 1 only engine cursors will be enabled, if 0 will look for them on theme before. |
References EINA_TRUE.
Eina_Bool elm_object_cursor_set | ( | Eo * | obj, |
const char * | cursor | ||
) |
The cursor to be shown when mouse is over the object.
This is the cursor that will be displayed when mouse is over the object. The object can have only one cursor set to it so if elm_object_cursor_set is called twice for an object, the previous set will be unset.
If using X cursors, a definition of all the valid cursor names is listed on Elementary_Cursors.h. If an invalid name is set the default cursor will be used.
Sets or unsets the current cursor.
If cursor
is null
this function will reset the cursor to the default one.
[in] | obj | The object. |
[in] | cursor | The cursor name, defined either by the display system or the theme. |
true
if successful. const char * elm_object_cursor_get | ( | const Eo * | obj | ) |
The cursor to be shown when mouse is over the object.
This is the cursor that will be displayed when mouse is over the object. The object can have only one cursor set to it so if elm_object_cursor_set is called twice for an object, the previous set will be unset.
If using X cursors, a definition of all the valid cursor names is listed on Elementary_Cursors.h. If an invalid name is set the default cursor will be used.
Returns the current cursor name.
[in] | obj | The object. |
Eina_Bool elm_object_cursor_style_set | ( | Eo * | obj, |
const char * | style | ||
) |
A different style for the cursor.
This only makes sense if theme cursors are used. The cursor should be set with elm_object_cursor_set first before setting its style with this property.
Sets a style for the current cursor. Call after elm_object_cursor_set.
[in] | obj | The object. |
[in] | style | A specific style to use, eg. default, transparent, .... |
true
if successful. const char * elm_object_cursor_style_get | ( | const Eo * | obj | ) |
A different style for the cursor.
This only makes sense if theme cursors are used. The cursor should be set with elm_object_cursor_set first before setting its style with this property.
Returns the current cursor style name.
[in] | obj | The object. |
Whether the cursor may be looked in the theme or not.
If false
, the cursor may only come from the render engine, i.e. from the display manager.
Enables or disables theme cursors.
[in] | obj | The object. |
[in] | allow | Whether to use theme cursors. |
true
if successful. Eina_Bool elm_object_cursor_theme_search_enabled_get | ( | const Eo * | obj | ) |
Whether the cursor may be looked in the theme or not.
If false
, the cursor may only come from the render engine, i.e. from the display manager.
Returns the current state of theme cursors search.
[in] | obj | The object. |
void elm_object_cursor_unset | ( | Evas_Object * | obj | ) |
Unset cursor for object.
Unset cursor for object, and set the cursor to default if the mouse was over this object.
obj | Target object |
References ecore_evas_object_cursor_set(), eina_stringshare_del(), ELM_OBJECT_LAYER_CURSOR, EVAS_CALLBACK_CHANGED_SIZE_HINTS, EVAS_CALLBACK_DEL, evas_object_del(), and evas_object_event_callback_del_full().