summaryrefslogtreecommitdiff
path: root/src/lib/elc_fileselector_button.eo
blob: 56f58ab414ca354eb6b1b121307a03d8e9c24e5f (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
115
116
117
118
119
120
class Elm_Fileselector_Button (Elm_Button, Elm_Interface_Fileselector)
{
   eo_prefix: elm_obj_fileselector_button;
   properties {
      inwin_mode {
         set {
            /*@
            Set whether a given file selector button 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 elm_win_inwin_add() for more information on inner windows
            @see elm_fileselector_button_inwin_mode_get()

            @ingroup File_Selector_Button */
         }
         get {
            /*@
            Get whether a given file selector button widget's internal file
            selector will raise an Elementary "inner window", instead of a
            dedicated Elementary window.

            @return @c EINA_TRUE if will use an inner window, @c EINA_TRUE
            if it will use a dedicated window

            @see elm_fileselector_button_inwin_mode_set() for more details

            @ingroup File_Selector_Button */
         }
         values {
            Eina_Bool value; /*@ @c EINA_TRUE to make it use an inner window, @c
            EINA_FALSE to make it use a dedicated window */
         }
      }
      window_size {
         set {
            /*@
            Set the size of a given file selector button widget's window,
            holding the file selector itself.

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

            @see elm_fileselector_button_window_size_get()

            @ingroup File_Selector_Button */
         }
         get {
            /*@
            Get the size of a given file selector button widget's window,
            holding the file selector itself.

            @note Use @c NULL pointers on the size values you're not
            interested in: they'll be ignored by the function.

            @see elm_fileselector_button_window_size_set(), for more details

            @ingroup File_Selector_Button */
         }
         values {
            Evas_Coord width; /*@ The window's width */
            Evas_Coord height; /*@ The window's height */
         }
      }
      window_title {
         set {
            /*@
            Set the title for a given file selector button widget's window

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

            @note It will only take effect if the file selector
            button widget is @b not under "inwin mode".

            @see elm_fileselector_button_window_title_get()

            @ingroup File_Selector_Button */
         }
         get {
            /*@
            Get the title for a given file selector button widget's
            window

            @return Title of the file selector button's window

            @see elm_fileselector_button_window_title_get() for more details

            @ingroup File_Selector_Button */
         }
         values {
            const char *title; /*@ The title string */
         }
      }
   }
   implements {
      Eo_Base::constructor;
      Evas_Smart::add;
      Evas_Smart::del;
      Elm_Widget::theme_apply;
      Elm_Button::admits_autorepeat::get;
      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::sort_method;
      Elm_Interface_Fileselector::multi_select;
      Elm_Interface_Fileselector::folder_only;
      Elm_Interface_Fileselector::mode;
   }
   events {
   }

}