ffi-efl 0.0.10 → 0.0.11
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/Changelog +10 -2
- data/README.rdoc +41 -30
- data/lib/efl.rb +88 -14
- data/lib/efl/ecore.rb +1 -0
- data/lib/efl/ecore_evas.rb +4 -2
- data/lib/efl/ecore_getopt.rb +12 -11
- data/lib/efl/ecore_input.rb +1 -0
- data/lib/efl/eet.rb +1 -0
- data/lib/efl/eina.rb +1 -0
- data/lib/efl/eina_hash.rb +1 -0
- data/lib/efl/eina_list.rb +1 -0
- data/lib/efl/eina_log.rb +4 -0
- data/lib/efl/elementary.rb +0 -662
- data/lib/efl/elementary_all.rb +82 -0
- data/lib/efl/elm/elm_actionslider.rb +22 -0
- data/lib/efl/elm/elm_anchorblock.rb +22 -0
- data/lib/efl/elm/elm_anchorview.rb +22 -0
- data/lib/efl/elm/elm_bg.rb +37 -0
- data/lib/efl/elm/elm_box.rb +42 -0
- data/lib/efl/elm/elm_bubble.rb +22 -0
- data/lib/efl/elm/elm_button.rb +22 -0
- data/lib/efl/elm/elm_calendar.rb +22 -0
- data/lib/efl/elm/elm_check.rb +22 -0
- data/lib/efl/elm/elm_clock.rb +22 -0
- data/lib/efl/elm/elm_cnp.rb +30 -0
- data/lib/efl/elm/elm_colorselector.rb +22 -0
- data/lib/efl/elm/elm_conform.rb +26 -0
- data/lib/efl/elm/elm_ctxpopup.rb +27 -0
- data/lib/efl/elm/elm_cursor.rb +20 -0
- data/lib/efl/elm/elm_debug.rb +25 -0
- data/lib/efl/elm/elm_diskselector.rb +51 -0
- data/lib/efl/elm/elm_entry.rb +22 -0
- data/lib/efl/elm/elm_factory.rb +22 -0
- data/lib/efl/elm/elm_fileselector.rb +22 -0
- data/lib/efl/elm/elm_fileselector_button.rb +22 -0
- data/lib/efl/elm/elm_fileselector_entry.rb +22 -0
- data/lib/efl/elm/elm_flip.rb +22 -0
- data/lib/efl/elm/elm_flipselector.rb +56 -0
- data/lib/efl/elm/elm_focus.rb +74 -0
- data/lib/efl/elm/elm_frame.rb +22 -0
- data/lib/efl/elm/elm_gengrid.rb +68 -0
- data/lib/efl/elm/elm_genlist.rb +79 -0
- data/lib/efl/elm/elm_gesture_layer.rb +22 -0
- data/lib/efl/elm/elm_glview.rb +22 -0
- data/lib/efl/elm/elm_grid.rb +22 -0
- data/lib/efl/elm/elm_hover.rb +22 -0
- data/lib/efl/elm/elm_hoversel.rb +27 -0
- data/lib/efl/elm/elm_icon.rb +26 -0
- data/lib/efl/elm/elm_image.rb +22 -0
- data/lib/efl/elm/elm_index.rb +31 -0
- data/lib/efl/elm/elm_label.rb +22 -0
- data/lib/efl/elm/elm_layout.rb +26 -0
- data/lib/efl/elm/elm_list.rb +55 -0
- data/lib/efl/elm/elm_map.rb +22 -0
- data/lib/efl/elm/elm_mapbuf.rb +22 -0
- data/lib/efl/elm/elm_menu.rb +55 -0
- data/lib/efl/elm/elm_mirroring.rb +36 -0
- data/lib/efl/elm/elm_multibuttonentry.rb +58 -0
- data/lib/efl/elm/elm_naviframe.rb +42 -0
- data/lib/efl/elm/elm_notify.rb +22 -0
- data/lib/efl/elm/elm_object.rb +68 -0
- data/lib/efl/elm/elm_object_item.rb +20 -0
- data/lib/efl/elm/elm_panel.rb +22 -0
- data/lib/efl/elm/elm_panes.rb +22 -0
- data/lib/efl/elm/elm_photo.rb +22 -0
- data/lib/efl/elm/elm_photocam.rb +22 -0
- data/lib/efl/elm/elm_plug.rb +22 -0
- data/lib/efl/elm/elm_progressbar.rb +22 -0
- data/lib/efl/elm/elm_radio.rb +22 -0
- data/lib/efl/elm/elm_route.rb +22 -0
- data/lib/efl/elm/elm_scale.rb +28 -0
- data/lib/efl/elm/elm_scroll.rb +50 -0
- data/lib/efl/elm/elm_scroller.rb +22 -0
- data/lib/efl/elm/elm_segment_control.rb +39 -0
- data/lib/efl/elm/elm_separator.rb +22 -0
- data/lib/efl/elm/elm_slider.rb +22 -0
- data/lib/efl/elm/elm_slideshow.rb +41 -0
- data/lib/efl/elm/elm_spinner.rb +22 -0
- data/lib/efl/elm/elm_store.rb +43 -0
- data/lib/efl/elm/elm_table.rb +22 -0
- data/lib/efl/elm/elm_theme.rb +42 -0
- data/lib/efl/elm/elm_thumb.rb +22 -0
- data/lib/efl/elm/elm_toolbar.rb +63 -0
- data/lib/efl/elm/elm_tooltip.rb +20 -0
- data/lib/efl/elm/elm_transit.rb +78 -0
- data/lib/efl/elm/elm_video.rb +30 -0
- data/lib/efl/elm/elm_web.rb +22 -0
- data/lib/efl/elm/elm_win.rb +33 -0
- data/lib/efl/evas.rb +8 -7
- data/lib/efl/native.rb +45 -11
- data/lib/efl/native/ecore.rb +188 -210
- data/lib/efl/native/ecore_evas.rb +260 -207
- data/lib/efl/native/ecore_getopt.rb +17 -24
- data/lib/efl/native/ecore_input.rb +7 -11
- data/lib/efl/native/edje.rb +250 -202
- data/lib/efl/native/eet.rb +154 -155
- data/lib/efl/native/eina.rb +7 -13
- data/lib/efl/native/eina_hash.rb +41 -47
- data/lib/efl/native/eina_list.rb +39 -48
- data/lib/efl/native/eina_log.rb +21 -23
- data/lib/efl/native/eina_types.rb +8 -14
- data/lib/efl/native/eina_xattr.rb +21 -18
- data/lib/efl/native/elementary.rb +9 -3381
- data/lib/efl/native/elm/elm_actionslider.rb +54 -0
- data/lib/efl/native/elm/elm_anchorblock.rb +55 -0
- data/lib/efl/native/elm/elm_anchorview.rb +59 -0
- data/lib/efl/native/elm/elm_app.rb +53 -0
- data/lib/efl/native/elm/elm_bg.rb +53 -0
- data/lib/efl/native/elm/elm_box.rb +81 -0
- data/lib/efl/native/elm/elm_bubble.rb +44 -0
- data/lib/efl/native/elm/elm_button.rb +47 -0
- data/lib/efl/native/elm/elm_cache.rb +59 -0
- data/lib/efl/native/elm/elm_calendar.rb +76 -0
- data/lib/efl/native/elm/elm_check.rb +41 -0
- data/lib/efl/native/elm/elm_clock.rb +64 -0
- data/lib/efl/native/elm/elm_cnp.rb +54 -0
- data/lib/efl/native/elm/elm_colorselector.rb +39 -0
- data/lib/efl/native/elm/elm_config.rb +103 -0
- data/lib/efl/native/elm/elm_conform.rb +37 -0
- data/lib/efl/native/elm/elm_ctxpopup.rb +59 -0
- data/lib/efl/native/elm/elm_cursor.rb +51 -0
- data/lib/efl/native/elm/elm_debug.rb +37 -0
- data/lib/efl/native/elm/elm_diskselector.rb +76 -0
- data/lib/efl/native/elm/elm_engine.rb +41 -0
- data/lib/efl/native/elm/elm_entry.rb +242 -0
- data/lib/efl/native/elm/elm_factory.rb +41 -0
- data/lib/efl/native/elm/elm_fileselector.rb +67 -0
- data/lib/efl/native/elm/elm_fileselector_button.rb +63 -0
- data/lib/efl/native/elm/elm_fileselector_entry.rb +67 -0
- data/lib/efl/native/elm/elm_finger.rb +39 -0
- data/lib/efl/native/elm/elm_flip.rb +62 -0
- data/lib/efl/native/elm/elm_flipselector.rb +63 -0
- data/lib/efl/native/elm/elm_focus.rb +65 -0
- data/lib/efl/native/elm/elm_fonts.rb +66 -0
- data/lib/efl/native/elm/elm_frame.rb +45 -0
- data/lib/efl/native/elm/elm_general.rb +105 -0
- data/lib/efl/native/elm/elm_gengrid.rb +184 -0
- data/lib/efl/native/elm/elm_genlist.rb +240 -0
- data/lib/efl/native/elm/elm_gesture_layer.rb +76 -0
- data/lib/efl/native/elm/elm_glview.rb +70 -0
- data/lib/efl/native/elm/elm_grid.rb +51 -0
- data/lib/efl/native/elm/elm_hover.rb +51 -0
- data/lib/efl/native/elm/elm_hoversel.rb +60 -0
- data/lib/efl/native/elm/elm_icon.rb +97 -0
- data/lib/efl/native/elm/elm_image.rb +80 -0
- data/lib/efl/native/elm/elm_index.rb +63 -0
- data/lib/efl/native/elm/elm_label.rb +60 -0
- data/lib/efl/native/elm/elm_layout.rb +77 -0
- data/lib/efl/native/elm/elm_list.rb +105 -0
- data/lib/efl/native/elm/elm_map.rb +225 -0
- data/lib/efl/native/elm/elm_mapbuf.rb +47 -0
- data/lib/efl/native/elm/elm_menu.rb +77 -0
- data/lib/efl/native/elm/elm_mirroring.rb +45 -0
- data/lib/efl/native/elm/elm_multibuttonentry.rb +81 -0
- data/lib/efl/native/elm/elm_naviframe.rb +79 -0
- data/lib/efl/native/elm/elm_need.rb +41 -0
- data/lib/efl/native/elm/elm_notify.rb +57 -0
- data/lib/efl/native/elm/elm_object.rb +74 -0
- data/lib/efl/native/elm/elm_object_item.rb +93 -0
- data/lib/efl/native/elm/elm_panel.rb +55 -0
- data/lib/efl/native/elm/elm_panes.rb +51 -0
- data/lib/efl/native/elm/elm_password.rb +41 -0
- data/lib/efl/native/elm/elm_photo.rb +49 -0
- data/lib/efl/native/elm/elm_photocam.rb +74 -0
- data/lib/efl/native/elm/elm_plug.rb +39 -0
- data/lib/efl/native/elm/elm_progressbar.rb +61 -0
- data/lib/efl/native/elm/elm_radio.rb +49 -0
- data/lib/efl/native/elm/elm_route.rb +42 -0
- data/lib/efl/native/elm/elm_scale.rb +41 -0
- data/lib/efl/native/elm/elm_scroll.rb +49 -0
- data/lib/efl/native/elm/elm_scroller.rb +80 -0
- data/lib/efl/native/elm/elm_segment_control.rb +57 -0
- data/lib/efl/native/elm/elm_separator.rb +39 -0
- data/lib/efl/native/elm/elm_slider.rb +71 -0
- data/lib/efl/native/elm/elm_slideshow.rb +97 -0
- data/lib/efl/native/elm/elm_spinner.rb +73 -0
- data/lib/efl/native/elm/elm_store.rb +110 -0
- data/lib/efl/native/elm/elm_table.rb +53 -0
- data/lib/efl/native/elm/elm_theme.rb +81 -0
- data/lib/efl/native/elm/elm_thumb.rb +60 -0
- data/lib/efl/native/elm/elm_toolbar.rb +145 -0
- data/lib/efl/native/elm/elm_tooltip.rb +59 -0
- data/lib/efl/native/elm/elm_transit.rb +135 -0
- data/lib/efl/native/elm/elm_video.rb +71 -0
- data/lib/efl/native/elm/elm_web.rb +165 -0
- data/lib/efl/native/elm/elm_win.rb +221 -0
- data/lib/efl/native/emap.rb +28 -34
- data/lib/efl/native/evas.rb +640 -618
- data/spec/ecore_evas_spec.rb +28 -22
- data/spec/ecore_spec.rb +1 -0
- data/spec/edje_spec.rb +8 -1
- data/spec/eina_hash_spec.rb +0 -1
- data/spec/eina_list_spec.rb +0 -1
- data/spec/eina_log_spec.rb +10 -8
- data/spec/elm_spec.rb +4 -114
- data/spec/evas_spec.rb +13 -244
- data/spec/helper.rb +16 -15
- data/tasks/constants.rb +9 -9
- data/test/test_elm_win-native.rb +6 -4
- data/test/test_elm_win.rb +20 -19
- data/test/test_evas.rb +12 -12
- metadata +209 -64
- data/lib/efl/ffi.rb +0 -172
- data/test/test_elementary.rb +0 -271
- data/test/tests/test_actionslider.rb +0 -132
- data/test/tests/test_anchorbock.rb +0 -73
- data/test/tests/test_bg.rb +0 -151
- data/test/tests/test_box.rb +0 -147
- data/test/tests/test_buttons.rb +0 -114
@@ -0,0 +1,59 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
# -*- coding: UTF-8 -*-
|
3
|
+
#
|
4
|
+
require 'efl/native'
|
5
|
+
require 'efl/native/elementary'
|
6
|
+
#
|
7
|
+
module Efl
|
8
|
+
#
|
9
|
+
module ElmCtxPopup
|
10
|
+
#
|
11
|
+
FCT_PREFIX = 'elm_ctxpopup_' unless const_defined? :FCT_PREFIX
|
12
|
+
#
|
13
|
+
def self.method_missing meth, *args, &block
|
14
|
+
sym = Efl::MethodResolver.resolve self, meth, FCT_PREFIX
|
15
|
+
self.send sym, *args, &block
|
16
|
+
end
|
17
|
+
#
|
18
|
+
end
|
19
|
+
#
|
20
|
+
module Native
|
21
|
+
#
|
22
|
+
ffi_lib 'elementary-ver-pre-svn-09.so.0'
|
23
|
+
#
|
24
|
+
# ENUMS
|
25
|
+
# typedef enum {...} Elm_Ctxpopup_Direction;
|
26
|
+
enum :elm_ctxpopup_direction, [ :elm_ctxpopup_direction_down, :elm_ctxpopup_direction_right, :elm_ctxpopup_direction_left,
|
27
|
+
:elm_ctxpopup_direction_up, :elm_ctxpopup_direction_unknown ]
|
28
|
+
#
|
29
|
+
# FUNCTIONS
|
30
|
+
fcts = [
|
31
|
+
# EAPI Evas_Object *elm_ctxpopup_add(Evas_Object *parent);
|
32
|
+
[ :elm_ctxpopup_add, [ :evas_object ], :evas_object ],
|
33
|
+
# EAPI void elm_ctxpopup_hover_parent_set(Evas_Object *obj, Evas_Object *parent);
|
34
|
+
[ :elm_ctxpopup_hover_parent_set, [ :evas_object, :evas_object ], :void ],
|
35
|
+
# EAPI Evas_Object *elm_ctxpopup_hover_parent_get(const Evas_Object *obj);
|
36
|
+
[ :elm_ctxpopup_hover_parent_get, [ :evas_object ], :evas_object ],
|
37
|
+
# EAPI void elm_ctxpopup_clear(Evas_Object *obj);
|
38
|
+
[ :elm_ctxpopup_clear, [ :evas_object ], :void ],
|
39
|
+
# EAPI void elm_ctxpopup_horizontal_set(Evas_Object *obj, Eina_Bool horizontal);
|
40
|
+
[ :elm_ctxpopup_horizontal_set, [ :evas_object, :bool ], :void ],
|
41
|
+
# EAPI Eina_Bool elm_ctxpopup_horizontal_get(const Evas_Object *obj);
|
42
|
+
[ :elm_ctxpopup_horizontal_get, [ :evas_object ], :bool ],
|
43
|
+
# EAPI Elm_Object_Item *elm_ctxpopup_item_append(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Smart_Cb func, const void *data);
|
44
|
+
[ :elm_ctxpopup_item_append, [ :evas_object, :string, :evas_object, :evas_smart_cb, :pointer ], :elm_object_item ],
|
45
|
+
# EAPI void elm_ctxpopup_direction_priority_set(Evas_Object *obj, Elm_Ctxpopup_Direction first, Elm_Ctxpopup_Direction second, Elm_Ctxpopup_Direction third, Elm_Ctxpopup_Direction fourth);
|
46
|
+
[ :elm_ctxpopup_direction_priority_set, [ :evas_object, :elm_ctxpopup_direction, :elm_ctxpopup_direction, :elm_ctxpopup_direction,
|
47
|
+
:elm_ctxpopup_direction ], :void ],
|
48
|
+
# EAPI void elm_ctxpopup_direction_priority_get(Evas_Object *obj, Elm_Ctxpopup_Direction *first, Elm_Ctxpopup_Direction *second, Elm_Ctxpopup_Direction *third, Elm_Ctxpopup_Direction *fourth);
|
49
|
+
[ :elm_ctxpopup_direction_priority_get, [ :evas_object, :pointer, :pointer, :pointer, :pointer ], :void ],
|
50
|
+
# EAPI Elm_Ctxpopup_Direction elm_ctxpopup_direction_get(const Evas_Object *obj);
|
51
|
+
[ :elm_ctxpopup_direction_get, [ :evas_object ], :elm_ctxpopup_direction ],
|
52
|
+
]
|
53
|
+
#
|
54
|
+
attach_fcts fcts
|
55
|
+
#
|
56
|
+
end
|
57
|
+
end
|
58
|
+
#
|
59
|
+
# EOF
|
@@ -0,0 +1,51 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
# -*- coding: UTF-8 -*-
|
3
|
+
#
|
4
|
+
require 'efl/native'
|
5
|
+
require 'efl/native/elementary'
|
6
|
+
#
|
7
|
+
module Efl
|
8
|
+
#
|
9
|
+
module ElmCursor
|
10
|
+
#
|
11
|
+
FCT_PREFIX = 'elm_cursor_' unless const_defined? :FCT_PREFIX
|
12
|
+
#
|
13
|
+
def self.method_missing meth, *args, &block
|
14
|
+
sym = Efl::MethodResolver.resolve self, meth, FCT_PREFIX
|
15
|
+
self.send sym, *args, &block
|
16
|
+
end
|
17
|
+
#
|
18
|
+
end
|
19
|
+
#
|
20
|
+
module Native
|
21
|
+
#
|
22
|
+
ffi_lib 'elementary-ver-pre-svn-09.so.0'
|
23
|
+
#
|
24
|
+
# FUNCTIONS
|
25
|
+
fcts = [
|
26
|
+
# EAPI void elm_object_cursor_set(Evas_Object *obj, const char *cursor);
|
27
|
+
[ :elm_object_cursor_set, [ :evas_object, :string ], :void ],
|
28
|
+
# EAPI const char *elm_object_cursor_get(const Evas_Object *obj);
|
29
|
+
[ :elm_object_cursor_get, [ :evas_object ], :string ],
|
30
|
+
# EAPI void elm_object_cursor_unset(Evas_Object *obj);
|
31
|
+
[ :elm_object_cursor_unset, [ :evas_object ], :void ],
|
32
|
+
# EAPI void elm_object_cursor_style_set(Evas_Object *obj, const char *style);
|
33
|
+
[ :elm_object_cursor_style_set, [ :evas_object, :string ], :void ],
|
34
|
+
# EAPI const char *elm_object_cursor_style_get(const Evas_Object *obj);
|
35
|
+
[ :elm_object_cursor_style_get, [ :evas_object ], :string ],
|
36
|
+
# EAPI void elm_object_cursor_engine_only_set(Evas_Object *obj, Eina_Bool engine_only);
|
37
|
+
[ :elm_object_cursor_engine_only_set, [ :evas_object, :bool ], :void ],
|
38
|
+
# EAPI Eina_Bool elm_object_cursor_engine_only_get(const Evas_Object *obj);
|
39
|
+
[ :elm_object_cursor_engine_only_get, [ :evas_object ], :bool ],
|
40
|
+
# EAPI int elm_cursor_engine_only_get(void);
|
41
|
+
[ :elm_cursor_engine_only_get, [ ], :int ],
|
42
|
+
# EAPI Eina_Bool elm_cursor_engine_only_set(int engine_only);
|
43
|
+
[ :elm_cursor_engine_only_set, [ :int ], :bool ],
|
44
|
+
]
|
45
|
+
#
|
46
|
+
attach_fcts fcts
|
47
|
+
#
|
48
|
+
end
|
49
|
+
end
|
50
|
+
#
|
51
|
+
# EOF
|
@@ -0,0 +1,37 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
# -*- coding: UTF-8 -*-
|
3
|
+
#
|
4
|
+
require 'efl/native'
|
5
|
+
require 'efl/native/elementary'
|
6
|
+
#
|
7
|
+
module Efl
|
8
|
+
#
|
9
|
+
module ElmDebug
|
10
|
+
#
|
11
|
+
FCT_PREFIX = 'elm_debug_' unless const_defined? :FCT_PREFIX
|
12
|
+
#
|
13
|
+
def self.method_missing meth, *args, &block
|
14
|
+
sym = Efl::MethodResolver.resolve self, meth, FCT_PREFIX
|
15
|
+
self.send sym, *args, &block
|
16
|
+
end
|
17
|
+
#
|
18
|
+
end
|
19
|
+
#
|
20
|
+
module Native
|
21
|
+
#
|
22
|
+
ffi_lib 'elementary-ver-pre-svn-09.so.0'
|
23
|
+
#
|
24
|
+
# FUNCTIONS
|
25
|
+
fcts = [
|
26
|
+
# EAPI void elm_object_tree_dump(const Evas_Object *top);
|
27
|
+
[ :elm_object_tree_dump, [ :evas_object ], :void ],
|
28
|
+
# EAPI void elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
|
29
|
+
[ :elm_object_tree_dot_dump, [ :evas_object, :string ], :void ],
|
30
|
+
]
|
31
|
+
#
|
32
|
+
attach_fcts fcts
|
33
|
+
#
|
34
|
+
end
|
35
|
+
end
|
36
|
+
#
|
37
|
+
# EOF
|
@@ -0,0 +1,76 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
# -*- coding: UTF-8 -*-
|
3
|
+
#
|
4
|
+
require 'efl/native'
|
5
|
+
require 'efl/native/elementary'
|
6
|
+
require 'efl/native/elm/elm_scroller'
|
7
|
+
#
|
8
|
+
module Efl
|
9
|
+
#
|
10
|
+
module ElmDiskSelector
|
11
|
+
#
|
12
|
+
FCT_PREFIX = 'elm_diskselector_' unless const_defined? :FCT_PREFIX
|
13
|
+
#
|
14
|
+
def self.method_missing meth, *args, &block
|
15
|
+
sym = Efl::MethodResolver.resolve self, meth, FCT_PREFIX
|
16
|
+
self.send sym, *args, &block
|
17
|
+
end
|
18
|
+
#
|
19
|
+
end
|
20
|
+
#
|
21
|
+
module Native
|
22
|
+
#
|
23
|
+
ffi_lib 'elementary-ver-pre-svn-09.so.0'
|
24
|
+
#
|
25
|
+
# FUNCTIONS
|
26
|
+
fcts = [
|
27
|
+
# EAPI Evas_Object *elm_diskselector_add(Evas_Object *parent);
|
28
|
+
[ :elm_diskselector_add, [ :evas_object ], :evas_object ],
|
29
|
+
# EAPI void elm_diskselector_round_set(Evas_Object *obj, Eina_Bool round);
|
30
|
+
[ :elm_diskselector_round_set, [ :evas_object, :bool ], :void ],
|
31
|
+
# EAPI Eina_Bool elm_diskselector_round_get(const Evas_Object *obj);
|
32
|
+
[ :elm_diskselector_round_get, [ :evas_object ], :bool ],
|
33
|
+
# EAPI int elm_diskselector_side_label_length_get(const Evas_Object *obj);
|
34
|
+
[ :elm_diskselector_side_label_length_get, [ :evas_object ], :int ],
|
35
|
+
# EAPI void elm_diskselector_side_label_length_set(Evas_Object *obj, int len);
|
36
|
+
[ :elm_diskselector_side_label_length_set, [ :evas_object, :int ], :void ],
|
37
|
+
# EAPI void elm_diskselector_display_item_num_set(Evas_Object *obj, int num);
|
38
|
+
[ :elm_diskselector_display_item_num_set, [ :evas_object, :int ], :void ],
|
39
|
+
# EAPI int elm_diskselector_display_item_num_get(const Evas_Object *obj);
|
40
|
+
[ :elm_diskselector_display_item_num_get, [ :evas_object ], :int ],
|
41
|
+
# EAPI void elm_diskselector_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
|
42
|
+
[ :elm_diskselector_bounce_set, [ :evas_object, :bool, :bool ], :void ],
|
43
|
+
# EAPI void elm_diskselector_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
|
44
|
+
[ :elm_diskselector_bounce_get, [ :evas_object, :pointer, :pointer ], :void ],
|
45
|
+
# EAPI void elm_diskselector_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v);
|
46
|
+
[ :elm_diskselector_scroller_policy_get, [ :evas_object, :pointer, :pointer ], :void ],
|
47
|
+
# EAPI void elm_diskselector_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v);
|
48
|
+
[ :elm_diskselector_scroller_policy_set, [ :evas_object, :elm_scroller_policy, :elm_scroller_policy ], :void ],
|
49
|
+
# EAPI void elm_diskselector_clear(Evas_Object *obj);
|
50
|
+
[ :elm_diskselector_clear, [ :evas_object ], :void ],
|
51
|
+
# EAPI const Eina_List *elm_diskselector_items_get(const Evas_Object *obj);
|
52
|
+
[ :elm_diskselector_items_get, [ :evas_object ], :eina_list ],
|
53
|
+
# EAPI Elm_Object_Item *elm_diskselector_item_append(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Smart_Cb func, const void *data);
|
54
|
+
[ :elm_diskselector_item_append, [ :evas_object, :string, :evas_object, :evas_smart_cb, :pointer ], :elm_object_item ],
|
55
|
+
# EAPI Elm_Object_Item *elm_diskselector_selected_item_get(const Evas_Object *obj);
|
56
|
+
[ :elm_diskselector_selected_item_get, [ :evas_object ], :elm_object_item ],
|
57
|
+
# EAPI void elm_diskselector_item_selected_set(Elm_Object_Item *it, Eina_Bool selected);
|
58
|
+
[ :elm_diskselector_item_selected_set, [ :elm_object_item, :bool ], :void ],
|
59
|
+
# EAPI Eina_Bool elm_diskselector_item_selected_get(const Elm_Object_Item *it);
|
60
|
+
[ :elm_diskselector_item_selected_get, [ :elm_object_item ], :bool ],
|
61
|
+
# EAPI Elm_Object_Item *elm_diskselector_first_item_get(const Evas_Object *obj);
|
62
|
+
[ :elm_diskselector_first_item_get, [ :evas_object ], :elm_object_item ],
|
63
|
+
# EAPI Elm_Object_Item *elm_diskselector_last_item_get(const Evas_Object *obj);
|
64
|
+
[ :elm_diskselector_last_item_get, [ :evas_object ], :elm_object_item ],
|
65
|
+
# EAPI Elm_Object_Item *elm_diskselector_item_prev_get(const Elm_Object_Item *it);
|
66
|
+
[ :elm_diskselector_item_prev_get, [ :elm_object_item ], :elm_object_item ],
|
67
|
+
# EAPI Elm_Object_Item *elm_diskselector_item_next_get(const Elm_Object_Item *it);
|
68
|
+
[ :elm_diskselector_item_next_get, [ :elm_object_item ], :elm_object_item ],
|
69
|
+
]
|
70
|
+
#
|
71
|
+
attach_fcts fcts
|
72
|
+
#
|
73
|
+
end
|
74
|
+
end
|
75
|
+
#
|
76
|
+
# EOF
|
@@ -0,0 +1,41 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
# -*- coding: UTF-8 -*-
|
3
|
+
#
|
4
|
+
require 'efl/native'
|
5
|
+
require 'efl/native/elementary'
|
6
|
+
#
|
7
|
+
module Efl
|
8
|
+
#
|
9
|
+
module ElmEngine
|
10
|
+
#
|
11
|
+
FCT_PREFIX = 'elm_engine_' unless const_defined? :FCT_PREFIX
|
12
|
+
#
|
13
|
+
def self.method_missing meth, *args, &block
|
14
|
+
sym = Efl::MethodResolver.resolve self, meth, FCT_PREFIX
|
15
|
+
self.send sym, *args, &block
|
16
|
+
end
|
17
|
+
#
|
18
|
+
end
|
19
|
+
#
|
20
|
+
module Native
|
21
|
+
#
|
22
|
+
ffi_lib 'elementary-ver-pre-svn-09.so.0'
|
23
|
+
#
|
24
|
+
# FUNCTIONS
|
25
|
+
fcts = [
|
26
|
+
# EAPI const char *elm_engine_get(void);
|
27
|
+
[ :elm_engine_get, [ ], :string ],
|
28
|
+
# EAPI void elm_engine_set(const char *engine);
|
29
|
+
[ :elm_engine_set, [ :string ], :void ],
|
30
|
+
# EAPI const char *elm_preferred_engine_get(void);
|
31
|
+
[ :elm_preferred_engine_get, [ ], :string ],
|
32
|
+
# EAPI void elm_preferred_engine_set(const char *engine);
|
33
|
+
[ :elm_preferred_engine_set, [ :string ], :void ],
|
34
|
+
]
|
35
|
+
#
|
36
|
+
attach_fcts fcts
|
37
|
+
#
|
38
|
+
end
|
39
|
+
end
|
40
|
+
#
|
41
|
+
# EOF
|
@@ -0,0 +1,242 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
# -*- coding: UTF-8 -*-
|
3
|
+
#
|
4
|
+
require 'efl/native'
|
5
|
+
require 'efl/native/edje'
|
6
|
+
require 'efl/native/elementary'
|
7
|
+
require 'efl/native/elm/elm_icon'
|
8
|
+
require 'efl/native/elm/elm_scroller'
|
9
|
+
#
|
10
|
+
module Efl
|
11
|
+
#
|
12
|
+
module ElmEntry
|
13
|
+
#
|
14
|
+
FCT_PREFIX = 'elm_entry_' unless const_defined? :FCT_PREFIX
|
15
|
+
#
|
16
|
+
def self.method_missing meth, *args, &block
|
17
|
+
sym = Efl::MethodResolver.resolve self, meth, FCT_PREFIX
|
18
|
+
self.send sym, *args, &block
|
19
|
+
end
|
20
|
+
#
|
21
|
+
end
|
22
|
+
#
|
23
|
+
module Native
|
24
|
+
#
|
25
|
+
ffi_lib 'elementary-ver-pre-svn-09.so.0'
|
26
|
+
#
|
27
|
+
# ENUMS
|
28
|
+
# typedef enum {...} Elm_Text_Format;
|
29
|
+
enum :elm_text_format, [ :elm_text_format_plain_utf8, :elm_text_format_markup_utf8 ]
|
30
|
+
# typedef enum {...} Elm_Wrap_Type;
|
31
|
+
enum :elm_wrap_type, [ :elm_wrap_none, 0, :elm_wrap_char, 1, :elm_wrap_word, 2, :elm_wrap_mixed, 3, :elm_wrap_last, 4 ]
|
32
|
+
# typedef enum {...} Elm_Input_Panel_Layout;
|
33
|
+
enum :elm_input_panel_layout, [ :elm_input_panel_layout_normal, :elm_input_panel_layout_number, :elm_input_panel_layout_email,
|
34
|
+
:elm_input_panel_layout_url, :elm_input_panel_layout_phonenumber, :elm_input_panel_layout_ip, :elm_input_panel_layout_month,
|
35
|
+
:elm_input_panel_layout_numberonly, :elm_input_panel_layout_invalid, :elm_input_panel_layout_hex, :elm_input_panel_layout_terminal,
|
36
|
+
:elm_input_panel_layout_password ]
|
37
|
+
# typedef enum {...} Elm_Input_Panel_Lang;
|
38
|
+
enum :elm_input_panel_lang, [ :elm_input_panel_lang_automatic, :elm_input_panel_lang_alphabet ]
|
39
|
+
# typedef enum {...} Elm_Autocapital_Type;
|
40
|
+
enum :elm_autocapital_type, [ :elm_autocapital_type_none, :elm_autocapital_type_word, :elm_autocapital_type_sentence,
|
41
|
+
:elm_autocapital_type_allcharacter ]
|
42
|
+
# typedef enum {...} Elm_Input_Panel_Return_Key_Type;
|
43
|
+
enum :elm_input_panel_return_key_type, [ :elm_input_panel_return_key_type_default, :elm_input_panel_return_key_type_done,
|
44
|
+
:elm_input_panel_return_key_type_go, :elm_input_panel_return_key_type_join, :elm_input_panel_return_key_type_login,
|
45
|
+
:elm_input_panel_return_key_type_next, :elm_input_panel_return_key_type_search, :elm_input_panel_return_key_type_send ]
|
46
|
+
#
|
47
|
+
# TYPEDEFS
|
48
|
+
# typedef struct _Elm_Entry_Anchor_Info Elm_Entry_Anchor_Info;
|
49
|
+
typedef :pointer, :elm_entry_anchor_info
|
50
|
+
# typedef Edje_Entry_Change_Info Elm_Entry_Change_Info;
|
51
|
+
typedef :edje_entry_change_info, :elm_entry_change_info
|
52
|
+
# typedef struct _Elm_Entry_Filter_Limit_Size Elm_Entry_Filter_Limit_Size;
|
53
|
+
typedef :pointer, :elm_entry_filter_limit_size
|
54
|
+
# typedef struct _Elm_Entry_Filter_Accept_Set Elm_Entry_Filter_Accept_Set;
|
55
|
+
typedef :pointer, :elm_entry_filter_accept_set
|
56
|
+
#
|
57
|
+
# CALLBACKS
|
58
|
+
# typedef void (*Elm_Entry_Filter_Cb) (void *data, Evas_Object *entry, char **text);
|
59
|
+
callback :elm_entry_filter_cb, [ :pointer, :evas_object, :pointer ], :void
|
60
|
+
#
|
61
|
+
# FUNCTIONS
|
62
|
+
fcts = [
|
63
|
+
# EAPI Evas_Object *elm_entry_add(Evas_Object *parent);
|
64
|
+
[ :elm_entry_add, [ :evas_object ], :evas_object ],
|
65
|
+
# EAPI void elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line);
|
66
|
+
[ :elm_entry_single_line_set, [ :evas_object, :bool ], :void ],
|
67
|
+
# EAPI Eina_Bool elm_entry_single_line_get(const Evas_Object *obj);
|
68
|
+
[ :elm_entry_single_line_get, [ :evas_object ], :bool ],
|
69
|
+
# EAPI void elm_entry_password_set(Evas_Object *obj, Eina_Bool password);
|
70
|
+
[ :elm_entry_password_set, [ :evas_object, :bool ], :void ],
|
71
|
+
# EAPI Eina_Bool elm_entry_password_get(const Evas_Object *obj);
|
72
|
+
[ :elm_entry_password_get, [ :evas_object ], :bool ],
|
73
|
+
# EAPI void elm_entry_entry_set(Evas_Object *obj, const char *entry);
|
74
|
+
[ :elm_entry_entry_set, [ :evas_object, :string ], :void ],
|
75
|
+
# EAPI const char *elm_entry_entry_get(const Evas_Object *obj);
|
76
|
+
[ :elm_entry_entry_get, [ :evas_object ], :string ],
|
77
|
+
# EAPI void elm_entry_entry_append(Evas_Object *obj, const char *entry);
|
78
|
+
[ :elm_entry_entry_append, [ :evas_object, :string ], :void ],
|
79
|
+
# EAPI Eina_Bool elm_entry_is_empty(const Evas_Object *obj);
|
80
|
+
[ :elm_entry_is_empty, [ :evas_object ], :bool ],
|
81
|
+
# EAPI const char *elm_entry_selection_get(const Evas_Object *obj);
|
82
|
+
[ :elm_entry_selection_get, [ :evas_object ], :string ],
|
83
|
+
# EAPI Evas_Object * elm_entry_textblock_get(Evas_Object *obj);
|
84
|
+
[ :elm_entry_textblock_get, [ :evas_object ], :evas_object ],
|
85
|
+
# EAPI void elm_entry_calc_force(Evas_Object *obj);
|
86
|
+
[ :elm_entry_calc_force, [ :evas_object ], :void ],
|
87
|
+
# EAPI void elm_entry_entry_insert(Evas_Object *obj, const char *entry);
|
88
|
+
[ :elm_entry_entry_insert, [ :evas_object, :string ], :void ],
|
89
|
+
# EAPI void elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap);
|
90
|
+
[ :elm_entry_line_wrap_set, [ :evas_object, :elm_wrap_type ], :void ],
|
91
|
+
# EAPI Elm_Wrap_Type elm_entry_line_wrap_get(const Evas_Object *obj);
|
92
|
+
[ :elm_entry_line_wrap_get, [ :evas_object ], :elm_wrap_type ],
|
93
|
+
# EAPI void elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable);
|
94
|
+
[ :elm_entry_editable_set, [ :evas_object, :bool ], :void ],
|
95
|
+
# EAPI Eina_Bool elm_entry_editable_get(const Evas_Object *obj);
|
96
|
+
[ :elm_entry_editable_get, [ :evas_object ], :bool ],
|
97
|
+
# EAPI void elm_entry_select_none(Evas_Object *obj);
|
98
|
+
[ :elm_entry_select_none, [ :evas_object ], :void ],
|
99
|
+
# EAPI void elm_entry_select_all(Evas_Object *obj);
|
100
|
+
[ :elm_entry_select_all, [ :evas_object ], :void ],
|
101
|
+
# EAPI Eina_Bool elm_entry_cursor_next(Evas_Object *obj);
|
102
|
+
[ :elm_entry_cursor_next, [ :evas_object ], :bool ],
|
103
|
+
# EAPI Eina_Bool elm_entry_cursor_prev(Evas_Object *obj);
|
104
|
+
[ :elm_entry_cursor_prev, [ :evas_object ], :bool ],
|
105
|
+
# EAPI Eina_Bool elm_entry_cursor_up(Evas_Object *obj);
|
106
|
+
[ :elm_entry_cursor_up, [ :evas_object ], :bool ],
|
107
|
+
# EAPI Eina_Bool elm_entry_cursor_down(Evas_Object *obj);
|
108
|
+
[ :elm_entry_cursor_down, [ :evas_object ], :bool ],
|
109
|
+
# EAPI void elm_entry_cursor_begin_set(Evas_Object *obj);
|
110
|
+
[ :elm_entry_cursor_begin_set, [ :evas_object ], :void ],
|
111
|
+
# EAPI void elm_entry_cursor_end_set(Evas_Object *obj);
|
112
|
+
[ :elm_entry_cursor_end_set, [ :evas_object ], :void ],
|
113
|
+
# EAPI void elm_entry_cursor_line_begin_set(Evas_Object *obj);
|
114
|
+
[ :elm_entry_cursor_line_begin_set, [ :evas_object ], :void ],
|
115
|
+
# EAPI void elm_entry_cursor_line_end_set(Evas_Object *obj);
|
116
|
+
[ :elm_entry_cursor_line_end_set, [ :evas_object ], :void ],
|
117
|
+
# EAPI void elm_entry_cursor_selection_begin(Evas_Object *obj);
|
118
|
+
[ :elm_entry_cursor_selection_begin, [ :evas_object ], :void ],
|
119
|
+
# EAPI void elm_entry_cursor_selection_end(Evas_Object *obj);
|
120
|
+
[ :elm_entry_cursor_selection_end, [ :evas_object ], :void ],
|
121
|
+
# EAPI Eina_Bool elm_entry_cursor_is_format_get(const Evas_Object *obj);
|
122
|
+
[ :elm_entry_cursor_is_format_get, [ :evas_object ], :bool ],
|
123
|
+
# EAPI Eina_Bool elm_entry_cursor_is_visible_format_get(const Evas_Object *obj);
|
124
|
+
[ :elm_entry_cursor_is_visible_format_get, [ :evas_object ], :bool ],
|
125
|
+
# EAPI char *elm_entry_cursor_content_get(const Evas_Object *obj);
|
126
|
+
[ :elm_entry_cursor_content_get, [ :evas_object ], :string ],
|
127
|
+
# EAPI Eina_Bool elm_entry_cursor_geometry_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h);
|
128
|
+
[ :elm_entry_cursor_geometry_get, [ :evas_object, :pointer, :pointer, :pointer, :pointer ], :bool ],
|
129
|
+
# EAPI void elm_entry_cursor_pos_set(Evas_Object *obj, int pos);
|
130
|
+
[ :elm_entry_cursor_pos_set, [ :evas_object, :int ], :void ],
|
131
|
+
# EAPI int elm_entry_cursor_pos_get(const Evas_Object *obj);
|
132
|
+
[ :elm_entry_cursor_pos_get, [ :evas_object ], :int ],
|
133
|
+
# EAPI void elm_entry_selection_cut(Evas_Object *obj);
|
134
|
+
[ :elm_entry_selection_cut, [ :evas_object ], :void ],
|
135
|
+
# EAPI void elm_entry_selection_copy(Evas_Object *obj);
|
136
|
+
[ :elm_entry_selection_copy, [ :evas_object ], :void ],
|
137
|
+
# EAPI void elm_entry_selection_paste(Evas_Object *obj);
|
138
|
+
[ :elm_entry_selection_paste, [ :evas_object ], :void ],
|
139
|
+
# EAPI void elm_entry_context_menu_clear(Evas_Object *obj);
|
140
|
+
[ :elm_entry_context_menu_clear, [ :evas_object ], :void ],
|
141
|
+
# EAPI void elm_entry_context_menu_item_add(Evas_Object *obj, const char *label, const char *icon_file, Elm_Icon_Type icon_type, Evas_Smart_Cb func, const void *data);
|
142
|
+
[ :elm_entry_context_menu_item_add, [ :evas_object, :string, :string, :elm_icon_type, :evas_smart_cb, :pointer ], :void ],
|
143
|
+
# EAPI void elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled);
|
144
|
+
[ :elm_entry_context_menu_disabled_set, [ :evas_object, :bool ], :void ],
|
145
|
+
# EAPI Eina_Bool elm_entry_context_menu_disabled_get(const Evas_Object *obj);
|
146
|
+
[ :elm_entry_context_menu_disabled_get, [ :evas_object ], :bool ],
|
147
|
+
# EAPI void elm_entry_item_provider_append(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * entry, const char *item), void *data);
|
148
|
+
# FIXME
|
149
|
+
# EAPI void elm_entry_item_provider_prepend(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * entry, const char *item), void *data);
|
150
|
+
# FIXME
|
151
|
+
# EAPI void elm_entry_item_provider_remove(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * entry, const char *item), void *data);
|
152
|
+
# FIXME
|
153
|
+
# EAPI void elm_entry_markup_filter_append(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
|
154
|
+
[ :elm_entry_markup_filter_append, [ :evas_object, :elm_entry_filter_cb, :pointer ], :void ],
|
155
|
+
# EAPI void elm_entry_markup_filter_prepend(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
|
156
|
+
[ :elm_entry_markup_filter_prepend, [ :evas_object, :elm_entry_filter_cb, :pointer ], :void ],
|
157
|
+
# EAPI void elm_entry_markup_filter_remove(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
|
158
|
+
[ :elm_entry_markup_filter_remove, [ :evas_object, :elm_entry_filter_cb, :pointer ], :void ],
|
159
|
+
# EAPI char *elm_entry_markup_to_utf8(const char *s);
|
160
|
+
[ :elm_entry_markup_to_utf8, [ :string ], :string ],
|
161
|
+
# EAPI char *elm_entry_utf8_to_markup(const char *s);
|
162
|
+
[ :elm_entry_utf8_to_markup, [ :string ], :string ],
|
163
|
+
# EAPI void elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format);
|
164
|
+
[ :elm_entry_file_set, [ :evas_object, :string, :elm_text_format ], :void ],
|
165
|
+
# EAPI void elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format);
|
166
|
+
[ :elm_entry_file_get, [ :evas_object, :pointer, :pointer ], :void ],
|
167
|
+
# EAPI void elm_entry_file_save(Evas_Object *obj);
|
168
|
+
[ :elm_entry_file_save, [ :evas_object ], :void ],
|
169
|
+
# EAPI void elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave);
|
170
|
+
[ :elm_entry_autosave_set, [ :evas_object, :bool ], :void ],
|
171
|
+
# EAPI Eina_Bool elm_entry_autosave_get(const Evas_Object *obj);
|
172
|
+
[ :elm_entry_autosave_get, [ :evas_object ], :bool ],
|
173
|
+
# EAPI void elm_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly);
|
174
|
+
[ :elm_entry_cnp_textonly_set, [ :evas_object, :bool ], :void ],
|
175
|
+
# EAPI Eina_Bool elm_entry_cnp_textonly_get(const Evas_Object *obj);
|
176
|
+
[ :elm_entry_cnp_textonly_get, [ :evas_object ], :bool ],
|
177
|
+
# EAPI void elm_entry_scrollable_set(Evas_Object *obj, Eina_Bool scroll);
|
178
|
+
[ :elm_entry_scrollable_set, [ :evas_object, :bool ], :void ],
|
179
|
+
# EAPI Eina_Bool elm_entry_scrollable_get(const Evas_Object *obj);
|
180
|
+
[ :elm_entry_scrollable_get, [ :evas_object ], :bool ],
|
181
|
+
# EAPI void elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting);
|
182
|
+
[ :elm_entry_icon_visible_set, [ :evas_object, :bool ], :void ],
|
183
|
+
# EAPI void elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting);
|
184
|
+
[ :elm_entry_end_visible_set, [ :evas_object, :bool ], :void ],
|
185
|
+
# EAPI void elm_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v);
|
186
|
+
[ :elm_entry_scrollbar_policy_set, [ :evas_object, :elm_scroller_policy, :elm_scroller_policy ], :void ],
|
187
|
+
# EAPI void elm_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
|
188
|
+
[ :elm_entry_bounce_set, [ :evas_object, :bool, :bool ], :void ],
|
189
|
+
# EAPI void elm_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
|
190
|
+
[ :elm_entry_bounce_get, [ :evas_object, :pointer, :pointer ], :void ],
|
191
|
+
# EAPI void elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout);
|
192
|
+
[ :elm_entry_input_panel_layout_set, [ :evas_object, :elm_input_panel_layout ], :void ],
|
193
|
+
# EAPI Elm_Input_Panel_Layout elm_entry_input_panel_layout_get(const Evas_Object *obj);
|
194
|
+
[ :elm_entry_input_panel_layout_get, [ :evas_object ], :elm_input_panel_layout ],
|
195
|
+
# EAPI void elm_entry_autocapital_type_set(Evas_Object *obj, Elm_Autocapital_Type autocapital_type);
|
196
|
+
[ :elm_entry_autocapital_type_set, [ :evas_object, :elm_autocapital_type ], :void ],
|
197
|
+
# EAPI Elm_Autocapital_Type elm_entry_autocapital_type_get(const Evas_Object *obj);
|
198
|
+
[ :elm_entry_autocapital_type_get, [ :evas_object ], :elm_autocapital_type ],
|
199
|
+
# EAPI void elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled);
|
200
|
+
[ :elm_entry_input_panel_enabled_set, [ :evas_object, :bool ], :void ],
|
201
|
+
# EAPI Eina_Bool elm_entry_input_panel_enabled_get(const Evas_Object *obj);
|
202
|
+
[ :elm_entry_input_panel_enabled_get, [ :evas_object ], :bool ],
|
203
|
+
# EAPI void elm_entry_input_panel_show(Evas_Object *obj);
|
204
|
+
[ :elm_entry_input_panel_show, [ :evas_object ], :void ],
|
205
|
+
# EAPI void elm_entry_input_panel_hide(Evas_Object *obj);
|
206
|
+
[ :elm_entry_input_panel_hide, [ :evas_object ], :void ],
|
207
|
+
# EAPI void elm_entry_input_panel_language_set(Evas_Object *obj, Elm_Input_Panel_Lang lang);
|
208
|
+
[ :elm_entry_input_panel_language_set, [ :evas_object, :elm_input_panel_lang ], :void ],
|
209
|
+
# EAPI Elm_Input_Panel_Lang elm_entry_input_panel_language_get(const Evas_Object *obj);
|
210
|
+
[ :elm_entry_input_panel_language_get, [ :evas_object ], :elm_input_panel_lang ],
|
211
|
+
# EAPI void elm_entry_input_panel_imdata_set(Evas_Object *obj, const void *data, int len);
|
212
|
+
[ :elm_entry_input_panel_imdata_set, [ :evas_object, :pointer, :int ], :void ],
|
213
|
+
# EAPI void elm_entry_input_panel_imdata_get(const Evas_Object *obj, void *data, int *len);
|
214
|
+
[ :elm_entry_input_panel_imdata_get, [ :evas_object, :pointer, :pointer ], :void ],
|
215
|
+
# EAPI void elm_entry_input_panel_return_key_type_set(Evas_Object *obj, Elm_Input_Panel_Return_Key_Type return_key_type);
|
216
|
+
[ :elm_entry_input_panel_return_key_type_set, [ :evas_object, :elm_input_panel_return_key_type ], :void ],
|
217
|
+
# EAPI Elm_Input_Panel_Return_Key_Type elm_entry_input_panel_return_key_type_get(const Evas_Object *obj);
|
218
|
+
[ :elm_entry_input_panel_return_key_type_get, [ :evas_object ], :elm_input_panel_return_key_type ],
|
219
|
+
# EAPI void elm_entry_input_panel_return_key_disabled_set(Evas_Object *obj, Eina_Bool disabled);
|
220
|
+
[ :elm_entry_input_panel_return_key_disabled_set, [ :evas_object, :bool ], :void ],
|
221
|
+
# EAPI Eina_Bool elm_entry_input_panel_return_key_disabled_get(const Evas_Object *obj);
|
222
|
+
[ :elm_entry_input_panel_return_key_disabled_get, [ :evas_object ], :bool ],
|
223
|
+
# EAPI void elm_entry_input_panel_return_key_autoenabled_set(Evas_Object *obj, Eina_Bool enabled);
|
224
|
+
[ :elm_entry_input_panel_return_key_autoenabled_set, [ :evas_object, :bool ], :void ],
|
225
|
+
# EAPI void elm_entry_imf_context_reset(Evas_Object *obj);
|
226
|
+
[ :elm_entry_imf_context_reset, [ :evas_object ], :void ],
|
227
|
+
# EAPI void elm_entry_prediction_allow_set(Evas_Object *obj, Eina_Bool prediction);
|
228
|
+
[ :elm_entry_prediction_allow_set, [ :evas_object, :bool ], :void ],
|
229
|
+
# EAPI Eina_Bool elm_entry_prediction_allow_get(const Evas_Object *obj);
|
230
|
+
[ :elm_entry_prediction_allow_get, [ :evas_object ], :bool ],
|
231
|
+
# EAPI void elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text);
|
232
|
+
[ :elm_entry_filter_limit_size, [ :pointer, :evas_object, :pointer ], :void ],
|
233
|
+
# EAPI void elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text);
|
234
|
+
[ :elm_entry_filter_accept_set, [ :pointer, :evas_object, :pointer ], :void ],
|
235
|
+
]
|
236
|
+
#
|
237
|
+
attach_fcts fcts
|
238
|
+
#
|
239
|
+
end
|
240
|
+
end
|
241
|
+
#
|
242
|
+
# EOF
|