summaryrefslogtreecommitdiffstats
path: root/lib/efl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/efl')
-rw-r--r--lib/efl/elm/elm_check.rb22
-rw-r--r--lib/efl/native/elm/elm_check.rb41
2 files changed, 63 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_check.rb b/lib/efl/elm/elm_check.rb
new file mode 100644
index 0000000..141890a
--- /dev/null
+++ b/lib/efl/elm/elm_check.rb
@@ -0,0 +1,22 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_object'
+require 'efl/native/elm/elm_check'
+#
+module Efl
+ #
+ module Elm
+ #
+ class ElmCheck < ElmObject
+ #
+ include Helper
+ constructor :elm_check_add
+ search_prefixes 'elm_check_'
+ #
+ end
+ #
+ end
+end
+#
+# EOF
diff --git a/lib/efl/native/elm/elm_check.rb b/lib/efl/native/elm/elm_check.rb
new file mode 100644
index 0000000..9165d30
--- /dev/null
+++ b/lib/efl/native/elm/elm_check.rb
@@ -0,0 +1,41 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/native'
+require 'efl/native/elementary'
+#
+module Efl
+ #
+ module ElmCheck
+ #
+ FCT_PREFIX = 'elm_check_' 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_check_add(Evas_Object *parent);
+ [ :elm_check_add, [ :evas_object ], :evas_object ],
+ # EAPI void elm_check_state_set(Evas_Object *obj, Eina_Bool state);
+ [ :elm_check_state_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_check_state_get(const Evas_Object *obj);
+ [ :elm_check_state_get, [ :evas_object ], :bool ],
+ # EAPI void elm_check_state_pointer_set(Evas_Object *obj, Eina_Bool *statep);
+ [ :elm_check_state_pointer_set, [ :evas_object, :pointer ], :void ],
+ ]
+ #
+ attach_fcts fcts
+ #
+ end
+end
+#
+# EOF