1 
2 EAPI void
elm_multibuttonentry_editable_set(Elm_Multibuttonentry * obj,Eina_Bool editable)3 elm_multibuttonentry_editable_set(Elm_Multibuttonentry *obj, Eina_Bool editable)
4 {
5    elm_obj_multibuttonentry_editable_set(obj, editable);
6 }
7 
8 EAPI Eina_Bool
elm_multibuttonentry_editable_get(const Elm_Multibuttonentry * obj)9 elm_multibuttonentry_editable_get(const Elm_Multibuttonentry *obj)
10 {
11    return elm_obj_multibuttonentry_editable_get(obj);
12 }
13 
14 EAPI void
elm_multibuttonentry_expanded_set(Elm_Multibuttonentry * obj,Eina_Bool expanded)15 elm_multibuttonentry_expanded_set(Elm_Multibuttonentry *obj, Eina_Bool expanded)
16 {
17    elm_obj_multibuttonentry_expanded_set(obj, expanded);
18 }
19 
20 EAPI Eina_Bool
elm_multibuttonentry_expanded_get(const Elm_Multibuttonentry * obj)21 elm_multibuttonentry_expanded_get(const Elm_Multibuttonentry *obj)
22 {
23    return elm_obj_multibuttonentry_expanded_get(obj);
24 }
25 
26 EAPI void
elm_multibuttonentry_format_function_set(Elm_Multibuttonentry * obj,Elm_Multibuttonentry_Format_Cb format_function,const void * data)27 elm_multibuttonentry_format_function_set(Elm_Multibuttonentry *obj, Elm_Multibuttonentry_Format_Cb format_function, const void *data)
28 {
29    elm_obj_multibuttonentry_format_function_set(obj, format_function, data);
30 }
31 
32 EAPI const Eina_List *
elm_multibuttonentry_items_get(const Elm_Multibuttonentry * obj)33 elm_multibuttonentry_items_get(const Elm_Multibuttonentry *obj)
34 {
35    return elm_obj_multibuttonentry_items_get(obj);
36 }
37 
38 EAPI Elm_Widget_Item *
elm_multibuttonentry_first_item_get(const Elm_Multibuttonentry * obj)39 elm_multibuttonentry_first_item_get(const Elm_Multibuttonentry *obj)
40 {
41    return elm_obj_multibuttonentry_first_item_get(obj);
42 }
43 
44 EAPI Elm_Widget_Item *
elm_multibuttonentry_last_item_get(const Elm_Multibuttonentry * obj)45 elm_multibuttonentry_last_item_get(const Elm_Multibuttonentry *obj)
46 {
47    return elm_obj_multibuttonentry_last_item_get(obj);
48 }
49 
50 EAPI Efl_Canvas_Object *
elm_multibuttonentry_entry_get(const Elm_Multibuttonentry * obj)51 elm_multibuttonentry_entry_get(const Elm_Multibuttonentry *obj)
52 {
53    return elm_obj_multibuttonentry_entry_get(obj);
54 }
55 
56 EAPI Elm_Widget_Item *
elm_multibuttonentry_selected_item_get(const Elm_Multibuttonentry * obj)57 elm_multibuttonentry_selected_item_get(const Elm_Multibuttonentry *obj)
58 {
59    return elm_obj_multibuttonentry_selected_item_get(obj);
60 }
61 
62 EAPI Elm_Widget_Item *
elm_multibuttonentry_item_prepend(Elm_Multibuttonentry * obj,const char * label,Evas_Smart_Cb func,void * data)63 elm_multibuttonentry_item_prepend(Elm_Multibuttonentry *obj, const char *label, Evas_Smart_Cb func, void *data)
64 {
65    return elm_obj_multibuttonentry_item_prepend(obj, label, func, data);
66 }
67 
68 EAPI void
elm_multibuttonentry_clear(Elm_Multibuttonentry * obj)69 elm_multibuttonentry_clear(Elm_Multibuttonentry *obj)
70 {
71    elm_obj_multibuttonentry_clear(obj);
72 }
73 
74 EAPI void
elm_multibuttonentry_item_filter_remove(Elm_Multibuttonentry * obj,Elm_Multibuttonentry_Item_Filter_Cb func,void * data)75 elm_multibuttonentry_item_filter_remove(Elm_Multibuttonentry *obj, Elm_Multibuttonentry_Item_Filter_Cb func, void *data)
76 {
77    elm_obj_multibuttonentry_item_filter_remove(obj, func, data);
78 }
79 
80 EAPI Elm_Widget_Item *
elm_multibuttonentry_item_insert_before(Elm_Multibuttonentry * obj,Elm_Widget_Item * before,const char * label,Evas_Smart_Cb func,void * data)81 elm_multibuttonentry_item_insert_before(Elm_Multibuttonentry *obj, Elm_Widget_Item *before, const char *label, Evas_Smart_Cb func, void *data)
82 {
83    return elm_obj_multibuttonentry_item_insert_before(obj, before, label, func, data);
84 }
85 
86 EAPI Elm_Widget_Item *
elm_multibuttonentry_item_append(Elm_Multibuttonentry * obj,const char * label,Evas_Smart_Cb func,void * data)87 elm_multibuttonentry_item_append(Elm_Multibuttonentry *obj, const char *label, Evas_Smart_Cb func, void *data)
88 {
89    return elm_obj_multibuttonentry_item_append(obj, label, func, data);
90 }
91 
92 EAPI void
elm_multibuttonentry_item_filter_prepend(Elm_Multibuttonentry * obj,Elm_Multibuttonentry_Item_Filter_Cb func,void * data)93 elm_multibuttonentry_item_filter_prepend(Elm_Multibuttonentry *obj, Elm_Multibuttonentry_Item_Filter_Cb func, void *data)
94 {
95    elm_obj_multibuttonentry_item_filter_prepend(obj, func, data);
96 }
97 
98 EAPI void
elm_multibuttonentry_item_filter_append(Elm_Multibuttonentry * obj,Elm_Multibuttonentry_Item_Filter_Cb func,void * data)99 elm_multibuttonentry_item_filter_append(Elm_Multibuttonentry *obj, Elm_Multibuttonentry_Item_Filter_Cb func, void *data)
100 {
101    elm_obj_multibuttonentry_item_filter_append(obj, func, data);
102 }
103 
104 EAPI Elm_Widget_Item *
elm_multibuttonentry_item_insert_after(Elm_Multibuttonentry * obj,Elm_Widget_Item * after,const char * label,Evas_Smart_Cb func,void * data)105 elm_multibuttonentry_item_insert_after(Elm_Multibuttonentry *obj, Elm_Widget_Item *after, const char *label, Evas_Smart_Cb func, void *data)
106 {
107    return elm_obj_multibuttonentry_item_insert_after(obj, after, label, func, data);
108 }
109