diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-29 17:00:25 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-29 17:00:25 +0100 |
commit | 1e1cf7af4c0cdf583cca161e499638dcb0133074 (patch) | |
tree | 6142384a47eb4d65a348b8a61470385df0e0c631 /lib/efl/native/elm/elm_win.rb | |
parent | 5ba82144003b73f05d3398eb8b927c5522d6e970 (diff) | |
download | ffi-efl-1e1cf7af4c0cdf583cca161e499638dcb0133074.zip ffi-efl-1e1cf7af4c0cdf583cca161e499638dcb0133074.tar.gz |
update elm_win, elm_genlist, elm_gengrid
Diffstat (limited to 'lib/efl/native/elm/elm_win.rb')
-rw-r--r-- | lib/efl/native/elm/elm_win.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/efl/native/elm/elm_win.rb b/lib/efl/native/elm/elm_win.rb index 8518247..f903ce0 100644 --- a/lib/efl/native/elm/elm_win.rb +++ b/lib/efl/native/elm/elm_win.rb @@ -51,6 +51,18 @@ module Efl [ :elm_win_title_set, [ :evas_object, :string ], :void ], # EAPI const char *elm_win_title_get(const Evas_Object *obj); [ :elm_win_title_get, [ :evas_object ], :string ], + # EAPI void elm_win_icon_name_set(Evas_Object *obj, const char *icon_name); + [ :elm_win_icon_name_set, [ :evas_object, :string ], :void ], + # EAPI const char *elm_win_icon_name_get(const Evas_Object *obj); + [ :elm_win_icon_name_get, [ :evas_object ], :string ], + # EAPI void elm_win_role_set(Evas_Object *obj, const char *role); + [ :elm_win_role_set, [ :evas_object, :string ], :void ], + # EAPI const char *elm_win_role_get(const Evas_Object *obj); + [ :elm_win_role_get, [ :evas_object ], :string ], + # EAPI void elm_win_icon_object_set(Evas_Object *obj, Evas_Object *icon); + [ :elm_win_icon_object_set, [ :evas_object, :evas_object ], :void ], + # EAPI const Evas_Object *elm_win_icon_object_get(const Evas_Object *obj); + [ :elm_win_icon_object_get, [ :evas_object ], :evas_object ], # EAPI void elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel); [ :elm_win_autodel_set, [ :evas_object, :bool ], :void ], # EAPI Eina_Bool elm_win_autodel_get(const Evas_Object *obj); |