summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-28 14:56:46 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-28 14:56:46 +0100
commitdbdf77af301e352e59ad558848f43c361b656045 (patch)
tree77a88aa161b694e07378ce6322becf9391431b5d /lib
parentcd14620b118fd0bb4b0b0fa27258eec7db773b46 (diff)
downloadffi-efl-dbdf77af301e352e59ad558848f43c361b656045.zip
ffi-efl-dbdf77af301e352e59ad558848f43c361b656045.tar.gz
update elm_win API
Diffstat (limited to 'lib')
-rw-r--r--lib/efl/native/elm/elm_win.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/efl/native/elm/elm_win.rb b/lib/efl/native/elm/elm_win.rb
index 46ed54d..8518247 100644
--- a/lib/efl/native/elm/elm_win.rb
+++ b/lib/efl/native/elm/elm_win.rb
@@ -95,6 +95,26 @@ module Efl
[ :elm_win_iconified_set, [ :evas_object, :bool ], :void ],
# EAPI Eina_Bool elm_win_iconified_get(const Evas_Object *obj);
[ :elm_win_iconified_get, [ :evas_object ], :bool ],
+ # EAPI void elm_win_withdrawn_set(Evas_Object *obj, Eina_Bool withdrawn);
+ [ :elm_win_withdrawn_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_win_withdrawn_get(const Evas_Object *obj);
+ [ :elm_win_withdrawn_get, [ :evas_object ], :bool ],
+ # EAPI void elm_win_urgent_set(Evas_Object *obj, Eina_Bool urgent);
+ [ :elm_win_urgent_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_win_urgent_get(const Evas_Object *obj);
+ [ :elm_win_urgent_get, [ :evas_object ], :bool ],
+ # EAPI void elm_win_demand_attention_set(Evas_Object *obj, Eina_Bool demand_attention);
+ [ :elm_win_demand_attention_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_win_demand_attention_get(const Evas_Object *obj);
+ [ :elm_win_demand_attention_get, [ :evas_object ], :bool ],
+ # EAPI void elm_win_modal_set(Evas_Object *obj, Eina_Bool modal);
+ [ :elm_win_modal_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_win_modal_get(const Evas_Object *obj);
+ [ :elm_win_modal_get, [ :evas_object ], :bool ],
+ # EAPI void elm_win_aspect_set(Evas_Object *obj, double aspect);
+ [ :elm_win_aspect_set, [ :evas_object, :double ], :void ],
+ # EAPI double elm_win_aspect_get(const Evas_Object *obj);
+ [ :elm_win_aspect_get, [ :evas_object ], :double ],
# EAPI void elm_win_layer_set(Evas_Object *obj, int layer);
[ :elm_win_layer_set, [ :evas_object, :int ], :void ],
# EAPI int elm_win_layer_get(const Evas_Object *obj);