diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 14:53:14 +0100 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 14:53:14 +0100 | 
| commit | 31656c652ea2dd77ed0aa2180635a2b41a543c01 (patch) | |
| tree | ac8053ec6fe2413e4bbecd2300ab462539751ca2 | |
| parent | c858ea430f766c94b5f9ca1cb716306b8b6d7031 (diff) | |
| download | ffi-efl-31656c652ea2dd77ed0aa2180635a2b41a543c01.zip ffi-efl-31656c652ea2dd77ed0aa2180635a2b41a543c01.tar.gz | |
parse elm_button.h, generate elm_button.rb
| -rw-r--r-- | lib/efl/elm/elm_button.rb | 22 | ||||
| -rw-r--r-- | lib/efl/native/elm/elm_button.rb | 47 | ||||
| -rwxr-xr-x | tools/extract-api.sh | 1 | ||||
| -rwxr-xr-x | tools/genruby.rb | 7 | 
4 files changed, 76 insertions, 1 deletions
| diff --git a/lib/efl/elm/elm_button.rb b/lib/efl/elm/elm_button.rb new file mode 100644 index 0000000..dbf9c86 --- /dev/null +++ b/lib/efl/elm/elm_button.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_button' +# +module Efl +    # +    module Elm +        # +        class ElmButton < ElmObject +            # +            include Helper +            constructor :elm_button_add +            search_prefixes 'elm_button_' +            # +        end +        # +    end +end +# +# EOF diff --git a/lib/efl/native/elm/elm_button.rb b/lib/efl/native/elm/elm_button.rb new file mode 100644 index 0000000..c850123 --- /dev/null +++ b/lib/efl/native/elm/elm_button.rb @@ -0,0 +1,47 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl +    # +    module ElmButton +        # +        FCT_PREFIX = 'elm_button_' 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_button_add(Evas_Object *parent); +        [ :elm_button_add, [ :evas_object ], :evas_object ], +        # EAPI void elm_button_autorepeat_set(Evas_Object *obj, Eina_Bool on); +        [ :elm_button_autorepeat_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_button_autorepeat_get(const Evas_Object *obj); +        [ :elm_button_autorepeat_get, [ :evas_object ], :bool ], +        # EAPI void elm_button_autorepeat_initial_timeout_set(Evas_Object *obj, double t); +        [ :elm_button_autorepeat_initial_timeout_set, [ :evas_object, :double ], :void ], +        # EAPI double elm_button_autorepeat_initial_timeout_get(const Evas_Object *obj); +        [ :elm_button_autorepeat_initial_timeout_get, [ :evas_object ], :double ], +        # EAPI void elm_button_autorepeat_gap_timeout_set(Evas_Object *obj, double t); +        [ :elm_button_autorepeat_gap_timeout_set, [ :evas_object, :double ], :void ], +        # EAPI double elm_button_autorepeat_gap_timeout_get(const Evas_Object *obj); +        [ :elm_button_autorepeat_gap_timeout_get, [ :evas_object ], :double ], +        ] +        # +        attach_fcts fcts +        # +    end +end +# +# EOF diff --git a/tools/extract-api.sh b/tools/extract-api.sh index adf3a67..75b4076 100755 --- a/tools/extract-api.sh +++ b/tools/extract-api.sh @@ -55,6 +55,7 @@ for header in \      "${INCLUDE}/elementary-0/elm_label.h" \      "${INCLUDE}/elementary-0/elm_object.h" \      "${INCLUDE}/elementary-0/elm_box.h" \ +    "${INCLUDE}/elementary-0/elm_button.h" \      ; do      #      if [ ! -e "$header" ]; then diff --git a/tools/genruby.rb b/tools/genruby.rb index a706e5e..0874c59 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -393,7 +393,12 @@ libs << {  libs << {      :lib=>ELM_LIB,:header=>'elm_box.h',      :modname=>'ElmBox', :prefix=>'elm_box', :outfile=>'elm/elm_box.rb', -    :requires=>["#{NATIVE}/edje","#{NATIVE}/elementary"], :constants=>[] +    :requires=>["#{NATIVE}/elementary"], :constants=>[] +} +libs << { +    :lib=>ELM_LIB,:header=>'elm_button.h', +    :modname=>'ElmButton', :prefix=>'elm_button', :outfile=>'elm/elm_button.rb', +    :requires=>["#{NATIVE}/elementary"], :constants=>[]  }  Dir.mkdir lib_path unless (File.exists? lib_path)  # | 
