summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/efl/elm/elm_panel.rb22
-rw-r--r--lib/efl/native/elm/elm_panel.rb55
-rwxr-xr-xtools/extract-api.sh1
-rwxr-xr-xtools/genruby.rb6
4 files changed, 84 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_panel.rb b/lib/efl/elm/elm_panel.rb
new file mode 100644
index 0000000..41dbcc5
--- /dev/null
+++ b/lib/efl/elm/elm_panel.rb
@@ -0,0 +1,22 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_object'
+require 'efl/native/elm/elm_panel'
+#
+module Efl
+ #
+ module Elm
+ #
+ class ElmPanel < ElmObject
+ #
+ include Helper
+ constructor :elm_panel_add
+ search_prefixes 'elm_panel_'
+ #
+ end
+ #
+ end
+end
+#
+# EOF
diff --git a/lib/efl/native/elm/elm_panel.rb b/lib/efl/native/elm/elm_panel.rb
new file mode 100644
index 0000000..4fe40a4
--- /dev/null
+++ b/lib/efl/native/elm/elm_panel.rb
@@ -0,0 +1,55 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/native'
+require 'efl/native/elementary'
+#
+module Efl
+ #
+ module ElmPanel
+ #
+ FCT_PREFIX = 'elm_panel_' 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'
+ #
+ # ENUMS
+ # typedef enum {...} Elm_Panel_Orient;
+ enum :elm_panel_orient, [ :elm_panel_orient_top, :elm_panel_orient_bottom, :elm_panel_orient_left, :elm_panel_orient_right ]
+ #
+ # FUNCTIONS
+ fcts = [
+ # EAPI Evas_Object *elm_panel_add(Evas_Object *parent);
+ [ :elm_panel_add, [ :evas_object ], :evas_object ],
+ # EAPI void elm_panel_orient_set(Evas_Object *obj, Elm_Panel_Orient orient);
+ [ :elm_panel_orient_set, [ :evas_object, :elm_panel_orient ], :void ],
+ # EAPI Elm_Panel_Orient elm_panel_orient_get(const Evas_Object *obj);
+ [ :elm_panel_orient_get, [ :evas_object ], :elm_panel_orient ],
+ # EAPI void elm_panel_hidden_set(Evas_Object *obj, Eina_Bool hidden);
+ [ :elm_panel_hidden_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_panel_hidden_get(const Evas_Object *obj);
+ [ :elm_panel_hidden_get, [ :evas_object ], :bool ],
+ # EAPI void elm_panel_toggle(Evas_Object *obj);
+ [ :elm_panel_toggle, [ :evas_object ], :void ],
+ # EAPI void elm_panel_content_set(Evas_Object *obj, Evas_Object *content);
+ [ :elm_panel_content_set, [ :evas_object, :evas_object ], :void ],
+ # EAPI Evas_Object * elm_panel_content_get(const Evas_Object *obj);
+ [ :elm_panel_content_get, [ :evas_object ], :evas_object ],
+ # EAPI Evas_Object * elm_panel_content_unset(Evas_Object *obj);
+ [ :elm_panel_content_unset, [ :evas_object ], :evas_object ],
+ ]
+ #
+ attach_fcts fcts
+ #
+ end
+end
+#
+# EOF
diff --git a/tools/extract-api.sh b/tools/extract-api.sh
index 39097a6..ce754e3 100755
--- a/tools/extract-api.sh
+++ b/tools/extract-api.sh
@@ -57,6 +57,7 @@ for header in \
"${INCLUDE}/elementary-0/elm_box.h" \
"${INCLUDE}/elementary-0/elm_button.h" \
"${INCLUDE}/elementary-0/elm_frame.h" \
+ "${INCLUDE}/elementary-0/elm_panel.h" \
; do
#
if [ ! -e "$header" ]; then
diff --git a/tools/genruby.rb b/tools/genruby.rb
index f4d523d..1be9b57 100755
--- a/tools/genruby.rb
+++ b/tools/genruby.rb
@@ -405,6 +405,12 @@ libs << {
:modname=>'ElmFrame', :prefix=>'elm_frame', :outfile=>'elm/elm_frame.rb',
:requires=>["#{NATIVE}/elementary"], :constants=>[]
}
+libs << {
+ :lib=>ELM_LIB,:header=>'elm_panel.h',
+ :modname=>'ElmPanel', :prefix=>'elm_panel', :outfile=>'elm/elm_panel.rb',
+ :requires=>["#{NATIVE}/elementary"], :constants=>[]
+}
+#
Dir.mkdir lib_path unless (File.exists? lib_path)
#
libs.each do |lib|