summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_fileselector.eo
blob: bad9635f7f4dd3fe8436ae6101ad8aaf5c4f5473 (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
70
71
class Elm.Fileselector (Elm.Layout, Elm.Interface.Fileselector,
                        Elm.Interface.Atspi_Widget_Action,
                        Efl.Ui.Clickable, Efl.Ui.Selectable)
{
   legacy_prefix: elm_fileselector;
   eo_prefix: elm_obj_fileselector;
   event_prefix: elm_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;
      Efl.Object.constructor;
      Efl.Canvas.Group.group_add;
      Efl.Canvas.Group.group_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.text.set;
      Elm.Interface.Fileselector.selected_models.get;
      Elm.Interface.Fileselector.selected_model_get;
      Elm.Interface.Fileselector.selected_model_set;
      Elm.Interface.Fileselector.custom_filter_append;
      Elm.Interface.Fileselector.expandable;
      Elm.Interface.Fileselector.thumbnail_size;
      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.model;
      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;
   }

}