summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:36:18 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:36:18 +0100
commit06825f703d413cec78849877fb2dba6593336175 (patch)
tree391f552be4be601ea9249d2f5fc8674a147aa7b0 /lib
parent8dc91c77cfcb1e6adc7cbabef1fa578df00a3617 (diff)
downloadffi-efl-06825f703d413cec78849877fb2dba6593336175.zip
ffi-efl-06825f703d413cec78849877fb2dba6593336175.tar.gz
parse elm_bubble.h, generate elm_bubble.rb
Diffstat (limited to 'lib')
-rw-r--r--lib/efl/elm/elm_bubble.rb22
-rw-r--r--lib/efl/native/elm/elm_bubble.rb39
2 files changed, 61 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_bubble.rb b/lib/efl/elm/elm_bubble.rb
new file mode 100644
index 0000000..ca5bbef
--- /dev/null
+++ b/lib/efl/elm/elm_bubble.rb
@@ -0,0 +1,22 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_object'
+require 'efl/native/elm/elm_bubble'
+#
+module Efl
+ #
+ module Elm
+ #
+ class ElmBubble < ElmObject
+ #
+ include Helper
+ constructor :elm_bubble_add
+ search_prefixes 'elm_bubble_'
+ #
+ end
+ #
+ end
+end
+#
+# EOF
diff --git a/lib/efl/native/elm/elm_bubble.rb b/lib/efl/native/elm/elm_bubble.rb
new file mode 100644
index 0000000..11b000b
--- /dev/null
+++ b/lib/efl/native/elm/elm_bubble.rb
@@ -0,0 +1,39 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/native'
+require 'efl/native/elementary'
+#
+module Efl
+ #
+ module ElmBubble
+ #
+ FCT_PREFIX = 'elm_bubble_' 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_bubble_add(Evas_Object *parent);
+ [ :elm_bubble_add, [ :evas_object ], :evas_object ],
+ # EAPI void elm_bubble_corner_set(Evas_Object *obj, const char *corner);
+ [ :elm_bubble_corner_set, [ :evas_object, :string ], :void ],
+ # EAPI const char *elm_bubble_corner_get(const Evas_Object *obj);
+ [ :elm_bubble_corner_get, [ :evas_object ], :string ],
+ ]
+ #
+ attach_fcts fcts
+ #
+ end
+end
+#
+# EOF