diff options
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 | 
