summaryrefslogtreecommitdiff
path: root/src/lib/elm_fileselector_entry.eo
blob: 43ed2a69ec05910d5d433b9397c21e90a4e67396 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
class Elm.Fileselector_Entry (Elm.Layout, Elm_Interface_Fileselector,
                              Evas.Clickable_Interface, Evas.Selectable_Interface)
{
   eo_prefix: elm_obj_fileselector_entry;
   methods {
      @property inwin_mode {
         set {
            [[Set whether a given file selector entry widget's internal file
              selector will raise an Elementary "inner window", instead of a
              dedicated Elementary window. By default, it depends on the current
              profile.

              See also \@ref elm_win_inwin_add for more information on inner windows,
              @.inwin_mode.get.
            ]]
         }
         get {
            [[Get whether a given file selector entry widget's internal file
              selector will raise an Elementary "inner window", instead of a
              dedicated Elementary window.

              See also @.inwin_mode.set for more details.
            ]]
         }
         values {
            value: bool; [[$true to make it use an inner window, $false
            to make it use a dedicated window.]]
         }
      }
      @property window_size {
         set {
            [[Set the size of a given file selector entry widget's window,
              holding the file selector itself.

              Note: it will only take any effect if the file selector entry
              widget is not under "inwin mode". The default size for the
              window (when applicable) is 400x400 pixels.

              See also @.window_size.get.
            ]]
         }
         get {
            [[Get the size of a given file selector entry widget's window,
              holding the file selector itself.

              Note: Use $null pointers on the size values you're not
              interested in: they'll be ignored by the function.

              See also @.window_size.set, for more details.
            ]]
         }
         values {
            width: Evas.Coord; [[The window's width.]]
            height: Evas.Coord; [[The window's height.]]
         }
      }
      @property window_title {
         set {
            [[Set the title for a given file selector entry widget's window

              This will change the window's title, when the file selector pops
              out after a click on the entry's button. Those windows have the
              default (unlocalized) value of $"Select a file" as titles.

              Note: It will only take any effect if the file selector
              entry widget is not under "inwin mode".

              See also @.window_title.get.
            ]]
         }
         get {
            [[Get the title set for a given file selector entry widget's
              window.

              See also @.window_title.set for more details.
            ]]
         }
         values {
            title: const(char)*; [[The title string.]]
         }
      }
   }
   implements {
      class.constructor;
      Eo.Base.constructor;
      Evas.Object_Smart.del;
      Evas.Object_Smart.add;
      Elm.Widget.theme_apply;
      Elm.Widget.focus_next_manager_is;
      Elm.Widget.focus_next;
      Elm.Widget.disable;
      Elm.Widget.focus_direction_manager_is;
      Elm.Container.content_get;
      Elm.Container.content_unset;
      Elm.Container.content_set;
      Elm.Layout.text.set;
      Elm.Layout.text.get;
      Elm.Layout.sizing_eval;
      Elm_Interface_Fileselector.selected;
      Elm_Interface_Fileselector.folder_only;
      Elm_Interface_Fileselector.is_save;
      Elm_Interface_Fileselector.path;
      Elm_Interface_Fileselector.expandable;
   }
   events {
      language,changed;
      access,changed;
      changed;
      activated;
      file,chosen;
      press;
   }

}