fleselector_button: Implement some missing interfaces of Elm_Interface_Fileselector
authorRyuan Choi <ryuan.choi@gmail.com>
Wed, 9 Apr 2014 15:49:10 +0000 (00:49 +0900)
committerRyuan Choi <ryuan.choi@gmail.com>
Wed, 9 Apr 2014 15:52:37 +0000 (00:52 +0900)
Implemented below.
- Elm_Interface_Fileselector::selected_paths::get;
- Elm_Interface_Fileselector::thumbnail_size;
- Elm_Interface_Fileselector::selected;
- Elm_Interface_Fileselector::hidden_visible;
- Elm_Interface_Fileselector::sort_method;
- Elm_Interface_Fileselector::multi_select;
- Elm_Interface_Fileselector::mode;

legacy/elementary/src/lib/elc_fileselector_button.c
legacy/elementary/src/lib/elc_fileselector_button.eo
legacy/elementary/src/lib/elm_widget_fileselector_button.h

index ce04f31..6bc3c2f 100644 (file)
@@ -12,6 +12,9 @@
 #define MY_CLASS_NAME "Elm_Fileselector_Button"
 #define MY_CLASS_NAME_LEGACY "elm_fileselector_button"
 
+/* FIXME: need a way to find a gap between the size of item and thumbnail */
+#define GENGRID_PADDING 16
+
 #define DEFAULT_WINDOW_TITLE "Select a file"
 
 #define ELM_PRIV_FILESELECTOR_BUTTON_SIGNALS(cmd) \
