diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-08-23 20:41:37 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-08-23 20:56:37 +0900 |
commit | 3f9c239b277c5af10f33f262aabdd719e43dd99c (patch) | |
tree | 7a5c0db56222851f2b5fb6853c3bbed30478b168 /src/lib/elementary/elm_widget.h | |
parent | c071fd453b01809d4cf6adec4fa2b839e63ef32a (diff) |
widget: Make sub_object add/del protected (EO)
Also prefix with widget.
I want to rename this as child rather than sub. It's inconsistent with
the other parent/child hierarchies. Anyway the various hierarchies are
confusing, so let's keep this name :)
Ref T5363
Diffstat (limited to 'src/lib/elementary/elm_widget.h')
-rw-r--r-- | src/lib/elementary/elm_widget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/elm_widget.h b/src/lib/elementary/elm_widget.h index db7bff407d..dd27716dfa 100644 --- a/src/lib/elementary/elm_widget.h +++ b/src/lib/elementary/elm_widget.h | |||
@@ -361,10 +361,10 @@ typedef struct _Elm_Widget_Smart_Class | |||
361 | Elm_Object_Item **target_item, | 361 | Elm_Object_Item **target_item, |
362 | double *weight); /**< 'Virtual' function handling passing focus to sub-objects <b>given a direction, in degrees</b> */ | 362 | double *weight); /**< 'Virtual' function handling passing focus to sub-objects <b>given a direction, in degrees</b> */ |
363 | 363 | ||
364 | Eina_Bool (*sub_object_add)(Evas_Object *obj, | 364 | Eina_Bool (*widget_sub_object_add)(Evas_Object *obj, |
365 | Evas_Object *sobj); /**< 'Virtual' function handling sub objects being added */ | 365 | Evas_Object *sobj); /**< 'Virtual' function handling sub objects being added */ |
366 | 366 | ||
367 | Eina_Bool (*sub_object_del)(Evas_Object *obj, | 367 | Eina_Bool (*widget_sub_object_del)(Evas_Object *obj, |
368 | Evas_Object *sobj); /**< 'Virtual' function handling sub objects being removed */ | 368 | Evas_Object *sobj); /**< 'Virtual' function handling sub objects being removed */ |
369 | void (*access)(Evas_Object *obj, | 369 | void (*access)(Evas_Object *obj, |
370 | Eina_Bool is_access); /**< 'Virtual' function on the widget being set access */ | 370 | Eina_Bool is_access); /**< 'Virtual' function on the widget being set access */ |