summaryrefslogtreecommitdiffstats
path: root/lib/efl/native/elm/elm_notify.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-12-20 16:16:09 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2013-12-20 16:16:09 +0100
commit821a1acdb583b2727717a6d3360c49f7a3489d52 (patch)
treece9e3bfe19642df1d8fec2d02241d3dd284d50f2 /lib/efl/native/elm/elm_notify.rb
parent4a2c039c135aabac55b2d88a5f5548d52d7a3cdf (diff)
downloadffi-efl-821a1acdb583b2727717a6d3360c49f7a3489d52.zip
ffi-efl-821a1acdb583b2727717a6d3360c49f7a3489d52.tar.gz
wip-worktree-stateHEADmaster
Diffstat (limited to 'lib/efl/native/elm/elm_notify.rb')
-rw-r--r--lib/efl/native/elm/elm_notify.rb28
1 files changed, 11 insertions, 17 deletions
diff --git a/lib/efl/native/elm/elm_notify.rb b/lib/efl/native/elm/elm_notify.rb
index 0bf4f9f..7cfc8c4 100644
--- a/lib/efl/native/elm/elm_notify.rb
+++ b/lib/efl/native/elm/elm_notify.rb
@@ -21,32 +21,26 @@ module Efl
#
ffi_lib 'elementary.so.1'
#
- # ENUMS
- # typedef enum {...} Elm_Notify_Orient;
- enum :elm_notify_orient, [ :elm_notify_orient_top, :elm_notify_orient_center, :elm_notify_orient_bottom, :elm_notify_orient_left,
- :elm_notify_orient_right, :elm_notify_orient_top_left, :elm_notify_orient_top_right, :elm_notify_orient_bottom_left, :elm_notify_orient_bottom_right,
- :elm_notify_orient_last ]
- #
# FUNCTIONS
fcts = [
# EAPI Evas_Object *elm_notify_add(Evas_Object *parent);
- [ :elm_notify_add, [ :evas_object ], :evas_object ],
+ [ :elm_notify_add, [ :pointer ], :pointer ],
# EAPI void elm_notify_parent_set(Evas_Object *obj, Evas_Object *parent);
- [ :elm_notify_parent_set, [ :evas_object, :evas_object ], :void ],
+ [ :elm_notify_parent_set, [ :pointer, :pointer ], :void ],
# EAPI Evas_Object *elm_notify_parent_get(const Evas_Object *obj);
- [ :elm_notify_parent_get, [ :evas_object ], :evas_object ],
- # EAPI void elm_notify_orient_set(Evas_Object *obj, Elm_Notify_Orient orient);
- [ :elm_notify_orient_set, [ :evas_object, :elm_notify_orient ], :void ],
- # EAPI Elm_Notify_Orient elm_notify_orient_get(const Evas_Object *obj);
- [ :elm_notify_orient_get, [ :evas_object ], :elm_notify_orient ],
+ [ :elm_notify_parent_get, [ :pointer ], :pointer ],
# EAPI void elm_notify_timeout_set(Evas_Object *obj, double timeout);
- [ :elm_notify_timeout_set, [ :evas_object, :double ], :void ],
+ [ :elm_notify_timeout_set, [ :pointer, :double ], :void ],
# EAPI double elm_notify_timeout_get(const Evas_Object *obj);
- [ :elm_notify_timeout_get, [ :evas_object ], :double ],
+ [ :elm_notify_timeout_get, [ :pointer ], :double ],
# EAPI void elm_notify_allow_events_set(Evas_Object *obj, Eina_Bool allow);
- [ :elm_notify_allow_events_set, [ :evas_object, :bool ], :void ],
+ [ :elm_notify_allow_events_set, [ :pointer, :bool ], :void ],
# EAPI Eina_Bool elm_notify_allow_events_get(const Evas_Object *obj);
- [ :elm_notify_allow_events_get, [ :evas_object ], :bool ],
+ [ :elm_notify_allow_events_get, [ :pointer ], :bool ],
+ # EAPI void elm_notify_align_set(Evas_Object *obj, double horizontal, double vertical);
+ [ :elm_notify_align_set, [ :pointer, :double, :double ], :void ],
+ # EAPI void elm_notify_align_get(const Evas_Object *obj, double *horizontal, double *vertical);
+ [ :elm_notify_align_get, [ :pointer, :pointer, :pointer ], :void ],
]
#
attach_fcts fcts