ffi-efl 0.0.11 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/efl/elementary_all.rb +3 -3
- data/lib/efl/elm/{elm_factory.rb → elm_datetime.rb} +4 -4
- data/lib/efl/elm/{elm_anchorblock.rb → elm_dayselector.rb} +4 -4
- data/lib/efl/elm/elm_popup.rb +26 -0
- data/lib/efl/native/ecore_evas.rb +6 -4
- data/lib/efl/native/edje.rb +8 -5
- data/lib/efl/native/eet.rb +3 -2
- data/lib/efl/native/elm/elm_bg.rb +3 -3
- data/lib/efl/native/elm/elm_box.rb +6 -4
- data/lib/efl/native/elm/elm_cache.rb +0 -24
- data/lib/efl/native/elm/elm_calendar.rb +13 -7
- data/lib/efl/native/elm/elm_clock.rb +12 -11
- data/lib/efl/native/elm/elm_colorselector.rb +20 -0
- data/lib/efl/native/elm/elm_config.rb +144 -62
- data/lib/efl/native/elm/elm_conform.rb +0 -2
- data/lib/efl/native/elm/elm_ctxpopup.rb +2 -0
- data/lib/efl/native/elm/elm_cursor.rb +4 -8
- data/lib/efl/native/elm/elm_datetime.rb +64 -0
- data/lib/efl/native/elm/elm_dayselector.rb +56 -0
- data/lib/efl/native/elm/elm_diskselector.rb +8 -8
- data/lib/efl/native/elm/elm_entry.rb +30 -12
- data/lib/efl/native/elm/elm_finger.rb +0 -4
- data/lib/efl/native/elm/elm_flipselector.rb +4 -4
- data/lib/efl/native/elm/elm_focus.rb +6 -14
- data/lib/efl/native/elm/elm_fonts.rb +0 -16
- data/lib/efl/native/elm/elm_frame.rb +2 -2
- data/lib/efl/native/elm/elm_gen.rb +49 -0
- data/lib/efl/native/elm/elm_general.rb +4 -1
- data/lib/efl/native/elm/elm_gengrid.rb +52 -40
- data/lib/efl/native/elm/elm_genlist.rb +82 -87
- data/lib/efl/native/elm/elm_icon.rb +6 -6
- data/lib/efl/native/elm/elm_image.rb +6 -4
- data/lib/efl/native/elm/elm_index.rb +29 -19
- data/lib/efl/native/elm/elm_label.rb +0 -4
- data/lib/efl/native/elm/elm_layout.rb +16 -16
- data/lib/efl/native/elm/elm_list.rb +4 -4
- data/lib/efl/native/elm/elm_map.rb +130 -137
- data/lib/efl/native/elm/elm_menu.rb +4 -6
- data/lib/efl/native/elm/elm_mirroring.rb +0 -4
- data/lib/efl/native/elm/elm_multibuttonentry.rb +24 -28
- data/lib/efl/native/elm/elm_naviframe.rb +6 -8
- data/lib/efl/native/elm/elm_notify.rb +4 -4
- data/lib/efl/native/elm/elm_object.rb +2 -2
- data/lib/efl/native/elm/elm_photocam.rb +4 -4
- data/lib/efl/native/elm/elm_popup.rb +60 -0
- data/lib/efl/native/elm/elm_scale.rb +0 -4
- data/lib/efl/native/elm/elm_slider.rb +2 -2
- data/lib/efl/native/elm/elm_slideshow.rb +2 -2
- data/lib/efl/native/elm/elm_spinner.rb +1 -1
- data/lib/efl/native/elm/elm_store.rb +4 -8
- data/lib/efl/native/elm/elm_theme.rb +4 -2
- data/lib/efl/native/elm/elm_toolbar.rb +5 -9
- data/lib/efl/native/elm/elm_video.rb +2 -2
- data/lib/efl/native/elm/elm_web.rb +15 -15
- data/lib/efl/native/elm/elm_win.rb +7 -4
- data/lib/efl/native/evas.rb +7 -5
- data/lib/efl.rb +1 -1
- metadata +15 -16
- data/lib/efl/elm/elm_anchorview.rb +0 -22
- data/lib/efl/native/elm/elm_anchorblock.rb +0 -55
- data/lib/efl/native/elm/elm_anchorview.rb +0 -59
- data/lib/efl/native/elm/elm_engine.rb +0 -41
- data/lib/efl/native/elm/elm_factory.rb +0 -41
- data/lib/efl/native/elm/elm_password.rb +0 -41
@@ -3,6 +3,7 @@
|
|
3
3
|
#
|
4
4
|
require 'efl/native'
|
5
5
|
require 'efl/native/elementary'
|
6
|
+
require 'efl/native/elm/elm_gen'
|
6
7
|
require 'efl/native/elm/elm_list'
|
7
8
|
require 'efl/native/elm/elm_scroller'
|
8
9
|
#
|
@@ -24,28 +25,30 @@ module Efl
|
|
24
25
|
ffi_lib 'elementary-ver-pre-svn-09.so.0'
|
25
26
|
#
|
26
27
|
# ENUMS
|
27
|
-
# typedef enum {...}
|
28
|
-
enum :
|
28
|
+
# typedef enum {...} Elm_Genlist_Item_Type;
|
29
|
+
enum :elm_genlist_item_type, [ :elm_genlist_item_none, 0, :elm_genlist_item_tree, (1<<0), :elm_genlist_item_group, (1<<1),
|
29
30
|
:elm_genlist_item_max, (1<<2) ]
|
30
|
-
# typedef enum {...}
|
31
|
-
enum :
|
31
|
+
# typedef enum {...} Elm_Genlist_Item_Field_Type;
|
32
|
+
enum :elm_genlist_item_field_type, [ :elm_genlist_item_field_all, 0, :elm_genlist_item_field_text, (1<<0), :elm_genlist_item_field_content,
|
32
33
|
(1<<1), :elm_genlist_item_field_state, (1<<2) ]
|
34
|
+
# typedef enum {...} Elm_Genlist_Item_Scrollto_Type;
|
35
|
+
enum :elm_genlist_item_scrollto_type, [ :elm_genlist_item_scrollto_none, 0, :elm_genlist_item_scrollto_in, (1<<0),
|
36
|
+
:elm_genlist_item_scrollto_top, (1<<1), :elm_genlist_item_scrollto_middle, (1<<2) ]
|
37
|
+
# typedef enum {...} Elm_Genlist_Item_Move_Effect_Mode;
|
38
|
+
enum :elm_genlist_item_move_effect_mode, [ :elm_genlist_tree_effect_none, 0, :elm_genlist_tree_effect_expand, 1,
|
39
|
+
:elm_genlist_tree_effect_contract, 2 ]
|
33
40
|
#
|
34
41
|
# TYPEDEFS
|
35
|
-
# typedef
|
36
|
-
typedef :
|
37
|
-
# typedef
|
38
|
-
typedef :
|
39
|
-
#
|
40
|
-
|
41
|
-
# typedef
|
42
|
-
|
43
|
-
# typedef
|
44
|
-
|
45
|
-
# typedef Eina_Bool (*Elm_Genlist_Item_State_Get_Cb) (void *data, Evas_Object *obj, const char *part);
|
46
|
-
callback :elm_genlist_item_state_get_cb, [ :pointer, :evas_object, :string ], :bool
|
47
|
-
# typedef void (*Elm_Genlist_Item_Del_Cb) (void *data, Evas_Object *obj);
|
48
|
-
callback :elm_genlist_item_del_cb, [ :pointer, :evas_object ], :void
|
42
|
+
# typedef Elm_Gen_Item_Class Elm_Genlist_Item_Class;
|
43
|
+
typedef :elm_gen_item_class, :elm_genlist_item_class
|
44
|
+
# typedef Elm_Gen_Item_Text_Get_Cb Elm_Genlist_Item_Text_Get_Cb;
|
45
|
+
typedef :elm_gen_item_text_get_cb, :elm_genlist_item_text_get_cb
|
46
|
+
# typedef Elm_Gen_Item_Content_Get_Cb Elm_Genlist_Item_Content_Get_Cb;
|
47
|
+
typedef :elm_gen_item_content_get_cb, :elm_genlist_item_content_get_cb
|
48
|
+
# typedef Elm_Gen_Item_State_Get_Cb Elm_Genlist_Item_State_Get_Cb;
|
49
|
+
typedef :elm_gen_item_state_get_cb, :elm_genlist_item_state_get_cb
|
50
|
+
# typedef Elm_Gen_Item_Del_Cb Elm_Genlist_Item_Del_Cb;
|
51
|
+
typedef :elm_gen_item_del_cb, :elm_genlist_item_del_cb
|
49
52
|
#
|
50
53
|
# FUNCTIONS
|
51
54
|
fcts = [
|
@@ -61,33 +64,25 @@ module Efl
|
|
61
64
|
[ :elm_genlist_mode_set, [ :evas_object, :elm_list_mode ], :void ],
|
62
65
|
# EAPI Elm_List_Mode elm_genlist_mode_get(const Evas_Object *obj);
|
63
66
|
[ :elm_genlist_mode_get, [ :evas_object ], :elm_list_mode ],
|
64
|
-
# EAPI void elm_genlist_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select);
|
65
|
-
[ :elm_genlist_always_select_mode_set, [ :evas_object, :bool ], :void ],
|
66
|
-
# EAPI Eina_Bool elm_genlist_always_select_mode_get(const Evas_Object *obj);
|
67
|
-
[ :elm_genlist_always_select_mode_get, [ :evas_object ], :bool ],
|
68
|
-
# EAPI void elm_genlist_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select);
|
69
|
-
[ :elm_genlist_no_select_mode_set, [ :evas_object, :bool ], :void ],
|
70
|
-
# EAPI Eina_Bool elm_genlist_no_select_mode_get(const Evas_Object *obj);
|
71
|
-
[ :elm_genlist_no_select_mode_get, [ :evas_object ], :bool ],
|
72
67
|
# EAPI void elm_genlist_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
|
73
68
|
[ :elm_genlist_bounce_set, [ :evas_object, :bool, :bool ], :void ],
|
74
69
|
# EAPI void elm_genlist_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
|
75
70
|
[ :elm_genlist_bounce_get, [ :evas_object, :pointer, :pointer ], :void ],
|
76
|
-
# EAPI Elm_Object_Item *elm_genlist_item_append(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent,
|
77
|
-
[ :elm_genlist_item_append, [ :evas_object, :
|
78
|
-
:
|
79
|
-
# EAPI Elm_Object_Item *elm_genlist_item_prepend(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent,
|
80
|
-
[ :elm_genlist_item_prepend, [ :evas_object, :
|
81
|
-
:
|
82
|
-
# EAPI Elm_Object_Item *elm_genlist_item_insert_before(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Object_Item *before,
|
83
|
-
[ :elm_genlist_item_insert_before, [ :evas_object, :
|
84
|
-
:
|
85
|
-
# EAPI Elm_Object_Item *elm_genlist_item_insert_after(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Object_Item *after,
|
86
|
-
[ :elm_genlist_item_insert_after, [ :evas_object, :
|
87
|
-
:
|
88
|
-
# EAPI Elm_Object_Item *elm_genlist_item_sorted_insert(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent,
|
89
|
-
[ :elm_genlist_item_sorted_insert, [ :evas_object, :
|
90
|
-
:
|
71
|
+
# EAPI Elm_Object_Item *elm_genlist_item_append(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Genlist_Item_Type type, Evas_Smart_Cb func, const void *func_data);
|
72
|
+
[ :elm_genlist_item_append, [ :evas_object, :pointer, :pointer, :elm_object_item, :elm_genlist_item_type, :evas_smart_cb, :pointer ],
|
73
|
+
:elm_object_item ],
|
74
|
+
# EAPI Elm_Object_Item *elm_genlist_item_prepend(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Genlist_Item_Type type, Evas_Smart_Cb func, const void *func_data);
|
75
|
+
[ :elm_genlist_item_prepend, [ :evas_object, :pointer, :pointer, :elm_object_item, :elm_genlist_item_type, :evas_smart_cb, :pointer ],
|
76
|
+
:elm_object_item ],
|
77
|
+
# EAPI Elm_Object_Item *elm_genlist_item_insert_before(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Object_Item *before, Elm_Genlist_Item_Type type, Evas_Smart_Cb func, const void *func_data);
|
78
|
+
[ :elm_genlist_item_insert_before, [ :evas_object, :pointer, :pointer, :elm_object_item, :elm_object_item, :elm_genlist_item_type,
|
79
|
+
:evas_smart_cb, :pointer ], :elm_object_item ],
|
80
|
+
# EAPI Elm_Object_Item *elm_genlist_item_insert_after(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Object_Item *after, Elm_Genlist_Item_Type type, Evas_Smart_Cb func, const void *func_data);
|
81
|
+
[ :elm_genlist_item_insert_after, [ :evas_object, :pointer, :pointer, :elm_object_item, :elm_object_item, :elm_genlist_item_type,
|
82
|
+
:evas_smart_cb, :pointer ], :elm_object_item ],
|
83
|
+
# EAPI Elm_Object_Item *elm_genlist_item_sorted_insert(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Genlist_Item_Type type, Eina_Compare_Cb comp, Evas_Smart_Cb func, const void *func_data);
|
84
|
+
[ :elm_genlist_item_sorted_insert, [ :evas_object, :pointer, :pointer, :elm_object_item, :elm_genlist_item_type, :eina_compare_cb,
|
85
|
+
:evas_smart_cb, :pointer ], :elm_object_item ],
|
91
86
|
# EAPI Elm_Object_Item *elm_genlist_selected_item_get(const Evas_Object *obj);
|
92
87
|
[ :elm_genlist_selected_item_get, [ :evas_object ], :elm_object_item ],
|
93
88
|
# EAPI const Eina_List *elm_genlist_selected_items_get(const Evas_Object *obj);
|
@@ -110,24 +105,16 @@ module Efl
|
|
110
105
|
[ :elm_genlist_item_selected_set, [ :elm_object_item, :bool ], :void ],
|
111
106
|
# EAPI Eina_Bool elm_genlist_item_selected_get(const Elm_Object_Item *it);
|
112
107
|
[ :elm_genlist_item_selected_get, [ :elm_object_item ], :bool ],
|
113
|
-
# EAPI void elm_genlist_item_show(Elm_Object_Item *it);
|
114
|
-
[ :elm_genlist_item_show, [ :elm_object_item ], :void ],
|
115
|
-
# EAPI void elm_genlist_item_bring_in(Elm_Object_Item *it);
|
116
|
-
[ :elm_genlist_item_bring_in, [ :elm_object_item ], :void ],
|
117
|
-
# EAPI void elm_genlist_item_top_show(Elm_Object_Item *it);
|
118
|
-
[ :elm_genlist_item_top_show, [ :elm_object_item ], :void ],
|
119
|
-
# EAPI void elm_genlist_item_top_bring_in(Elm_Object_Item *it);
|
120
|
-
[ :elm_genlist_item_top_bring_in, [ :elm_object_item ], :void ],
|
121
|
-
# EAPI void elm_genlist_item_middle_show(Elm_Object_Item *it);
|
122
|
-
[ :elm_genlist_item_middle_show, [ :elm_object_item ], :void ],
|
123
|
-
# EAPI void elm_genlist_item_middle_bring_in(Elm_Object_Item *it);
|
124
|
-
[ :elm_genlist_item_middle_bring_in, [ :elm_object_item ], :void ],
|
108
|
+
# EAPI void elm_genlist_item_show(Elm_Object_Item *it, Elm_Genlist_Item_Scrollto_Type type);
|
109
|
+
[ :elm_genlist_item_show, [ :elm_object_item, :elm_genlist_item_scrollto_type ], :void ],
|
110
|
+
# EAPI void elm_genlist_item_bring_in(Elm_Object_Item *it, Elm_Genlist_Item_Scrollto_Type type);
|
111
|
+
[ :elm_genlist_item_bring_in, [ :elm_object_item, :elm_genlist_item_scrollto_type ], :void ],
|
125
112
|
# EAPI void elm_genlist_item_update(Elm_Object_Item *it);
|
126
113
|
[ :elm_genlist_item_update, [ :elm_object_item ], :void ],
|
127
114
|
# EAPI void elm_genlist_item_item_class_update(Elm_Object_Item *it, const Elm_Genlist_Item_Class *itc);
|
128
|
-
[ :elm_genlist_item_item_class_update, [ :elm_object_item, :
|
115
|
+
[ :elm_genlist_item_item_class_update, [ :elm_object_item, :pointer ], :void ],
|
129
116
|
# EAPI const Elm_Genlist_Item_Class *elm_genlist_item_item_class_get(const Elm_Object_Item *it);
|
130
|
-
[ :elm_genlist_item_item_class_get, [ :elm_object_item ], :
|
117
|
+
[ :elm_genlist_item_item_class_get, [ :elm_object_item ], :pointer ],
|
131
118
|
# EAPI int elm_genlist_item_index_get(const Elm_Object_Item *it);
|
132
119
|
[ :elm_genlist_item_index_get, [ :elm_object_item ], :int ],
|
133
120
|
# EAPI void elm_genlist_realized_items_update(Evas_Object *obj);
|
@@ -135,13 +122,13 @@ module Efl
|
|
135
122
|
# EAPI unsigned int elm_genlist_items_count(const Evas_Object *obj);
|
136
123
|
[ :elm_genlist_items_count, [ :evas_object ], :uint ],
|
137
124
|
# EAPI Elm_Genlist_Item_Class *elm_genlist_item_class_new(void);
|
138
|
-
[ :elm_genlist_item_class_new, [ ], :
|
125
|
+
[ :elm_genlist_item_class_new, [ ], :pointer ],
|
139
126
|
# EAPI void elm_genlist_item_class_free(Elm_Genlist_Item_Class *itc);
|
140
|
-
[ :elm_genlist_item_class_free, [ :
|
127
|
+
[ :elm_genlist_item_class_free, [ :pointer ], :void ],
|
141
128
|
# EAPI void elm_genlist_item_class_ref(Elm_Genlist_Item_Class *itc);
|
142
|
-
[ :elm_genlist_item_class_ref, [ :
|
129
|
+
[ :elm_genlist_item_class_ref, [ :pointer ], :void ],
|
143
130
|
# EAPI void elm_genlist_item_class_unref(Elm_Genlist_Item_Class *itc);
|
144
|
-
[ :elm_genlist_item_class_unref, [ :
|
131
|
+
[ :elm_genlist_item_class_unref, [ :pointer ], :void ],
|
145
132
|
# EAPI void elm_genlist_item_tooltip_text_set(Elm_Object_Item *it, const char *text);
|
146
133
|
[ :elm_genlist_item_tooltip_text_set, [ :elm_object_item, :string ], :void ],
|
147
134
|
# EAPI void elm_genlist_item_tooltip_content_cb_set(Elm_Object_Item *it, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb);
|
@@ -170,14 +157,6 @@ module Efl
|
|
170
157
|
[ :elm_genlist_item_cursor_engine_only_set, [ :elm_object_item, :bool ], :void ],
|
171
158
|
# EAPI Eina_Bool elm_genlist_item_cursor_engine_only_get(const Elm_Object_Item *it);
|
172
159
|
[ :elm_genlist_item_cursor_engine_only_get, [ :elm_object_item ], :bool ],
|
173
|
-
# EAPI void elm_genlist_compress_mode_set(Evas_Object *obj, Eina_Bool compress);
|
174
|
-
[ :elm_genlist_compress_mode_set, [ :evas_object, :bool ], :void ],
|
175
|
-
# EAPI Eina_Bool elm_genlist_compress_mode_get(const Evas_Object *obj);
|
176
|
-
[ :elm_genlist_compress_mode_get, [ :evas_object ], :bool ],
|
177
|
-
# EAPI void elm_genlist_height_for_width_mode_set(Evas_Object *obj, Eina_Bool height_for_width);
|
178
|
-
[ :elm_genlist_height_for_width_mode_set, [ :evas_object, :bool ], :void ],
|
179
|
-
# EAPI Eina_Bool elm_genlist_height_for_width_mode_get(const Evas_Object *obj);
|
180
|
-
[ :elm_genlist_height_for_width_mode_get, [ :evas_object ], :bool ],
|
181
160
|
# EAPI void elm_genlist_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous);
|
182
161
|
[ :elm_genlist_homogeneous_set, [ :evas_object, :bool ], :void ],
|
183
162
|
# EAPI Eina_Bool elm_genlist_homogeneous_get(const Evas_Object *obj);
|
@@ -202,34 +181,50 @@ module Efl
|
|
202
181
|
[ :elm_genlist_item_expanded_get, [ :elm_object_item ], :bool ],
|
203
182
|
# EAPI int elm_genlist_item_expanded_depth_get(const Elm_Object_Item *it);
|
204
183
|
[ :elm_genlist_item_expanded_depth_get, [ :elm_object_item ], :int ],
|
205
|
-
# EAPI void
|
206
|
-
[ :
|
207
|
-
# EAPI Eina_Bool elm_genlist_item_display_only_get(const Elm_Object_Item *it);
|
208
|
-
[ :elm_genlist_item_display_only_get, [ :elm_object_item ], :bool ],
|
209
|
-
# EAPI void elm_genlist_item_contents_orphan(Elm_Object_Item *it);
|
210
|
-
[ :elm_genlist_item_contents_orphan, [ :elm_object_item ], :void ],
|
184
|
+
# EAPI void elm_genlist_item_all_contents_unset(Elm_Object_Item *it, Eina_List **l);
|
185
|
+
[ :elm_genlist_item_all_contents_unset, [ :elm_object_item, :eina_list ], :void ],
|
211
186
|
# EAPI void elm_genlist_item_promote(Elm_Object_Item *it);
|
212
187
|
[ :elm_genlist_item_promote, [ :elm_object_item ], :void ],
|
213
188
|
# EAPI void elm_genlist_item_demote(Elm_Object_Item *it);
|
214
189
|
[ :elm_genlist_item_demote, [ :elm_object_item ], :void ],
|
215
|
-
# EAPI void elm_genlist_item_fields_update(Elm_Object_Item *it, const char *parts,
|
216
|
-
[ :elm_genlist_item_fields_update, [ :elm_object_item, :string, :
|
217
|
-
# EAPI void
|
218
|
-
[ :
|
219
|
-
# EAPI const char *
|
220
|
-
[ :
|
221
|
-
# EAPI const Elm_Object_Item *
|
222
|
-
[ :
|
190
|
+
# EAPI void elm_genlist_item_fields_update(Elm_Object_Item *it, const char *parts, Elm_Genlist_Item_Field_Type itf);
|
191
|
+
[ :elm_genlist_item_fields_update, [ :elm_object_item, :string, :elm_genlist_item_field_type ], :void ],
|
192
|
+
# EAPI void elm_genlist_item_decorate_mode_set(Elm_Object_Item *it, const char *mode_type, Eina_Bool mode_set);
|
193
|
+
[ :elm_genlist_item_decorate_mode_set, [ :elm_object_item, :string, :bool ], :void ],
|
194
|
+
# EAPI const char *elm_genlist_item_decorate_mode_get(const Elm_Object_Item *it);
|
195
|
+
[ :elm_genlist_item_decorate_mode_get, [ :elm_object_item ], :string ],
|
196
|
+
# EAPI const Elm_Object_Item *elm_genlist_decorated_item_get(const Evas_Object *obj);
|
197
|
+
[ :elm_genlist_decorated_item_get, [ :evas_object ], :elm_object_item ],
|
223
198
|
# EAPI void elm_genlist_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode);
|
224
199
|
[ :elm_genlist_reorder_mode_set, [ :evas_object, :bool ], :void ],
|
225
200
|
# EAPI Eina_Bool elm_genlist_reorder_mode_get(const Evas_Object *obj);
|
226
201
|
[ :elm_genlist_reorder_mode_get, [ :evas_object ], :bool ],
|
227
|
-
# EAPI
|
228
|
-
[ :
|
229
|
-
# EAPI void
|
230
|
-
[ :
|
231
|
-
# EAPI Eina_Bool
|
232
|
-
[ :
|
202
|
+
# EAPI Elm_Genlist_Item_Type elm_genlist_item_type_get(const Elm_Object_Item *it);
|
203
|
+
[ :elm_genlist_item_type_get, [ :elm_object_item ], :elm_genlist_item_type ],
|
204
|
+
# EAPI void elm_genlist_decorate_mode_set(Evas_Object *obj, Eina_Bool decorated);
|
205
|
+
[ :elm_genlist_decorate_mode_set, [ :evas_object, :bool ], :void ],
|
206
|
+
# EAPI Eina_Bool elm_genlist_decorate_mode_get(const Evas_Object *obj);
|
207
|
+
[ :elm_genlist_decorate_mode_get, [ :evas_object ], :bool ],
|
208
|
+
# EAPI void elm_genlist_item_flip_set(Elm_Object_Item *it, Eina_Bool flip);
|
209
|
+
[ :elm_genlist_item_flip_set, [ :elm_object_item, :bool ], :void ],
|
210
|
+
# EAPI Eina_Bool elm_genlist_item_flip_get(const Elm_Object_Item *it);
|
211
|
+
[ :elm_genlist_item_flip_get, [ :elm_object_item ], :bool ],
|
212
|
+
# EAPI void elm_genlist_tree_effect_enabled_set(Evas_Object *obj, Eina_Bool enabled);
|
213
|
+
[ :elm_genlist_tree_effect_enabled_set, [ :evas_object, :bool ], :void ],
|
214
|
+
# EAPI Eina_Bool elm_genlist_tree_effect_enabled_get(const Evas_Object *obj);
|
215
|
+
[ :elm_genlist_tree_effect_enabled_get, [ :evas_object ], :bool ],
|
216
|
+
# EAPI void elm_genlist_select_mode_set(Evas_Object *obj, Elm_Object_Select_Mode mode);
|
217
|
+
[ :elm_genlist_select_mode_set, [ :evas_object, :elm_object_select_mode ], :void ],
|
218
|
+
# EAPI Elm_Object_Select_Mode elm_genlist_select_mode_get(const Evas_Object *obj);
|
219
|
+
[ :elm_genlist_select_mode_get, [ :evas_object ], :elm_object_select_mode ],
|
220
|
+
# EAPI void elm_genlist_highlight_mode_set(Evas_Object *obj, Eina_Bool highlight);
|
221
|
+
[ :elm_genlist_highlight_mode_set, [ :evas_object, :bool ], :void ],
|
222
|
+
# EAPI Eina_Bool elm_genlist_highlight_mode_get(const Evas_Object *obj);
|
223
|
+
[ :elm_genlist_highlight_mode_get, [ :evas_object ], :bool ],
|
224
|
+
# EAPI void elm_genlist_item_select_mode_set(Elm_Object_Item *it, Elm_Object_Select_Mode mode);
|
225
|
+
[ :elm_genlist_item_select_mode_set, [ :elm_object_item, :elm_object_select_mode ], :void ],
|
226
|
+
# EAPI Elm_Object_Select_Mode elm_genlist_item_select_mode_get(const Elm_Object_Item *it);
|
227
|
+
[ :elm_genlist_item_select_mode_get, [ :elm_object_item ], :elm_object_select_mode ],
|
233
228
|
]
|
234
229
|
#
|
235
230
|
attach_fcts fcts
|
@@ -51,10 +51,10 @@ module Efl
|
|
51
51
|
[ :elm_icon_no_scale_set, [ :evas_object, :bool ], :void ],
|
52
52
|
# EAPI Eina_Bool elm_icon_no_scale_get(const Evas_Object *obj);
|
53
53
|
[ :elm_icon_no_scale_get, [ :evas_object ], :bool ],
|
54
|
-
# EAPI void
|
55
|
-
[ :
|
56
|
-
# EAPI void
|
57
|
-
[ :
|
54
|
+
# EAPI void elm_icon_resizable_set(Evas_Object *obj, Eina_Bool size_up, Eina_Bool size_down);
|
55
|
+
[ :elm_icon_resizable_set, [ :evas_object, :bool, :bool ], :void ],
|
56
|
+
# EAPI void elm_icon_resizable_get(const Evas_Object *obj, Eina_Bool *size_up, Eina_Bool *size_down);
|
57
|
+
[ :elm_icon_resizable_get, [ :evas_object, :pointer, :pointer ], :void ],
|
58
58
|
# EAPI void elm_icon_size_get(const Evas_Object *obj, int *w, int *h);
|
59
59
|
[ :elm_icon_size_get, [ :evas_object, :pointer, :pointer ], :void ],
|
60
60
|
# EAPI void elm_icon_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside);
|
@@ -71,8 +71,8 @@ module Efl
|
|
71
71
|
[ :elm_icon_order_lookup_set, [ :evas_object, :elm_icon_lookup_order ], :void ],
|
72
72
|
# EAPI Elm_Icon_Lookup_Order elm_icon_order_lookup_get(const Evas_Object *obj);
|
73
73
|
[ :elm_icon_order_lookup_get, [ :evas_object ], :elm_icon_lookup_order ],
|
74
|
-
# EAPI void
|
75
|
-
[ :
|
74
|
+
# EAPI void elm_icon_preload_disabled_set(Evas_Object *obj, Eina_Bool disabled);
|
75
|
+
[ :elm_icon_preload_disabled_set, [ :evas_object, :bool ], :void ],
|
76
76
|
# EAPI Eina_Bool elm_icon_animated_available_get(const Evas_Object *obj);
|
77
77
|
[ :elm_icon_animated_available_get, [ :evas_object ], :bool ],
|
78
78
|
# EAPI void elm_icon_animated_set(Evas_Object *obj, Eina_Bool animated);
|
@@ -44,14 +44,16 @@ module Efl
|
|
44
44
|
[ :elm_image_no_scale_set, [ :evas_object, :bool ], :void ],
|
45
45
|
# EAPI Eina_Bool elm_image_no_scale_get(const Evas_Object *obj);
|
46
46
|
[ :elm_image_no_scale_get, [ :evas_object ], :bool ],
|
47
|
-
# EAPI void
|
48
|
-
[ :
|
49
|
-
# EAPI void
|
50
|
-
[ :
|
47
|
+
# EAPI void elm_image_resizable_set(Evas_Object *obj, Eina_Bool size_up, Eina_Bool size_down);
|
48
|
+
[ :elm_image_resizable_set, [ :evas_object, :bool, :bool ], :void ],
|
49
|
+
# EAPI void elm_image_resizable_get(const Evas_Object *obj, Eina_Bool *size_up, Eina_Bool *size_down);
|
50
|
+
[ :elm_image_resizable_get, [ :evas_object, :pointer, :pointer ], :void ],
|
51
51
|
# EAPI void elm_image_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside);
|
52
52
|
[ :elm_image_fill_outside_set, [ :evas_object, :bool ], :void ],
|
53
53
|
# EAPI Eina_Bool elm_image_fill_outside_get(const Evas_Object *obj);
|
54
54
|
[ :elm_image_fill_outside_get, [ :evas_object ], :bool ],
|
55
|
+
# EAPI void elm_image_preload_disabled_set(Evas_Object *obj, Eina_Bool disabled);
|
56
|
+
[ :elm_image_preload_disabled_set, [ :evas_object, :bool ], :void ],
|
55
57
|
# EAPI void elm_image_prescale_set(Evas_Object *obj, int size);
|
56
58
|
[ :elm_image_prescale_set, [ :evas_object, :int ], :void ],
|
57
59
|
# EAPI int elm_image_prescale_get(const Evas_Object *obj);
|
@@ -25,34 +25,44 @@ module Efl
|
|
25
25
|
fcts = [
|
26
26
|
# EAPI Evas_Object *elm_index_add(Evas_Object *parent);
|
27
27
|
[ :elm_index_add, [ :evas_object ], :evas_object ],
|
28
|
-
# EAPI void
|
29
|
-
[ :
|
30
|
-
# EAPI Eina_Bool
|
31
|
-
[ :
|
28
|
+
# EAPI void elm_index_autohide_disabled_set(Evas_Object *obj, Eina_Bool disabled);
|
29
|
+
[ :elm_index_autohide_disabled_set, [ :evas_object, :bool ], :void ],
|
30
|
+
# EAPI Eina_Bool elm_index_autohide_disabled_get(const Evas_Object *obj);
|
31
|
+
[ :elm_index_autohide_disabled_get, [ :evas_object ], :bool ],
|
32
32
|
# EAPI void elm_index_item_level_set(Evas_Object *obj, int level);
|
33
33
|
[ :elm_index_item_level_set, [ :evas_object, :int ], :void ],
|
34
34
|
# EAPI int elm_index_item_level_get(const Evas_Object *obj);
|
35
35
|
[ :elm_index_item_level_get, [ :evas_object ], :int ],
|
36
|
-
# EAPI
|
37
|
-
[ :
|
38
|
-
# EAPI
|
39
|
-
[ :
|
40
|
-
# EAPI
|
41
|
-
[ :
|
42
|
-
# EAPI
|
43
|
-
[ :
|
44
|
-
# EAPI
|
45
|
-
[ :
|
46
|
-
# EAPI
|
47
|
-
[ :
|
48
|
-
# EAPI Elm_Object_Item *
|
36
|
+
# EAPI void elm_index_item_selected_set(Elm_Object_Item *it, Eina_Bool selected);
|
37
|
+
[ :elm_index_item_selected_set, [ :elm_object_item, :bool ], :void ],
|
38
|
+
# EAPI Elm_Object_Item *elm_index_selected_item_get(const Evas_Object *obj, int level);
|
39
|
+
[ :elm_index_selected_item_get, [ :evas_object, :int ], :elm_object_item ],
|
40
|
+
# EAPI Elm_Object_Item *elm_index_item_append(Evas_Object *obj, const char *letter, Evas_Smart_Cb func, const void *data);
|
41
|
+
[ :elm_index_item_append, [ :evas_object, :string, :evas_smart_cb, :pointer ], :elm_object_item ],
|
42
|
+
# EAPI Elm_Object_Item *elm_index_item_prepend(Evas_Object *obj, const char *letter, Evas_Smart_Cb func, const void *data);
|
43
|
+
[ :elm_index_item_prepend, [ :evas_object, :string, :evas_smart_cb, :pointer ], :elm_object_item ],
|
44
|
+
# EAPI Elm_Object_Item *elm_index_item_insert_after(Evas_Object *obj, Elm_Object_Item *after, const char *letter, Evas_Smart_Cb func, const void *data);
|
45
|
+
[ :elm_index_item_insert_after, [ :evas_object, :elm_object_item, :string, :evas_smart_cb, :pointer ], :elm_object_item ],
|
46
|
+
# EAPI Elm_Object_Item *elm_index_item_insert_before(Evas_Object *obj, Elm_Object_Item *before, const char *letter, Evas_Smart_Cb func, const void *data);
|
47
|
+
[ :elm_index_item_insert_before, [ :evas_object, :elm_object_item, :string, :evas_smart_cb, :pointer ], :elm_object_item ],
|
48
|
+
# EAPI Elm_Object_Item *elm_index_item_sorted_insert(Evas_Object *obj, const char *letter, Evas_Smart_Cb func, const void *data, Eina_Compare_Cb cmp_func, Eina_Compare_Cb cmp_data_func);
|
49
|
+
[ :elm_index_item_sorted_insert, [ :evas_object, :string, :evas_smart_cb, :pointer, :eina_compare_cb, :eina_compare_cb ], :elm_object_item ],
|
50
|
+
# EAPI Elm_Object_Item *elm_index_item_find(Evas_Object *obj, const void *data);
|
49
51
|
[ :elm_index_item_find, [ :evas_object, :pointer ], :elm_object_item ],
|
50
52
|
# EAPI void elm_index_item_clear(Evas_Object *obj);
|
51
53
|
[ :elm_index_item_clear, [ :evas_object ], :void ],
|
52
|
-
# EAPI void
|
53
|
-
[ :
|
54
|
+
# EAPI void elm_index_level_go(Evas_Object *obj, int level);
|
55
|
+
[ :elm_index_level_go, [ :evas_object, :int ], :void ],
|
54
56
|
# EAPI const char *elm_index_item_letter_get(const Elm_Object_Item *item);
|
55
57
|
[ :elm_index_item_letter_get, [ :elm_object_item ], :string ],
|
58
|
+
# EAPI void elm_index_indicator_disabled_set(Evas_Object *obj, Eina_Bool disabled);
|
59
|
+
[ :elm_index_indicator_disabled_set, [ :evas_object, :bool ], :void ],
|
60
|
+
# EAPI Eina_Bool elm_index_indicator_disabled_get(const Evas_Object *obj);
|
61
|
+
[ :elm_index_indicator_disabled_get, [ :evas_object ], :bool ],
|
62
|
+
# EAPI void elm_index_horizontal_set(Evas_Object *obj, Eina_Bool horizontal);
|
63
|
+
[ :elm_index_horizontal_set, [ :evas_object, :bool ], :void ],
|
64
|
+
# EAPI Eina_Bool elm_index_horizontal_get(const Evas_Object *obj);
|
65
|
+
[ :elm_index_horizontal_get, [ :evas_object ], :bool ],
|
56
66
|
]
|
57
67
|
#
|
58
68
|
attach_fcts fcts
|
@@ -34,10 +34,6 @@ module Efl
|
|
34
34
|
[ :elm_label_wrap_width_set, [ :evas_object, :int ], :void ],
|
35
35
|
# EAPI Evas_Coord elm_label_wrap_width_get(const Evas_Object *obj);
|
36
36
|
[ :elm_label_wrap_width_get, [ :evas_object ], :int ],
|
37
|
-
# EAPI void elm_label_wrap_height_set(Evas_Object *obj, Evas_Coord h);
|
38
|
-
[ :elm_label_wrap_height_set, [ :evas_object, :int ], :void ],
|
39
|
-
# EAPI Evas_Coord elm_label_wrap_height_get(const Evas_Object *obj);
|
40
|
-
[ :elm_label_wrap_height_get, [ :evas_object ], :int ],
|
41
37
|
# EAPI void elm_label_ellipsis_set(Evas_Object *obj, Eina_Bool ellipsis);
|
42
38
|
[ :elm_label_ellipsis_set, [ :evas_object, :bool ], :void ],
|
43
39
|
# EAPI Eina_Bool elm_label_ellipsis_get(const Evas_Object *obj);
|
@@ -29,24 +29,24 @@ module Efl
|
|
29
29
|
[ :elm_layout_file_set, [ :evas_object, :string, :string ], :bool ],
|
30
30
|
# EAPI Eina_Bool elm_layout_theme_set(Evas_Object *obj, const char *clas, const char *group, const char *style);
|
31
31
|
[ :elm_layout_theme_set, [ :evas_object, :string, :string, :string ], :bool ],
|
32
|
-
# EAPI
|
33
|
-
[ :elm_layout_box_append, [ :evas_object, :string, :evas_object ], :
|
34
|
-
# EAPI
|
35
|
-
[ :elm_layout_box_prepend, [ :evas_object, :string, :evas_object ], :
|
36
|
-
# EAPI
|
37
|
-
[ :elm_layout_box_insert_before, [ :evas_object, :string, :evas_object, :evas_object ], :
|
38
|
-
# EAPI
|
39
|
-
[ :elm_layout_box_insert_at, [ :evas_object, :string, :evas_object, :uint ], :
|
32
|
+
# EAPI Eina_Bool elm_layout_box_append(Evas_Object *obj, const char *part, Evas_Object *child);
|
33
|
+
[ :elm_layout_box_append, [ :evas_object, :string, :evas_object ], :bool ],
|
34
|
+
# EAPI Eina_Bool elm_layout_box_prepend(Evas_Object *obj, const char *part, Evas_Object *child);
|
35
|
+
[ :elm_layout_box_prepend, [ :evas_object, :string, :evas_object ], :bool ],
|
36
|
+
# EAPI Eina_Bool elm_layout_box_insert_before(Evas_Object *obj, const char *part, Evas_Object *child, const Evas_Object *reference);
|
37
|
+
[ :elm_layout_box_insert_before, [ :evas_object, :string, :evas_object, :evas_object ], :bool ],
|
38
|
+
# EAPI Eina_Bool elm_layout_box_insert_at(Evas_Object *obj, const char *part, Evas_Object *child, unsigned int pos);
|
39
|
+
[ :elm_layout_box_insert_at, [ :evas_object, :string, :evas_object, :uint ], :bool ],
|
40
40
|
# EAPI Evas_Object *elm_layout_box_remove(Evas_Object *obj, const char *part, Evas_Object *child);
|
41
41
|
[ :elm_layout_box_remove, [ :evas_object, :string, :evas_object ], :evas_object ],
|
42
|
-
# EAPI
|
43
|
-
[ :elm_layout_box_remove_all, [ :evas_object, :string, :bool ], :
|
44
|
-
# EAPI
|
45
|
-
[ :elm_layout_table_pack, [ :evas_object, :string, :evas_object, :ushort, :ushort, :ushort, :ushort ], :
|
42
|
+
# EAPI Eina_Bool elm_layout_box_remove_all(Evas_Object *obj, const char *part, Eina_Bool clear);
|
43
|
+
[ :elm_layout_box_remove_all, [ :evas_object, :string, :bool ], :bool ],
|
44
|
+
# EAPI Eina_Bool elm_layout_table_pack(Evas_Object *obj, const char *part, Evas_Object *child_obj, unsigned short col, unsigned short row, unsigned short colspan, unsigned short rowspan);
|
45
|
+
[ :elm_layout_table_pack, [ :evas_object, :string, :evas_object, :ushort, :ushort, :ushort, :ushort ], :bool ],
|
46
46
|
# EAPI Evas_Object *elm_layout_table_unpack(Evas_Object *obj, const char *part, Evas_Object *child_obj);
|
47
47
|
[ :elm_layout_table_unpack, [ :evas_object, :string, :evas_object ], :evas_object ],
|
48
|
-
# EAPI
|
49
|
-
[ :elm_layout_table_clear, [ :evas_object, :string, :bool ], :
|
48
|
+
# EAPI Eina_Bool elm_layout_table_clear(Evas_Object *obj, const char *part, Eina_Bool clear);
|
49
|
+
[ :elm_layout_table_clear, [ :evas_object, :string, :bool ], :bool ],
|
50
50
|
# EAPI Evas_Object *elm_layout_edje_get(const Evas_Object *obj);
|
51
51
|
[ :elm_layout_edje_get, [ :evas_object ], :evas_object ],
|
52
52
|
# EAPI const char *elm_layout_data_get(const Evas_Object *obj, const char *key);
|
@@ -57,8 +57,8 @@ module Efl
|
|
57
57
|
[ :elm_layout_part_cursor_set, [ :evas_object, :string, :string ], :bool ],
|
58
58
|
# EAPI const char *elm_layout_part_cursor_get(const Evas_Object *obj, const char *part_name);
|
59
59
|
[ :elm_layout_part_cursor_get, [ :evas_object, :string ], :string ],
|
60
|
-
# EAPI
|
61
|
-
[ :elm_layout_part_cursor_unset, [ :evas_object, :string ], :
|
60
|
+
# EAPI Eina_Bool elm_layout_part_cursor_unset(Evas_Object *obj, const char *part_name);
|
61
|
+
[ :elm_layout_part_cursor_unset, [ :evas_object, :string ], :bool ],
|
62
62
|
# EAPI Eina_Bool elm_layout_part_cursor_style_set(Evas_Object *obj, const char *part_name, const char *style);
|
63
63
|
[ :elm_layout_part_cursor_style_set, [ :evas_object, :string, :string ], :bool ],
|
64
64
|
# EAPI const char *elm_layout_part_cursor_style_get(const Evas_Object *obj, const char *part_name);
|
@@ -44,10 +44,10 @@ module Efl
|
|
44
44
|
[ :elm_list_horizontal_set, [ :evas_object, :bool ], :void ],
|
45
45
|
# EAPI Eina_Bool elm_list_horizontal_get(const Evas_Object *obj);
|
46
46
|
[ :elm_list_horizontal_get, [ :evas_object ], :bool ],
|
47
|
-
# EAPI void
|
48
|
-
[ :
|
49
|
-
# EAPI
|
50
|
-
[ :
|
47
|
+
# EAPI void elm_list_select_mode_set(Evas_Object *obj, Elm_Object_Select_Mode mode);
|
48
|
+
[ :elm_list_select_mode_set, [ :evas_object, :elm_object_select_mode ], :void ],
|
49
|
+
# EAPI Elm_Object_Select_Mode elm_list_select_mode_get(const Evas_Object *obj);
|
50
|
+
[ :elm_list_select_mode_get, [ :evas_object ], :elm_object_select_mode ],
|
51
51
|
# EAPI void elm_list_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
|
52
52
|
[ :elm_list_bounce_set, [ :evas_object, :bool, :bool ], :void ],
|
53
53
|
# EAPI void elm_list_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
|