summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_diskselector_eo.h
blob: 1b8195d4a6b2a8d0b8f1f94227df6d342be32e01 (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
#ifndef _ELM_DISKSELECTOR_EO_H_
#define _ELM_DISKSELECTOR_EO_H_

#ifndef _ELM_DISKSELECTOR_EO_CLASS_TYPE
#define _ELM_DISKSELECTOR_EO_CLASS_TYPE

typedef Eo Elm_Diskselector;

#endif

#ifndef _ELM_DISKSELECTOR_EO_TYPES
#define _ELM_DISKSELECTOR_EO_TYPES


#endif
/** Elementary diskselector class
 *
 * @ingroup Elm_Diskselector
 */
#define ELM_DISKSELECTOR_CLASS elm_diskselector_class_get()

EWAPI const Efl_Class *elm_diskselector_class_get(void) EINA_CONST;

/**
 * @brief Set the side labels max length.
 *
 * Length is the number of characters of items' label that will be visible when
 * it's set on side positions. It will just crop the string after defined size.
 * E.g.:
 *
 * An item with label "January" would be displayed on side position as "Jan" if
 * max length is set to 3, or "Janu", if this property is set to 4.
 *
 * When it's selected, the entire label will be displayed, except for width
 * restrictions. In this case label will be cropped and "..." will be
 * concatenated.
 *
 * Default side label max length is 3.
 *
 * This property will be applied over all items, included before or later this
 * function call.
 *
 * @param[in] obj The object.
 * @param[in] len The max length defined for side labels.
 *
 * @ingroup Elm_Diskselector
 */
EOAPI void elm_obj_diskselector_side_text_max_length_set(Eo *obj, int len);

/**
 * @brief Get the side labels max length.
 *
 * See also @ref elm_obj_diskselector_side_text_max_length_set for details.
 *
 * @param[in] obj The object.
 *
 * @return The max length defined for side labels.
 *
 * @ingroup Elm_Diskselector
 */
EOAPI int elm_obj_diskselector_side_text_max_length_get(const Eo *obj);

/**
 * @brief Enable or disable round mode.
 *
 * Disabled by default. If round mode is enabled the items list will work like
 * a circular list, so when the user reaches the last item, the first one will
 * popup.
 *
 * See also @ref elm_obj_diskselector_round_enabled_get.
 *
 * @param[in] obj The object.
 * @param[in] enabled @c true to enable round mode or @c false to disable it.
 *
 * @ingroup Elm_Diskselector
 */
EOAPI void elm_obj_diskselector_round_enabled_set(Eo *obj, Eina_Bool enabled);

/**
 * @brief Get a value whether round mode is enabled or not.
 *
 * See also @ref elm_obj_diskselector_round_enabled_set for details.
 *
 * @param[in] obj The object.
 *
 * @return @c true to enable round mode or @c false to disable it.
 *
 * @ingroup Elm_Diskselector
 */
EOAPI Eina_Bool elm_obj_diskselector_round_enabled_get(const Eo *obj);

/**
 * @brief Set the number of items to be displayed.
 *
 * Default value is 3, and also it's the minimum. If @c num is less than 3, it
 * will be set to 3.
 *
 * Also, it can be set on theme, using data item @c display_item_num on group
 * "elm/diskselector/item/X", where X is style set.
 *
 * @param[in] obj The object.
 * @param[in] num The number of items the diskselector will display.
 *
 * @ingroup Elm_Diskselector
 */
EOAPI void elm_obj_diskselector_display_item_num_set(Eo *obj, int num);

/**
 * @brief Get the number of items in the diskselector object.
 *
 * @param[in] obj The object.
 *
 * @return The number of items the diskselector will display.
 *
 * @ingroup Elm_Diskselector
 */
EOAPI int elm_obj_diskselector_display_item_num_get(const Eo *obj);

/**
 * @brief Get the first item of the diskselector.
 *
 * The list of items follows append order. So it will return the first item
 * appended to the widget that wasn't deleted.
 *
 * See also @ref elm_obj_diskselector_item_append,
 * @ref elm_obj_diskselector_items_get.
 *
 * @param[in] obj The object.
 *
 * @return The first item, or @c null if none.
 *
 * @ingroup Elm_Diskselector
 */
EOAPI Elm_Widget_Item *elm_obj_diskselector_first_item_get(const Eo *obj);

/**
 * @brief Get a list of all the diskselector items.
 *
 * See also @ref elm_obj_diskselector_item_append, @ref elm_object_item_del,
 * @ref elm_obj_diskselector_clear.
 *
 * @param[in] obj The object.
 *
 * @return A @c list of diskselector items, or @c ull on failure.
 *
 * @ingroup Elm_Diskselector
 */
EOAPI const Eina_List *elm_obj_diskselector_items_get(const Eo *obj);

/**
 * @brief Get the last item of the diskselector.
 *
 * The list of items follows append order. So it will return last first item
 * appended to the widget that wasn't deleted.
 *
 * See also @ref elm_obj_diskselector_item_append,
 * @ref elm_obj_diskselector_items_get.
 *
 * @param[in] obj The object.
 *
 * @return The last item, or @c null if none.
 *
 * @ingroup Elm_Diskselector
 */
EOAPI Elm_Widget_Item *elm_obj_diskselector_last_item_get(const Eo *obj);

/**
 * @brief Get the selected item.
 *
 * The selected item can be unselected with
 * @ref elm_obj_diskselector_item_selected_set, and the first item of
 * diskselector will be selected.
 *
 * The selected item always will be centered on diskselector, with full label
 * displayed, i.e., max length set to side labels won't apply on the selected
 * item. More details on @ref elm_obj_diskselector_side_text_max_length_set.
 *
 * @param[in] obj The object.
 *
 * @return The selected diskselector item.
 *
 * @ingroup Elm_Diskselector
 */
EOAPI Elm_Widget_Item *elm_obj_diskselector_selected_item_get(const Eo *obj);

/**
 * @brief Appends a new item to the diskselector object.
 *
 * A new item will be created and appended to the diskselector, i.e., will be
 * set as last item. Also, if there is no selected item, it will be selected.
 * This will always happens for the first appended item.
 *
 * If no icon is set, label will be centered on item position, otherwise the
 * icon will be placed at left of the label, that will be shifted to the right.
 *
 * Items created with this method can be deleted with @ref elm_object_item_del.
 *
 * Associated @c data can be properly freed when item is deleted if a callback
 * function is set with @ref elm_object_item_del_cb_set.
 *
 * If a function is passed as argument, it will be called every time this item
 * is selected, i.e., the user stops the diskselector with this item on center
 * position. If such function isn't needed, just passing @c null as @c func is
 * enough. The same should be done for @c data.
 *
 * See also @ref elm_object_item_del, @ref elm_obj_diskselector_clear, @ref
 * elm_icon_add.
 *
 * @param[in] obj The object.
 * @param[in] label The label of the diskselector item.
 * @param[in] icon The icon object to use at left side of the item. An icon can
 * be any Evas object, but usually it is an icon created with elm_icon_add().
 * @param[in] func The function to call when the item is selected.
 * @param[in] data The data to associate with the item for related callbacks.
 *
 * @return New item
 *
 * @ingroup Elm_Diskselector
 */
EOAPI Elm_Widget_Item *elm_obj_diskselector_item_append(Eo *obj, const char *label, Efl_Canvas_Object *icon, Evas_Smart_Cb func, const void *data);

/**
 * @brief Remove all diskselector's items.
 *
 * See also @ref elm_object_item_del, @ref elm_obj_diskselector_item_append.
 * @param[in] obj The object.
 *
 * @ingroup Elm_Diskselector
 */
EOAPI void elm_obj_diskselector_clear(Eo *obj);

#endif