summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/efl/elm/elm_cursor.rb20
-rw-r--r--lib/efl/native/elm/elm_cursor.rb51
-rwxr-xr-xtools/extract-api.sh1
-rwxr-xr-xtools/genruby.rb5
4 files changed, 77 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_cursor.rb b/lib/efl/elm/elm_cursor.rb
new file mode 100644
index 0000000..cfdd602
--- /dev/null
+++ b/lib/efl/elm/elm_cursor.rb
@@ -0,0 +1,20 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_object'
+require 'efl/native/elm/elm_cursor'
+#
+module Efl
+ #
+ module Elm
+ #
+ class ElmCursor < ElmObject
+ #
+ search_prefixes 'elm_cursor_'
+ #
+ end
+ #
+ end
+end
+#
+# EOF
diff --git a/lib/efl/native/elm/elm_cursor.rb b/lib/efl/native/elm/elm_cursor.rb
new file mode 100644
index 0000000..1a0b6fe
--- /dev/null
+++ b/lib/efl/native/elm/elm_cursor.rb
@@ -0,0 +1,51 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/native'
+require 'efl/native/elementary'
+#
+module Efl
+ #
+ module ElmCursor
+ #
+ FCT_PREFIX = 'elm_cursor_' 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 void elm_object_cursor_set(Evas_Object *obj, const char *cursor);
+ [ :elm_object_cursor_set, [ :evas_object, :string ], :void ],
+ # EAPI const char *elm_object_cursor_get(const Evas_Object *obj);
+ [ :elm_object_cursor_get, [ :evas_object ], :string ],
+ # EAPI void elm_object_cursor_unset(Evas_Object *obj);
+ [ :elm_object_cursor_unset, [ :evas_object ], :void ],
+ # EAPI void elm_object_cursor_style_set(Evas_Object *obj, const char *style);
+ [ :elm_object_cursor_style_set, [ :evas_object, :string ], :void ],
+ # EAPI const char *elm_object_cursor_style_get(const Evas_Object *obj);
+ [ :elm_object_cursor_style_get, [ :evas_object ], :string ],
+ # EAPI void elm_object_cursor_engine_only_set(Evas_Object *obj, Eina_Bool engine_only);
+ [ :elm_object_cursor_engine_only_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_object_cursor_engine_only_get(const Evas_Object *obj);
+ [ :elm_object_cursor_engine_only_get, [ :evas_object ], :bool ],
+ # EAPI int elm_cursor_engine_only_get(void);
+ [ :elm_cursor_engine_only_get, [ ], :int ],
+ # EAPI Eina_Bool elm_cursor_engine_only_set(int engine_only);
+ [ :elm_cursor_engine_only_set, [ :int ], :bool ],
+ ]
+ #
+ attach_fcts fcts
+ #
+ end
+end
+#
+# EOF
diff --git a/tools/extract-api.sh b/tools/extract-api.sh
index ad3dd8e..57eae16 100755
--- a/tools/extract-api.sh
+++ b/tools/extract-api.sh
@@ -66,6 +66,7 @@ for header in \
"${INCLUDE}/elementary-0/elm_calendar.h" \
"${INCLUDE}/elementary-0/elm_bubble.h" \
"${INCLUDE}/elementary-0/elm_layout.h" \
+ "${INCLUDE}/elementary-0/elm_cursor.h" \
; do
#
if [ ! -e "$header" ]; then
diff --git a/tools/genruby.rb b/tools/genruby.rb
index 70f2592..10f269d 100755
--- a/tools/genruby.rb
+++ b/tools/genruby.rb
@@ -450,6 +450,11 @@ libs << {
:modname=>'ElmLayout', :prefix=>'elm_layout', :outfile=>'elm/elm_layout.rb',
:requires=>["#{NATIVE}/elementary"], :constants=>[]
}
+libs << {
+ :lib=>ELM_LIB,:header=>'elm_cursor.h',
+ :modname=>'ElmCursor', :prefix=>'elm_cursor', :outfile=>'elm/elm_cursor.rb',
+ :requires=>["#{NATIVE}/elementary"], :constants=>[]
+}
#
Dir.mkdir lib_path unless (File.exists? lib_path)
#