diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 10:54:39 +0100 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 10:54:39 +0100 | 
| commit | 6cfd759b104d175f7a1249f09ef84aa742f020e0 (patch) | |
| tree | 030d481fc2bb9d62670683b7ff8ed9eca5b81ca4 /lib/efl/native | |
| parent | c70913b5ec836a345a6b96ec72e16d789d2705b2 (diff) | |
| download | ffi-efl-6cfd759b104d175f7a1249f09ef84aa742f020e0.zip ffi-efl-6cfd759b104d175f7a1249f09ef84aa742f020e0.tar.gz | |
parse elm_label.h and generate elm_label.rb
Diffstat (limited to 'lib/efl/native')
| -rw-r--r-- | lib/efl/native/elm/elm_label.rb | 60 | 
1 files changed, 60 insertions, 0 deletions
| diff --git a/lib/efl/native/elm/elm_label.rb b/lib/efl/native/elm/elm_label.rb new file mode 100644 index 0000000..f17f5e9 --- /dev/null +++ b/lib/efl/native/elm/elm_label.rb @@ -0,0 +1,60 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +require 'efl/native/elm/elm_entry' +# +module Efl +    # +    module ElmLabel +        # +        FCT_PREFIX = 'elm_label_' 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_label_add(Evas_Object *parent); +        [ :elm_label_add, [ :evas_object ], :evas_object ], +        # EAPI void elm_label_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap); +        [ :elm_label_line_wrap_set, [ :evas_object, :elm_wrap_type ], :void ], +        # EAPI Elm_Wrap_Type elm_label_line_wrap_get(const Evas_Object *obj); +        [ :elm_label_line_wrap_get, [ :evas_object ], :elm_wrap_type ], +        # EAPI void elm_label_wrap_width_set(Evas_Object *obj, Evas_Coord w); +        [ :elm_label_wrap_width_set, [ :evas_object, :int ], :void ], +        # EAPI Evas_Coord elm_label_wrap_width_get(const Evas_Object *obj); +        [ :elm_label_wrap_width_get, [ :evas_object ], :int ], +        # EAPI void elm_label_wrap_height_set(Evas_Object *obj, Evas_Coord h); +        [ :elm_label_wrap_height_set, [ :evas_object, :int ], :void ], +        # EAPI Evas_Coord elm_label_wrap_height_get(const Evas_Object *obj); +        [ :elm_label_wrap_height_get, [ :evas_object ], :int ], +        # EAPI void elm_label_ellipsis_set(Evas_Object *obj, Eina_Bool ellipsis); +        [ :elm_label_ellipsis_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_label_ellipsis_get(const Evas_Object *obj); +        [ :elm_label_ellipsis_get, [ :evas_object ], :bool ], +        # EAPI void elm_label_slide_set(Evas_Object *obj, Eina_Bool slide); +        [ :elm_label_slide_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_label_slide_get(const Evas_Object *obj); +        [ :elm_label_slide_get, [ :evas_object ], :bool ], +        # EAPI void elm_label_slide_duration_set(Evas_Object *obj, double duration); +        [ :elm_label_slide_duration_set, [ :evas_object, :double ], :void ], +        # EAPI double elm_label_slide_duration_get(const Evas_Object *obj); +        [ :elm_label_slide_duration_get, [ :evas_object ], :double ], +        ] +        # +        attach_fcts fcts +        # +    end +end +# +# EOF | 