@@ -188,6 +191,7 @@ _elc_fileselector_button_evas_smart_del(Eo *obj, Elc_Fileselector_Button_Data *s
 {
    eina_stringshare_del(sd->window_title);
    eina_stringshare_del(sd->fsd.path);
+   eina_stringshare_del(sd->fsd.selection);
    evas_object_del(sd->fsw);
 
    eo_do_super(obj, MY_CLASS, evas_obj_smart_del());
@@ -374,6 +378,121 @@ _elc_fileselector_button_elm_interface_fileselector_is_save_get(Eo *obj EINA_UNU
 }
 
 EOLIAN static void
+_elc_fileselector_button_elm_interface_fileselector_mode_set(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd, Elm_Fileselector_Mode mode)
+{
+   sd->fsd.mode = mode;
+
+   if (sd->fs) elm_fileselector_mode_set(sd->fs, mode);
+}
+
+EOLIAN static Elm_Fileselector_Mode
+_elc_fileselector_button_elm_interface_fileselector_mode_get(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd)
+{
+   return sd->fsd.mode;
+}
+
+EOLIAN static void
+_elc_fileselector_button_elm_interface_fileselector_sort_method_set(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd, Elm_Fileselector_Sort sort)
+{
+   sd->fsd.sort_type = sort;
+
+   if (sd->fs) elm_fileselector_sort_method_set(sd->fs, sort);
+}
+
+EOLIAN static Elm_Fileselector_Sort
+_elc_fileselector_button_elm_interface_fileselector_sort_method_get(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd)
+{
+   return sd->fsd.sort_type;
+}
+
+EOLIAN static void
+_elc_fileselector_button_elm_interface_fileselector_multi_select_set(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd, Eina_Bool value)
+{
+   sd->fsd.multi = value;
+
+   if (sd->fs) elm_fileselector_multi_select_set(sd->fs, sd->fsd.multi);
+}
+
+EOLIAN static Eina_Bool
+_elc_fileselector_button_elm_interface_fileselector_multi_select_get(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd)
+{
+   return sd->fsd.multi;
+}
+
+EOLIAN static const Eina_List*
+_elc_fileselector_button_elm_interface_fileselector_selected_paths_get(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd)
+{
+   if (sd->fs) return elm_fileselector_selected_paths_get(sd->fs);
+
+   return NULL;
+}
+
+EOLIAN static const char*
+_elc_fileselector_button_elm_interface_fileselector_selected_get(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd)
+{
+   if (sd->fs) return elm_fileselector_selected_get(sd->fs);
+
+   return sd->fsd.selection;
+}
+
+EOLIAN static Eina_Bool
+_elc_fileselector_button_elm_interface_fileselector_selected_set(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd, const char *_path)
+{
+   Eina_Bool ret = EINA_TRUE;
+
+   if (sd->fs) ret = elm_fileselector_selected_set(sd->fs, _path);
+   else
+     {
+        char *path = ecore_file_realpath(_path);
+        if (!ecore_file_is_dir(path) && !ecore_file_exists(path))
+          {
+             free(path);
+             return EINA_FALSE;
+          }
+     }
+
+   eina_stringshare_replace(&sd->fsd.selection, _path);
+
+   return ret;
+}
+
+EOLIAN static void
+_elc_fileselector_button_elm_interface_fileselector_thumbnail_size_set(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd, Evas_Coord w, Evas_Coord h)
+{
+   if (sd->fs)
+     {
+        elm_fileselector_thumbnail_size_set(sd->fs, w, h);
+        elm_fileselector_thumbnail_size_get(sd->fs, &w, &h);
+     }
+   else if (!w || !h)
+     w = h = elm_config_finger_size_get() * 2 - GENGRID_PADDING;
+
+   sd->fsd.thumbnail_size.w = w;
+   sd->fsd.thumbnail_size.h = h;
+}
+
+EOLIAN static void
+_elc_fileselector_button_elm_interface_fileselector_thumbnail_size_get(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd, Evas_Coord *w, Evas_Coord *h)
+{
+   if (w) *w = sd->fsd.thumbnail_size.w;
+   if (h) *h = sd->fsd.thumbnail_size.h;
+}
+
+EOLIAN static void
+_elc_fileselector_button_elm_interface_fileselector_hidden_visible_set(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd, Eina_Bool visible)
+{
+   sd->fsd.hidden_visible = visible;
+
+   if (sd->fs) elm_fileselector_hidden_visible_set(sd->fs, visible);
+}
+
+EOLIAN static Eina_Bool
+_elc_fileselector_button_elm_interface_fileselector_hidden_visible_get(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd)
+{
+   return sd->fsd.hidden_visible;
+}
+
+EOLIAN static void
 _elc_fileselector_button_inwin_mode_set(Eo *obj EINA_UNUSED, Elc_Fileselector_Button_Data *sd, Eina_Bool value)
 {
    sd->inwin_mode = value;
index 6a1a934..59de0cf 100644 (file)
@@ -103,10 +103,17 @@ class Elc_Fileselector_Button (Elm_Button, Elm_Interface_Fileselector)
       Evas_Smart::del;
       Elm_Widget::theme_apply;
       Elm_Button::admits_autorepeat::get;
-      Elm_Interface_Fileselector::folder_only;
+      Elm_Interface_Fileselector::selected_paths::get;
+      Elm_Interface_Fileselector::expandable;
+      Elm_Interface_Fileselector::thumbnail_size;
+      Elm_Interface_Fileselector::selected;
+      Elm_Interface_Fileselector::hidden_visible;
       Elm_Interface_Fileselector::is_save;
       Elm_Interface_Fileselector::path;
-      Elm_Interface_Fileselector::expandable;
+      Elm_Interface_Fileselector::sort_method;
+      Elm_Interface_Fileselector::multi_select;
+      Elm_Interface_Fileselector::folder_only;
+      Elm_Interface_Fileselector::mode;
    }
    events {
       language,changed;
index 938df0a..515190f 100644 (file)
@@ -31,10 +31,16 @@ struct _Elc_Fileselector_Button_Data
 
    struct
    {
-      const char *path;
-      Eina_Bool   expandable : 1;
-      Eina_Bool   folder_only : 1;
-      Eina_Bool   is_save : 1;
+      const char             *path;
+      const char             *selection;
+      Evas_Coord_Size         thumbnail_size;
+      Elm_Fileselector_Mode   mode;
+      Elm_Fileselector_Sort   sort_type;
+      Eina_Bool               expandable : 1;
+      Eina_Bool               folder_only : 1;
+      Eina_Bool               is_save : 1;
+      Eina_Bool               multi : 1;
+      Eina_Bool               hidden_visible : 1;
    } fsd;
 
    Eina_Bool             inwin_mode : 1;