summaryrefslogtreecommitdiffstats
path: root/lib/efl/native/elm/elm_fileselector_entry.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-27 17:01:20 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-27 17:01:20 +0100
commit02df9be108f9865efe2f45f2df5d7aedde40fa34 (patch)
tree73b35d4b36154a70177b41edd63150c9d9b2d17e /lib/efl/native/elm/elm_fileselector_entry.rb
parenta7dabdab8c3eb4b5e245034364ce63b947a48040 (diff)
downloadffi-efl-02df9be108f9865efe2f45f2df5d7aedde40fa34.zip
ffi-efl-02df9be108f9865efe2f45f2df5d7aedde40fa34.tar.gz
parse elc_fileselector*.h, generate elm_fileselector*.rb
Diffstat (limited to 'lib/efl/native/elm/elm_fileselector_entry.rb')
-rw-r--r--lib/efl/native/elm/elm_fileselector_entry.rb67
1 files changed, 67 insertions, 0 deletions
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