summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/efl/elementary_all.rb2
-rw-r--r--lib/efl/elm/elm_mirroring.rb36
-rw-r--r--lib/efl/native/elm/elm_mirroring.rb45
3 files changed, 82 insertions, 1 deletions
diff --git a/lib/efl/elementary_all.rb b/lib/efl/elementary_all.rb
index 477095c..bdb75d6 100644
--- a/lib/efl/elementary_all.rb
+++ b/lib/efl/elementary_all.rb
@@ -56,7 +56,7 @@ require 'efl/elm/elm_list'
#require 'efl/elm/elm_mapbuf'
#require 'efl/elm/elm_map'
require 'efl/elm/elm_menu'
-#require 'efl/elm/elm_mirroring'
+require 'efl/elm/elm_mirroring'
require 'efl/elm/elm_multibuttonentry'
require 'efl/elm/elm_naviframe'
#require 'efl/elm/elm_need'
diff --git a/lib/efl/elm/elm_mirroring.rb b/lib/efl/elm/elm_mirroring.rb
new file mode 100644
index 0000000..e19c3fc
--- /dev/null
+++ b/lib/efl/elm/elm_mirroring.rb
@@ -0,0 +1,36 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_object'
+require 'efl/native/elm/elm_mirroring'
+#
+module Efl
+ #
+ module Elm
+ #
+ class ElmMirroring
+ #
+ def mirrored_get
+ Native::elm_object_mirrored_get @ptr
+ end
+ alias :mirrored :mirrored_get
+ #
+ def mirrored_set mirrored
+ Native::elm_object_mirrored_set @ptr, mirrored
+ end
+ #
+ def mirrored_automatic_get
+ Native::elm_object_mirrored_automatic_get @ptr
+ end
+ alias :mirrored_automatic :mirrored_automatic_get
+ #
+ def mirrored_automatic_set auto
+ Native::elm_object_mirrored_automatic_set @ptr, auto
+ end
+ #
+ end
+ #
+ end
+end
+#
+# EOF
diff --git a/lib/efl/native/elm/elm_mirroring.rb b/lib/efl/native/elm/elm_mirroring.rb
new file mode 100644
index 0000000..6e59752
--- /dev/null
+++ b/lib/efl/native/elm/elm_mirroring.rb
@@ -0,0 +1,45 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/native'
+require 'efl/native/elementary'
+#
+module Efl
+ #
+ module ElmMirroring
+ #
+ FCT_PREFIX = 'elm_mirroring_' 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 Eina_Bool elm_mirrored_get(void);
+ [ :elm_mirrored_get, [ ], :bool ],
+ # EAPI void elm_mirrored_set(Eina_Bool mirrored);
+ [ :elm_mirrored_set, [ :bool ], :void ],
+ # EAPI Eina_Bool elm_object_mirrored_get(const Evas_Object *obj);
+ [ :elm_object_mirrored_get, [ :evas_object ], :bool ],
+ # EAPI void elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored);
+ [ :elm_object_mirrored_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_object_mirrored_automatic_get(const Evas_Object *obj);
+ [ :elm_object_mirrored_automatic_get, [ :evas_object ], :bool ],
+ # EAPI void elm_object_mirrored_automatic_set(Evas_Object *obj, Eina_Bool automatic);
+ [ :elm_object_mirrored_automatic_set, [ :evas_object, :bool ], :void ],
+ ]
+ #
+ attach_fcts fcts
+ #
+ end
+end
+#
+# EOF