summaryrefslogtreecommitdiff
path: root/src/lib/elc_fileselector_entry.eo
blob: 12ef917d509313181859cb648d16a066a449d242 (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
121
122
123
124
class Elm_Fileselector_Entry (Elm_Layout, Elm_Interface_Fileselector)
{
   eo_prefix: elm_obj_fileselector_entry;
   properties {
      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 elm_win_inwin_add() for more information on inner windows
            @see elm_fileselector_entry_inwin_mode_get()

            @ingroup File_Selector_Entry */
         }
         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.

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

            @see elm_fileselector_entry_inwin_mode_set() for more details

            @ingroup File_Selector_Entry */
         }
         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 entry widget's window,
            holding the file selector itself.

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

            @see elm_fileselector_entry_window_size_get()

            @ingroup File_Selector_Entry */
         }
         get {
            /*@
            Get the size of a given file selector entry 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_entry_window_size_set(), for more details

            @ingroup File_Selector_Entry */
         }
         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 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 @c "Select a file" as titles.

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

            @see elm_fileselector_entry_window_title_get()

            @ingroup File_Selector_Entry */
         }
         get {
            /*@
            Get the title set for a given file selector entry widget's
            window

            @return Title of the file selector entry's window

            @see elm_fileselector_entry_window_title_get() for more details

            @ingroup File_Selector_Entry */
         }
         values {
            const char *title; /*@ The title string */
         }
      }
   }
   implements {
      class::constructor;
      Eo_Base::constructor;
      Evas_Smart::del;
      Evas_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 {
   }

}