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 /lib/efl/native | |
parent | ef60728db6f5c98ea6534f19ad0b0098fe66ca8c (diff) | |
download | ffi-efl-7d35dcd880d9c29c40b853c88a44cf0cd685d16e.zip ffi-efl-7d35dcd880d9c29c40b853c88a44cf0cd685d16e.tar.gz |
parse elm_mirroring.h, generate elm_mirroring.rb
Diffstat (limited to 'lib/efl/native')
-rw-r--r-- | lib/efl/native/elm/elm_mirroring.rb | 45 |
1 files changed, 45 insertions, 0 deletions
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 |