summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:31:46 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:31:46 +0100
commit2d73b282cb57c14a2dc9b8d4a052643c48bae892 (patch)
treee597479818ed648f0d902548280a95ac72078398
parentda1ba75528a8366db7a3d09a8c67070dd0b47b90 (diff)
downloadffi-efl-2d73b282cb57c14a2dc9b8d4a052643c48bae892.zip
ffi-efl-2d73b282cb57c14a2dc9b8d4a052643c48bae892.tar.gz
parse elm_clock.h, generate elm_clock.rb
-rw-r--r--lib/efl/elm/elm_clock.rb22
-rw-r--r--lib/efl/native/elm/elm_clock.rb64
-rwxr-xr-xtools/extract-api.sh1
-rwxr-xr-xtools/genruby.rb5
4 files changed, 92 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_clock.rb b/lib/efl/elm/elm_clock.rb
new file mode 100644
index 0000000..4ebd02a
--- /dev/null
+++ b/lib/efl/elm/elm_clock.rb
@@ -0,0 +1,22 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_object'
+require 'efl/native/elm/elm_clock'
+#
+module Efl
+ #
+ module Elm
+ #
+ class ElmClock < ElmObject
+ #
+ include Helper
+ constructor :elm_clock_add
+ search_prefixes 'elm_clock_'
+ #
+ end
+ #
+ end
+end
+#
+# EOF
diff --git a/lib/efl/native/elm/elm_clock.rb b/lib/efl/native/elm/elm_clock.rb
new file mode 100644
index 0000000..bd6cff7
--- /dev/null
+++ b/lib/efl/native/elm/elm_clock.rb
@@ -0,0 +1,64 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/native'
+require 'efl/native/elementary'
+#
+module Efl
+ #
+ module ElmClock
+ #
+ FCT_PREFIX = 'elm_clock_' 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_Clock_Digedit;
+ enum :elm_clock_digedit, [ :elm_clock_none, 0, :elm_clock_hour_decimal, 1<<0, :elm_clock_hour_unit, 1<<1, :elm_clock_min_decimal, 1<<2,
+ :elm_clock_min_unit, 1<<3, :elm_clock_sec_decimal, 1<<4, :elm_clock_sec_unit, 1<<5, :elm_clock_all, (1<<6)-1 ]
+ #
+ # FUNCTIONS
+ fcts = [
+ # EAPI Evas_Object *elm_clock_add(Evas_Object *parent);
+ [ :elm_clock_add, [ :evas_object ], :evas_object ],
+ # EAPI void elm_clock_time_set(Evas_Object *obj, int hrs, int min, int sec);
+ [ :elm_clock_time_set, [ :evas_object, :int, :int, :int ], :void ],
+ # EAPI void elm_clock_time_get(const Evas_Object *obj, int *hrs, int *min, int *sec);
+ [ :elm_clock_time_get, [ :evas_object, :pointer, :pointer, :pointer ], :void ],
+ # EAPI void elm_clock_edit_set(Evas_Object *obj, Eina_Bool edit);
+ [ :elm_clock_edit_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_clock_edit_get(const Evas_Object *obj);
+ [ :elm_clock_edit_get, [ :evas_object ], :bool ],
+ # EAPI void elm_clock_digit_edit_set(Evas_Object *obj, Elm_Clock_Digedit digedit);
+ [ :elm_clock_digit_edit_set, [ :evas_object, :elm_clock_digedit ], :void ],
+ # EAPI Elm_Clock_Digedit elm_clock_digit_edit_get(const Evas_Object *obj);
+ [ :elm_clock_digit_edit_get, [ :evas_object ], :elm_clock_digedit ],
+ # EAPI void elm_clock_show_am_pm_set(Evas_Object *obj, Eina_Bool am_pm);
+ [ :elm_clock_show_am_pm_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_clock_show_am_pm_get(const Evas_Object *obj);
+ [ :elm_clock_show_am_pm_get, [ :evas_object ], :bool ],
+ # EAPI void elm_clock_show_seconds_set(Evas_Object *obj, Eina_Bool seconds);
+ [ :elm_clock_show_seconds_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_clock_show_seconds_get(const Evas_Object *obj);
+ [ :elm_clock_show_seconds_get, [ :evas_object ], :bool ],
+ # EAPI void elm_clock_interval_set(Evas_Object *obj, double interval);
+ [ :elm_clock_interval_set, [ :evas_object, :double ], :void ],
+ # EAPI double elm_clock_interval_get(const Evas_Object *obj);
+ [ :elm_clock_interval_get, [ :evas_object ], :double ],
+ ]
+ #
+ attach_fcts fcts
+ #
+ end
+end
+#
+# EOF
diff --git a/tools/extract-api.sh b/tools/extract-api.sh
index 4168dcc..f79a192 100755
--- a/tools/extract-api.sh
+++ b/tools/extract-api.sh
@@ -62,6 +62,7 @@ for header in \
"${INCLUDE}/elementary-0/elm_grid.h" \
"${INCLUDE}/elementary-0/elm_menu.h" \
"${INCLUDE}/elementary-0/elm_check.h" \
+ "${INCLUDE}/elementary-0/elm_clock.h" \
; do
#
if [ ! -e "$header" ]; then
diff --git a/tools/genruby.rb b/tools/genruby.rb
index cbd4fc2..a9c10ae 100755
--- a/tools/genruby.rb
+++ b/tools/genruby.rb
@@ -430,6 +430,11 @@ libs << {
:modname=>'ElmCheck', :prefix=>'elm_check', :outfile=>'elm/elm_check.rb',
:requires=>["#{NATIVE}/elementary"], :constants=>[]
}
+libs << {
+ :lib=>ELM_LIB,:header=>'elm_clock.h',
+ :modname=>'ElmClock', :prefix=>'elm_clock', :outfile=>'elm/elm_clock.rb',
+ :requires=>["#{NATIVE}/elementary"], :constants=>[]
+}
#
Dir.mkdir lib_path unless (File.exists? lib_path)
#