diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-07 00:48:20 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-07 00:48:20 +0100 |
commit | 82bfaab0b6487697b12c8544b6c70e72b4e4f7cf (patch) | |
tree | fb30f4ffe2c7b3f1c8a5c4a4b4ed02373649554d /lib/efl/native/elm/elm_win.rb | |
parent | 8c2f3d46390d2f44d2fcd58cd4f39ad621e6b3db (diff) | |
parent | 7d430af815626bb783f0eb435d7df549733958d2 (diff) | |
download | ffi-efl-82bfaab0b6487697b12c8544b6c70e72b4e4f7cf.zip ffi-efl-82bfaab0b6487697b12c8544b6c70e72b4e4f7cf.tar.gz |
Merge branch 'master' of asynk.ch:ffi-efl
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); |