summaryrefslogtreecommitdiffstats
path: root/lib/efl/native/elm/elm_fileselector.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-12-20 16:16:09 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2013-12-20 16:16:09 +0100
commit821a1acdb583b2727717a6d3360c49f7a3489d52 (patch)
treece9e3bfe19642df1d8fec2d02241d3dd284d50f2 /lib/efl/native/elm/elm_fileselector.rb
parent4a2c039c135aabac55b2d88a5f5548d52d7a3cdf (diff)
downloadffi-efl-master.zip
ffi-efl-master.tar.gz
wip-worktree-stateHEADmaster
Diffstat (limited to 'lib/efl/native/elm/elm_fileselector.rb')
-rw-r--r--lib/efl/native/elm/elm_fileselector.rb52
1 files changed, 35 insertions, 17 deletions
diff --git a/lib/efl/native/elm/elm_fileselector.rb b/lib/efl/native/elm/elm_fileselector.rb
index 6c86789..0b0769a 100644
--- a/lib/efl/native/elm/elm_fileselector.rb
+++ b/lib/efl/native/elm/elm_fileselector.rb
@@ -28,35 +28,53 @@ module Efl
# FUNCTIONS
fcts = [
# EAPI Evas_Object *elm_fileselector_add(Evas_Object *parent);
- [ :elm_fileselector_add, [ :evas_object ], :evas_object ],
+ [ :elm_fileselector_add, [ :pointer ], :pointer ],
# EAPI void elm_fileselector_is_save_set(Evas_Object *obj, Eina_Bool is_save);
- [ :elm_fileselector_is_save_set, [ :evas_object, :bool ], :void ],
+ [ :elm_fileselector_is_save_set, [ :pointer, :bool ], :void ],
# EAPI Eina_Bool elm_fileselector_is_save_get(const Evas_Object *obj);
- [ :elm_fileselector_is_save_get, [ :evas_object ], :bool ],
+ [ :elm_fileselector_is_save_get, [ :pointer ], :bool ],
# EAPI void elm_fileselector_folder_only_set(Evas_Object *obj, Eina_Bool only);
- [ :elm_fileselector_folder_only_set, [ :evas_object, :bool ], :void ],
+ [ :elm_fileselector_folder_only_set, [ :pointer, :bool ], :void ],
# EAPI Eina_Bool elm_fileselector_folder_only_get(const Evas_Object *obj);
- [ :elm_fileselector_folder_only_get, [ :evas_object ], :bool ],
+ [ :elm_fileselector_folder_only_get, [ :pointer ], :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 ],
+ [ :elm_fileselector_buttons_ok_cancel_set, [ :pointer, :bool ], :void ],
# EAPI Eina_Bool elm_fileselector_buttons_ok_cancel_get(const Evas_Object *obj);
- [ :elm_fileselector_buttons_ok_cancel_get, [ :evas_object ], :bool ],
+ [ :elm_fileselector_buttons_ok_cancel_get, [ :pointer ], :bool ],
# EAPI void elm_fileselector_expandable_set(Evas_Object *obj, Eina_Bool expand);
- [ :elm_fileselector_expandable_set, [ :evas_object, :bool ], :void ],
+ [ :elm_fileselector_expandable_set, [ :pointer, :bool ], :void ],
# EAPI Eina_Bool elm_fileselector_expandable_get(const Evas_Object *obj);
- [ :elm_fileselector_expandable_get, [ :evas_object ], :bool ],
+ [ :elm_fileselector_expandable_get, [ :pointer ], :bool ],
# EAPI void elm_fileselector_path_set(Evas_Object *obj, const char *path);
- [ :elm_fileselector_path_set, [ :evas_object, :string ], :void ],
+ [ :elm_fileselector_path_set, [ :pointer, :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 ],
+ [ :elm_fileselector_path_get, [ :pointer ], :string ],
# EAPI void elm_fileselector_mode_set(Evas_Object *obj, Elm_Fileselector_Mode mode);
- [ :elm_fileselector_mode_set, [ :evas_object, :elm_fileselector_mode ], :void ],
+ [ :elm_fileselector_mode_set, [ :pointer, :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 ],
+ [ :elm_fileselector_mode_get, [ :pointer ], :elm_fileselector_mode ],
+ # EAPI void elm_fileselector_multi_select_set(Evas_Object *obj, Eina_Bool multi);
+ [ :elm_fileselector_multi_select_set, [ :pointer, :bool ], :void ],
+ # EAPI Eina_Bool elm_fileselector_multi_select_get(const Evas_Object *obj);
+ [ :elm_fileselector_multi_select_get, [ :pointer ], :bool ],
+ # EAPI Eina_Bool elm_fileselector_selected_set(Evas_Object *obj, const char *path);
+ [ :elm_fileselector_selected_set, [ :pointer, :string ], :bool ],
+ # EAPI const char *elm_fileselector_selected_get(const Evas_Object *obj);
+ [ :elm_fileselector_selected_get, [ :pointer ], :string ],
+ # EAPI const Eina_List *elm_fileselector_selected_paths_get(const Evas_Object *obj);
+ [ :elm_fileselector_selected_paths_get, [ :pointer ], :eina_list ],
+ # EAPI Eina_Bool elm_fileselector_mime_types_filter_append(Evas_Object *obj, const char *mime_types, const char *filter_name);
+ [ :elm_fileselector_mime_types_filter_append, [ :pointer, :string, :string ], :bool ],
+ # EAPI void elm_fileselector_filters_clear(Evas_Object *obj);
+ [ :elm_fileselector_filters_clear, [ :pointer ], :void ],
+ # EAPI void elm_fileselector_hidden_visible_set(Evas_Object *obj, Eina_Bool visible);
+ [ :elm_fileselector_hidden_visible_set, [ :pointer, :bool ], :void ],
+ # EAPI Eina_Bool elm_fileselector_hidden_visible_get(const Evas_Object *obj);
+ [ :elm_fileselector_hidden_visible_get, [ :pointer ], :bool ],
+ # EAPI void elm_fileselector_thumbnail_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h);
+ [ :elm_fileselector_thumbnail_size_set, [ :pointer, :int, :int ], :void ],
+ # EAPI void elm_fileselector_thumbnail_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h);
+ [ :elm_fileselector_thumbnail_size_get, [ :pointer, :pointer, :pointer ], :void ],
]
#
attach_fcts fcts