diff options
Diffstat (limited to 'src/lib/elementary/elm_widget_item_container_eo.c')
-rw-r--r-- | src/lib/elementary/elm_widget_item_container_eo.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/lib/elementary/elm_widget_item_container_eo.c b/src/lib/elementary/elm_widget_item_container_eo.c new file mode 100644 index 0000000..81ca07d --- /dev/null +++ b/src/lib/elementary/elm_widget_item_container_eo.c | |||
@@ -0,0 +1,33 @@ | |||
1 | EOAPI EFL_FUNC_BODY_CONST(elm_widget_item_container_focused_item_get, Elm_Widget_Item *, NULL); | ||
2 | |||
3 | static Eina_Bool | ||
4 | _elm_widget_item_container_class_initializer(Efl_Class *klass) | ||
5 | { | ||
6 | const Efl_Object_Ops *opsp = NULL; | ||
7 | |||
8 | const Efl_Object_Property_Reflection_Ops *ropsp = NULL; | ||
9 | |||
10 | #ifndef ELM_WIDGET_ITEM_CONTAINER_EXTRA_OPS | ||
11 | #define ELM_WIDGET_ITEM_CONTAINER_EXTRA_OPS | ||
12 | #endif | ||
13 | |||
14 | EFL_OPS_DEFINE(ops, | ||
15 | EFL_OBJECT_OP_FUNC(elm_widget_item_container_focused_item_get, NULL), | ||
16 | ELM_WIDGET_ITEM_CONTAINER_EXTRA_OPS | ||
17 | ); | ||
18 | opsp = &ops; | ||
19 | |||
20 | return efl_class_functions_set(klass, opsp, ropsp); | ||
21 | } | ||
22 | |||
23 | static const Efl_Class_Description _elm_widget_item_container_class_desc = { | ||
24 | EO_VERSION, | ||
25 | "Elm.Widget_Item_Container", | ||
26 | EFL_CLASS_TYPE_INTERFACE, | ||
27 | 0, | ||
28 | _elm_widget_item_container_class_initializer, | ||
29 | NULL, | ||
30 | NULL | ||
31 | }; | ||
32 | |||
33 | EFL_DEFINE_CLASS(elm_widget_item_container_interface_get, &_elm_widget_item_container_class_desc, NULL, NULL); | ||