diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 12:25:50 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 12:25:50 +0100 |
commit | 7d35dcd880d9c29c40b853c88a44cf0cd685d16e (patch) | |
tree | e077ef30ced5576f5f25e6387b7bf2bc7f53d403 | |
parent | ef60728db6f5c98ea6534f19ad0b0098fe66ca8c (diff) | |
download | ffi-efl-7d35dcd880d9c29c40b853c88a44cf0cd685d16e.zip ffi-efl-7d35dcd880d9c29c40b853c88a44cf0cd685d16e.tar.gz |
parse elm_mirroring.h, generate elm_mirroring.rb
-rw-r--r-- | lib/efl/elementary_all.rb | 2 | ||||
-rw-r--r-- | lib/efl/elm/elm_mirroring.rb | 36 | ||||
-rw-r--r-- | lib/efl/native/elm/elm_mirroring.rb | 45 | ||||
-rwxr-xr-x | tools/genruby.rb | 2 |
4 files changed, 83 insertions, 2 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 diff --git a/tools/genruby.rb b/tools/genruby.rb index e98ca16..fd64127 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -413,7 +413,7 @@ libs << elm_h('elm_layout.h', 'ElmLayout') #libs << elm_h('elm_mapbuf.h', 'ElmX') #libs << elm_h('elm_map.h', 'ElmX') libs << elm_h('elm_menu.h', 'ElmMenu') -#libs << elm_h('elm_mirroring.h', 'ElmX') +libs << elm_h('elm_mirroring.h', 'ElmMirroring') #libs << elm_h('elm_need.h', 'ElmX') libs << elm_h('elm_notify.h', 'ElmNotify') libs << elm_h('elm_pager.h', 'ElmPager') |