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 | |
parent | c70913b5ec836a345a6b96ec72e16d789d2705b2 (diff) | |
download | ffi-efl-6cfd759b104d175f7a1249f09ef84aa742f020e0.zip ffi-efl-6cfd759b104d175f7a1249f09ef84aa742f020e0.tar.gz |
parse elm_label.h and generate elm_label.rb
-rw-r--r-- | lib/efl/native/elm/elm_label.rb | 60 | ||||
-rwxr-xr-x | tools/extract-api.sh | 1 | ||||
-rwxr-xr-x | tools/genruby.rb | 5 |
3 files changed, 66 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 diff --git a/tools/extract-api.sh b/tools/extract-api.sh index 7b3b207..7d3965f 100755 --- a/tools/extract-api.sh +++ b/tools/extract-api.sh @@ -52,6 +52,7 @@ for header in \ "${INCLUDE}/elementary-0/elm_list.h" \ "${INCLUDE}/elementary-0/elm_win.h" \ "${INCLUDE}/elementary-0/elm_bg.h" \ + "${INCLUDE}/elementary-0/elm_label.h" \ ; do # if [ ! -e "$header" ]; then diff --git a/tools/genruby.rb b/tools/genruby.rb index 545459f..0b4188a 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -380,6 +380,11 @@ libs << { :modname=>'ElmBg', :prefix=>'elm_bg', :outfile=>'elm/elm_bg.rb', :requires=>["#{NATIVE}/elementary"], :constants=>[] } +libs << { + :lib=>ELM_LIB,:header=>'elm_label.h', + :modname=>'ElmLabel', :prefix=>'elm_label', :outfile=>'elm/elm_label.rb', + :requires=>["#{NATIVE}/elementary","#{NATIVE}/elm/elm_entry"], :constants=>[] +} Dir.mkdir lib_path unless (File.exists? lib_path) # libs.each do |lib| |