summaryrefslogtreecommitdiffstats
path: root/lib/efl/native/elm/elm_cursor.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:48:45 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:48:45 +0100
commitef44077310b4ebf8d3cb31ccb57d15b96a94c9d3 (patch)
treec2bb690ccc1be37c03f6dcdcf892fbf3e17f5067 /lib/efl/native/elm/elm_cursor.rb
parentdbb2c5713e11489dfaeb318a82785017f1794dde (diff)
parentb030c490265bb13ee98a650da419a033495042ed (diff)
downloadffi-efl-ef44077310b4ebf8d3cb31ccb57d15b96a94c9d3.zip
ffi-efl-ef44077310b4ebf8d3cb31ccb57d15b96a94c9d3.tar.gz
Merge branch 'wip'
Conflicts: tools/genruby.rb
Diffstat (limited to 'lib/efl/native/elm/elm_cursor.rb')
-rw-r--r--lib/efl/native/elm/elm_cursor.rb51
1 files changed, 51 insertions, 0 deletions
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