diff options
| -rw-r--r-- | lib/efl/elm/elm_check.rb | 22 | ||||
| -rw-r--r-- | lib/efl/native/elm/elm_check.rb | 41 | ||||
| -rwxr-xr-x | tools/extract-api.sh | 1 | ||||
| -rwxr-xr-x | tools/genruby.rb | 5 | 
4 files changed, 69 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_check.rb b/lib/efl/elm/elm_check.rb new file mode 100644 index 0000000..141890a --- /dev/null +++ b/lib/efl/elm/elm_check.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_check' +# +module Efl +    # +    module Elm +        # +        class ElmCheck < ElmObject +            # +            include Helper +            constructor :elm_check_add +            search_prefixes 'elm_check_' +            # +        end +        # +    end +end +# +# EOF diff --git a/lib/efl/native/elm/elm_check.rb b/lib/efl/native/elm/elm_check.rb new file mode 100644 index 0000000..9165d30 --- /dev/null +++ b/lib/efl/native/elm/elm_check.rb @@ -0,0 +1,41 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl +    # +    module ElmCheck +        # +        FCT_PREFIX = 'elm_check_' 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_check_add(Evas_Object *parent); +        [ :elm_check_add, [ :evas_object ], :evas_object ], +        # EAPI void elm_check_state_set(Evas_Object *obj, Eina_Bool state); +        [ :elm_check_state_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_check_state_get(const Evas_Object *obj); +        [ :elm_check_state_get, [ :evas_object ], :bool ], +        # EAPI void elm_check_state_pointer_set(Evas_Object *obj, Eina_Bool *statep); +        [ :elm_check_state_pointer_set, [ :evas_object, :pointer ], :void ], +        ] +        # +        attach_fcts fcts +        # +    end +end +# +# EOF diff --git a/tools/extract-api.sh b/tools/extract-api.sh index 501fc6e..4168dcc 100755 --- a/tools/extract-api.sh +++ b/tools/extract-api.sh @@ -61,6 +61,7 @@ for header in \      "${INCLUDE}/elementary-0/elm_image.h" \      "${INCLUDE}/elementary-0/elm_grid.h" \      "${INCLUDE}/elementary-0/elm_menu.h" \ +    "${INCLUDE}/elementary-0/elm_check.h" \      ; do      #      if [ ! -e "$header" ]; then diff --git a/tools/genruby.rb b/tools/genruby.rb index a58c294..cbd4fc2 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -425,6 +425,11 @@ libs << {      :modname=>'ElmMenu', :prefix=>'elm_menu', :outfile=>'elm/elm_menu.rb',      :requires=>["#{NATIVE}/elementary"], :constants=>[]  } +libs << { +    :lib=>ELM_LIB,:header=>'elm_check.h', +    :modname=>'ElmCheck', :prefix=>'elm_check', :outfile=>'elm/elm_check.rb', +    :requires=>["#{NATIVE}/elementary"], :constants=>[] +}  #  Dir.mkdir lib_path unless (File.exists? lib_path)  #  | 
