summaryrefslogtreecommitdiff
path: root/src/lib/elm_fileselector.eo
blob: 70a50a0ab0f44d9de6863ffcc439ff47e1c0e17f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
class Elm.Fileselector (Elm.Layout, Elm.Interface_Fileselector,
                        Elm.Interface_Atspi_Widget_Action,
                        Evas.Clickable_Interface, Evas.Selectable_Interface)
{
   eo_prefix: elm_obj_fileselector;
   methods {
      @property buttons_ok_cancel {
         set {
            [[Enable/disable the "ok" and "cancel" buttons on a given file
              selector widget

              Note: A file selector without those buttons will never emit the
              "done" smart event, and is only usable if one is just hooking
              to the other two events.

              See also @.buttons_ok_cancel.get.
            ]]
         }
         get {
            [[Get whether the "ok" and "cancel" buttons on a given file
              selector widget are being shown.

              See also @.buttons_ok_cancel.set for more details.
            ]]
         }
         values {
            visible: bool; [[true to show buttons, false to hide.]]
         }
      }
   }
   implements {
      class.constructor;
      class.destructor;
      Eo.Base.constructor;
      Evas.Object_Smart.add;
      Evas.Object_Smart.del;
      Elm.Widget.focus_next;
      Elm.Widget.focus_direction_manager_is;
      Elm.Widget.focus_direction;      
      Elm.Widget.event;
      Elm.Widget.theme_apply;
      Elm.Widget.focus_next_manager_is;
      Elm.Layout.sizing_eval;
      Elm.Layout.text.set;
      Elm.Interface_Fileselector.selected_paths.get;
      Elm.Interface_Fileselector.custom_filter_append;
      Elm.Interface_Fileselector.expandable;
      Elm.Interface_Fileselector.thumbnail_size;
      Elm.Interface_Fileselector.selected;
      Elm.Interface_Fileselector.mime_types_filter_append;
      Elm.Interface_Fileselector.hidden_visible;
      Elm.Interface_Fileselector.filters_clear;
      Elm.Interface_Fileselector.is_save;
      Elm.Interface_Fileselector.path;
      Elm.Interface_Fileselector.sort_method;
      Elm.Interface_Fileselector.multi_select;
      Elm.Interface_Fileselector.folder_only;
      Elm.Interface_Fileselector.mode;
      Elm.Interface_Fileselector.current_name;
      Elm.Interface_Atspi_Widget_Action.elm_actions.get;
   }
   events {
      done;
      activated;
      selected,invalid;
      directory,open;
   }

}