summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:00:28 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:00:28 +0100
commit85de83d793de3e09cdce18cb6034047db400788a (patch)
tree68ea43351e9a0c1248a9eecb9136429e7f1474a7 /lib
parent6326758cc41412f8cdd042c4d8c8c1bfddaf4580 (diff)
downloadffi-efl-85de83d793de3e09cdce18cb6034047db400788a.zip
ffi-efl-85de83d793de3e09cdce18cb6034047db400788a.tar.gz
parse elm_frame.h, generate elm_frame.rb
Diffstat (limited to 'lib')
-rw-r--r--lib/efl/elm/elm_frame.rb22
-rw-r--r--lib/efl/native/elm/elm_frame.rb45
2 files changed, 67 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_frame.rb b/lib/efl/elm/elm_frame.rb
new file mode 100644
index 0000000..f1eb7a7
--- /dev/null
+++ b/lib/efl/elm/elm_frame.rb
@@ -0,0 +1,22 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_object'
+require 'efl/native/elm/elm_frame'
+#
+module Efl
+ #
+ module Elm
+ #
+ class ElmFrame < ElmObject
+ #
+ include Helper
+ constructor :elm_frame_add
+ search_prefixes 'elm_frame_'
+ #
+ end
+ #
+ end
+end
+#
+# EOF
diff --git a/lib/efl/native/elm/elm_frame.rb b/lib/efl/native/elm/elm_frame.rb
new file mode 100644
index 0000000..e941b82
--- /dev/null
+++ b/lib/efl/native/elm/elm_frame.rb
@@ -0,0 +1,45 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/native'
+require 'efl/native/elementary'
+#
+module Efl
+ #
+ module ElmFrame
+ #
+ FCT_PREFIX = 'elm_frame_' unless const_defined? :FCT_PREFIX
+ #
+ def self.method_missing meth, *args, &block
+ sym = Efl::MethodResolver.resolve self, meth, FCT_PREFIX
+ self.send sym, *args, &block
+ end
+ #
+ end
+ #
+ module Native
+ #
+ ffi_lib 'elementary-ver-pre-svn-09.so.0'
+ #
+ # FUNCTIONS
+ fcts = [
+ # EAPI Evas_Object *elm_frame_add(Evas_Object *parent);
+ [ :elm_frame_add, [ :evas_object ], :evas_object ],
+ # EAPI void elm_frame_autocollapse_set(Evas_Object *obj, Eina_Bool autocollapse);
+ [ :elm_frame_autocollapse_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_frame_autocollapse_get(const Evas_Object *obj);
+ [ :elm_frame_autocollapse_get, [ :evas_object ], :bool ],
+ # EAPI void elm_frame_collapse_set(Evas_Object *obj, Eina_Bool collapse);
+ [ :elm_frame_collapse_set, [ :evas_object, :bool ], :void ],
+ # EAPI void elm_frame_collapse_go(Evas_Object *obj, Eina_Bool collapse);
+ [ :elm_frame_collapse_go, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_frame_collapse_get(const Evas_Object *obj);
+ [ :elm_frame_collapse_get, [ :evas_object ], :bool ],
+ ]
+ #
+ attach_fcts fcts
+ #
+ end
+end
+#
+# EOF