diff options
| -rw-r--r-- | lib/efl/elementary_all.rb | 3 | ||||
| -rw-r--r-- | lib/efl/elm/elm_fileselector.rb | 22 | ||||
| -rw-r--r-- | lib/efl/elm/elm_fileselector_button.rb | 22 | ||||
| -rw-r--r-- | lib/efl/elm/elm_fileselector_entry.rb | 22 | ||||
| -rw-r--r-- | lib/efl/native/elm/elm_fileselector.rb | 67 | ||||
| -rw-r--r-- | lib/efl/native/elm/elm_fileselector_button.rb | 63 | ||||
| -rw-r--r-- | lib/efl/native/elm/elm_fileselector_entry.rb | 67 | ||||
| -rwxr-xr-x | tools/extract-api.sh | 3 | ||||
| -rwxr-xr-x | tools/genruby.rb | 15 | 
9 files changed, 284 insertions, 0 deletions
| diff --git a/lib/efl/elementary_all.rb b/lib/efl/elementary_all.rb index b4b585e..41c8a2e 100644 --- a/lib/efl/elementary_all.rb +++ b/lib/efl/elementary_all.rb @@ -17,6 +17,9 @@ require 'efl/elm/elm_colorselector'  require 'efl/elm/elm_cursor'  require 'efl/elm/elm_diskselector'  require 'efl/elm/elm_entry' +require 'efl/elm/elm_fileselector' +require 'efl/elm/elm_fileselector_button' +require 'efl/elm/elm_fileselector_entry'  require 'efl/elm/elm_flip'  require 'efl/elm/elm_flipselector'  require 'efl/elm/elm_frame' diff --git a/lib/efl/elm/elm_fileselector.rb b/lib/efl/elm/elm_fileselector.rb new file mode 100644 index 0000000..f1bddae --- /dev/null +++ b/lib/efl/elm/elm_fileselector.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_fileselector' +# +module Efl +    # +    module Elm +        # +        class ElmFileSelector < ElmObject +            # +            include Helper +            constructor :elm_fileselector_add +            search_prefixes 'elm_fileselector_' +            # +        end +        # +    end +end +# +# EOF diff --git a/lib/efl/elm/elm_fileselector_button.rb b/lib/efl/elm/elm_fileselector_button.rb new file mode 100644 index 0000000..8123671 --- /dev/null +++ b/lib/efl/elm/elm_fileselector_button.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_fileselector_button' +# +module Efl +    # +    module Elm +        # +        class ElmFileSelectorButton < ElmObject +            # +            include Helper +            constructor :elm_fileselector_button_add +            search_prefixes 'elm_fileselector_button_' +            # +        end +        # +    end +end +# +# EOF diff --git a/lib/efl/elm/elm_fileselector_entry.rb b/lib/efl/elm/elm_fileselector_entry.rb new file mode 100644 index 0000000..f68a5c6 --- /dev/null +++ b/lib/efl/elm/elm_fileselector_entry.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_fileselector_entry' +# +module Efl +    # +    module Elm +        # +        class ElmFileSelectorEntry < ElmObject +            # +            include Helper +            constructor :elm_fileselector_entry_add +            search_prefixes 'elm_fileselector_entry_' +            # +        end +        # +    end +end +# +# EOF diff --git a/lib/efl/native/elm/elm_fileselector.rb b/lib/efl/native/elm/elm_fileselector.rb new file mode 100644 index 0000000..4c342eb --- /dev/null +++ b/lib/efl/native/elm/elm_fileselector.rb @@ -0,0 +1,67 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl +    # +    module ElmFileSelector +        # +        FCT_PREFIX = 'elm_fileselector_' 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' +        # +        # ENUMS +        # typedef enum {...} Elm_Fileselector_Mode; +        enum :elm_fileselector_mode, [ :elm_fileselector_list, 0, :elm_fileselector_grid, 1, :elm_fileselector_last, 2 ] +        # +        # FUNCTIONS +        fcts = [ +        # EAPI Evas_Object *elm_fileselector_add(Evas_Object *parent); +        [ :elm_fileselector_add, [ :evas_object ], :evas_object ], +        # EAPI void elm_fileselector_is_save_set(Evas_Object *obj, Eina_Bool is_save); +        [ :elm_fileselector_is_save_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_is_save_get(const Evas_Object *obj); +        [ :elm_fileselector_is_save_get, [ :evas_object ], :bool ], +        # EAPI void elm_fileselector_folder_only_set(Evas_Object *obj, Eina_Bool only); +        [ :elm_fileselector_folder_only_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_folder_only_get(const Evas_Object *obj); +        [ :elm_fileselector_folder_only_get, [ :evas_object ], :bool ], +        # EAPI void elm_fileselector_buttons_ok_cancel_set(Evas_Object *obj, Eina_Bool buttons); +        [ :elm_fileselector_buttons_ok_cancel_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_buttons_ok_cancel_get(const Evas_Object *obj); +        [ :elm_fileselector_buttons_ok_cancel_get, [ :evas_object ], :bool ], +        # EAPI void elm_fileselector_expandable_set(Evas_Object *obj, Eina_Bool expand); +        [ :elm_fileselector_expandable_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_expandable_get(const Evas_Object *obj); +        [ :elm_fileselector_expandable_get, [ :evas_object ], :bool ], +        # EAPI void elm_fileselector_path_set(Evas_Object *obj, const char *path); +        [ :elm_fileselector_path_set, [ :evas_object, :string ], :void ], +        # EAPI const char *elm_fileselector_path_get(const Evas_Object *obj); +        [ :elm_fileselector_path_get, [ :evas_object ], :string ], +        # EAPI Eina_Bool elm_fileselector_selected_set(Evas_Object *obj, const char *path); +        [ :elm_fileselector_selected_set, [ :evas_object, :string ], :bool ], +        # EAPI const char *elm_fileselector_selected_get(const Evas_Object *obj); +        [ :elm_fileselector_selected_get, [ :evas_object ], :string ], +        # EAPI void elm_fileselector_mode_set(Evas_Object *obj, Elm_Fileselector_Mode mode); +        [ :elm_fileselector_mode_set, [ :evas_object, :elm_fileselector_mode ], :void ], +        # EAPI Elm_Fileselector_Mode elm_fileselector_mode_get(const Evas_Object *obj); +        [ :elm_fileselector_mode_get, [ :evas_object ], :elm_fileselector_mode ], +        ] +        # +        attach_fcts fcts +        # +    end +end +# +# EOF diff --git a/lib/efl/native/elm/elm_fileselector_button.rb b/lib/efl/native/elm/elm_fileselector_button.rb new file mode 100644 index 0000000..3fc9ed8 --- /dev/null +++ b/lib/efl/native/elm/elm_fileselector_button.rb @@ -0,0 +1,63 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl +    # +    module ElmFileSelectorButton +        # +        FCT_PREFIX = 'elm_fileselector_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_fileselector_button_add(Evas_Object *parent); +        [ :elm_fileselector_button_add, [ :evas_object ], :evas_object ], +        # EAPI void elm_fileselector_button_window_title_set(Evas_Object *obj, const char *title); +        [ :elm_fileselector_button_window_title_set, [ :evas_object, :string ], :void ], +        # EAPI const char *elm_fileselector_button_window_title_get(const Evas_Object *obj); +        [ :elm_fileselector_button_window_title_get, [ :evas_object ], :string ], +        # EAPI void elm_fileselector_button_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height); +        [ :elm_fileselector_button_window_size_set, [ :evas_object, :int, :int ], :void ], +        # EAPI void elm_fileselector_button_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height); +        [ :elm_fileselector_button_window_size_get, [ :evas_object, :pointer, :pointer ], :void ], +        # EAPI void elm_fileselector_button_path_set(Evas_Object *obj, const char *path); +        [ :elm_fileselector_button_path_set, [ :evas_object, :string ], :void ], +        # EAPI const char *elm_fileselector_button_path_get(const Evas_Object *obj); +        [ :elm_fileselector_button_path_get, [ :evas_object ], :string ], +        # EAPI void elm_fileselector_button_expandable_set(Evas_Object *obj, Eina_Bool value); +        [ :elm_fileselector_button_expandable_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_button_expandable_get(const Evas_Object *obj); +        [ :elm_fileselector_button_expandable_get, [ :evas_object ], :bool ], +        # EAPI void elm_fileselector_button_folder_only_set(Evas_Object *obj, Eina_Bool value); +        [ :elm_fileselector_button_folder_only_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_button_folder_only_get(const Evas_Object *obj); +        [ :elm_fileselector_button_folder_only_get, [ :evas_object ], :bool ], +        # EAPI void elm_fileselector_button_is_save_set(Evas_Object *obj, Eina_Bool value); +        [ :elm_fileselector_button_is_save_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_button_is_save_get(const Evas_Object *obj); +        [ :elm_fileselector_button_is_save_get, [ :evas_object ], :bool ], +        # EAPI void elm_fileselector_button_inwin_mode_set(Evas_Object *obj, Eina_Bool value); +        [ :elm_fileselector_button_inwin_mode_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_button_inwin_mode_get(const Evas_Object *obj); +        [ :elm_fileselector_button_inwin_mode_get, [ :evas_object ], :bool ], +        ] +        # +        attach_fcts fcts +        # +    end +end +# +# EOF diff --git a/lib/efl/native/elm/elm_fileselector_entry.rb b/lib/efl/native/elm/elm_fileselector_entry.rb new file mode 100644 index 0000000..c9e54aa --- /dev/null +++ b/lib/efl/native/elm/elm_fileselector_entry.rb @@ -0,0 +1,67 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl +    # +    module ElmFileSelectorEntry +        # +        FCT_PREFIX = 'elm_fileselector_entry_' 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_fileselector_entry_add(Evas_Object *parent); +        [ :elm_fileselector_entry_add, [ :evas_object ], :evas_object ], +        # EAPI void elm_fileselector_entry_window_title_set(Evas_Object *obj, const char *title); +        [ :elm_fileselector_entry_window_title_set, [ :evas_object, :string ], :void ], +        # EAPI const char *elm_fileselector_entry_window_title_get(const Evas_Object *obj); +        [ :elm_fileselector_entry_window_title_get, [ :evas_object ], :string ], +        # EAPI void elm_fileselector_entry_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height); +        [ :elm_fileselector_entry_window_size_set, [ :evas_object, :int, :int ], :void ], +        # EAPI void elm_fileselector_entry_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height); +        [ :elm_fileselector_entry_window_size_get, [ :evas_object, :pointer, :pointer ], :void ], +        # EAPI void elm_fileselector_entry_path_set(Evas_Object *obj, const char *path); +        [ :elm_fileselector_entry_path_set, [ :evas_object, :string ], :void ], +        # EAPI const char *elm_fileselector_entry_path_get(const Evas_Object *obj); +        [ :elm_fileselector_entry_path_get, [ :evas_object ], :string ], +        # EAPI void elm_fileselector_entry_expandable_set(Evas_Object *obj, Eina_Bool value); +        [ :elm_fileselector_entry_expandable_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_entry_expandable_get(const Evas_Object *obj); +        [ :elm_fileselector_entry_expandable_get, [ :evas_object ], :bool ], +        # EAPI void elm_fileselector_entry_folder_only_set(Evas_Object *obj, Eina_Bool value); +        [ :elm_fileselector_entry_folder_only_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_entry_folder_only_get(const Evas_Object *obj); +        [ :elm_fileselector_entry_folder_only_get, [ :evas_object ], :bool ], +        # EAPI void elm_fileselector_entry_is_save_set(Evas_Object *obj, Eina_Bool value); +        [ :elm_fileselector_entry_is_save_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_entry_is_save_get(const Evas_Object *obj); +        [ :elm_fileselector_entry_is_save_get, [ :evas_object ], :bool ], +        # EAPI void elm_fileselector_entry_inwin_mode_set(Evas_Object *obj, Eina_Bool value); +        [ :elm_fileselector_entry_inwin_mode_set, [ :evas_object, :bool ], :void ], +        # EAPI Eina_Bool elm_fileselector_entry_inwin_mode_get(const Evas_Object *obj); +        [ :elm_fileselector_entry_inwin_mode_get, [ :evas_object ], :bool ], +        # EAPI void elm_fileselector_entry_selected_set(Evas_Object *obj, const char *path); +        [ :elm_fileselector_entry_selected_set, [ :evas_object, :string ], :void ], +        # EAPI const char *elm_fileselector_entry_selected_get(const Evas_Object *obj); +        [ :elm_fileselector_entry_selected_get, [ :evas_object ], :string ], +        ] +        # +        attach_fcts fcts +        # +    end +end +# +# EOF diff --git a/tools/extract-api.sh b/tools/extract-api.sh index 01799d2..1fc48d6 100755 --- a/tools/extract-api.sh +++ b/tools/extract-api.sh @@ -74,6 +74,9 @@ for header in \      "${INCLUDE}/elementary-0/elm_hover.h" \      "${INCLUDE}/elementary-0/elc_hoversel.h" \      "${INCLUDE}/elementary-0/elm_colorselector.h" \ +    "${INCLUDE}/elementary-0/elc_fileselector.h" \ +    "${INCLUDE}/elementary-0/elc_fileselector_entry.h" \ +    "${INCLUDE}/elementary-0/elc_fileselector_button.h" \      ; do      #      if [ ! -e "$header" ]; then diff --git a/tools/genruby.rb b/tools/genruby.rb index 04d666f..4e25683 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -490,6 +490,21 @@ libs << {      :modname=>'ElmColorSelector', :prefix=>'elm_colorselector', :outfile=>'elm/elm_colorselector.rb',      :requires=>["#{NATIVE}/elementary"], :constants=>[]  } +libs << { +    :lib=>ELM_LIB,:header=>'elc_fileselector.h', +    :modname=>'ElmFileSelector', :prefix=>'elm_fileselector', :outfile=>'elm/elm_fileselector.rb', +    :requires=>["#{NATIVE}/elementary"], :constants=>[] +} +libs << { +    :lib=>ELM_LIB,:header=>'elc_fileselector_entry.h', +    :modname=>'ElmFileSelectorEntry', :prefix=>'elm_fileselector_entry', :outfile=>'elm/elm_fileselector_entry.rb', +    :requires=>["#{NATIVE}/elementary"], :constants=>[] +} +libs << { +    :lib=>ELM_LIB,:header=>'elc_fileselector_button.h', +    :modname=>'ElmFileSelectorButton', :prefix=>'elm_fileselector_button', :outfile=>'elm/elm_fileselector_button.rb', +    :requires=>["#{NATIVE}/elementary"], :constants=>[] +}  #  Dir.mkdir lib_path unless (File.exists? lib_path)  # | 
