diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-07 09:29:47 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-07 09:29:47 +0100 |
commit | 71e3a0bc514fbd28fe9600448c40b7bb53627378 (patch) | |
tree | 681d52aad0044ac852b520c0141ed57a3e3d567c /lib/efl/native/elm/elm_focus.rb | |
parent | 3fce398a3e2b7a1cd231223abea6961a4cbf8ea9 (diff) | |
download | ffi-efl-71e3a0bc514fbd28fe9600448c40b7bb53627378.zip ffi-efl-71e3a0bc514fbd28fe9600448c40b7bb53627378.tar.gz |
update elm API
Diffstat (limited to 'lib/efl/native/elm/elm_focus.rb')
-rw-r--r-- | lib/efl/native/elm/elm_focus.rb | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/lib/efl/native/elm/elm_focus.rb b/lib/efl/native/elm/elm_focus.rb index df1e6c3..e911ecd 100644 --- a/lib/efl/native/elm/elm_focus.rb +++ b/lib/efl/native/elm/elm_focus.rb @@ -23,14 +23,6 @@ module Efl # # FUNCTIONS fcts = [ - # EAPI Eina_Bool elm_focus_highlight_enabled_get(void); - [ :elm_focus_highlight_enabled_get, [ ], :bool ], - # EAPI void elm_focus_highlight_enabled_set(Eina_Bool enable); - [ :elm_focus_highlight_enabled_set, [ :bool ], :void ], - # EAPI Eina_Bool elm_focus_highlight_animate_get(void); - [ :elm_focus_highlight_animate_get, [ ], :bool ], - # EAPI void elm_focus_highlight_animate_set(Eina_Bool animate); - [ :elm_focus_highlight_animate_set, [ :bool ], :void ], # EAPI Eina_Bool elm_object_focus_get(const Evas_Object *obj); [ :elm_object_focus_get, [ :evas_object ], :bool ], # EAPI void elm_object_focus_set(Evas_Object *obj, Eina_Bool focus); @@ -49,12 +41,12 @@ module Efl [ :elm_object_focus_custom_chain_append, [ :evas_object, :evas_object, :evas_object ], :void ], # EAPI void elm_object_focus_custom_chain_prepend(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child); [ :elm_object_focus_custom_chain_prepend, [ :evas_object, :evas_object, :evas_object ], :void ], - # EAPI void elm_object_focus_cycle(Evas_Object *obj, Elm_Focus_Direction dir); - [ :elm_object_focus_cycle, [ :evas_object, :elm_focus_direction ], :void ], - # EAPI void elm_object_tree_unfocusable_set(Evas_Object *obj, Eina_Bool tree_unfocusable); - [ :elm_object_tree_unfocusable_set, [ :evas_object, :bool ], :void ], - # EAPI Eina_Bool elm_object_tree_unfocusable_get(const Evas_Object *obj); - [ :elm_object_tree_unfocusable_get, [ :evas_object ], :bool ], + # EAPI void elm_object_focus_next(Evas_Object *obj, Elm_Focus_Direction dir); + [ :elm_object_focus_next, [ :evas_object, :elm_focus_direction ], :void ], + # EAPI void elm_object_tree_focus_allow_set(Evas_Object *obj, Eina_Bool focusable); + [ :elm_object_tree_focus_allow_set, [ :evas_object, :bool ], :void ], + # EAPI Eina_Bool elm_object_tree_focus_allow_get(const Evas_Object *obj); + [ :elm_object_tree_focus_allow_get, [ :evas_object ], :bool ], ] # attach_fcts fcts |