Elementary migration revision 69832
[framework/uifw/elementary.git] / src / lib / elm_index.h
1 /**
2  * @defgroup Index Index
3  *
4  * @image html img/widget/index/preview-00.png
5  * @image latex img/widget/index/preview-00.eps
6  *
7  * An index widget gives you an index for fast access to whichever
8  * group of other UI items one might have. It's a list of text
9  * items (usually letters, for alphabetically ordered access).
10  *
11  * Index widgets are by default hidden and just appear when the
12  * user clicks over it's reserved area in the canvas. In its
13  * default theme, it's an area one @ref Fingers "finger" wide on
14  * the right side of the index widget's container.
15  *
16  * When items on the index are selected, smart callbacks get
17  * called, so that its user can make other container objects to
18  * show a given area or child object depending on the index item
19  * selected. You'd probably be using an index together with @ref
20  * List "lists", @ref Genlist "generic lists" or @ref Gengrid
21  * "general grids".
22  *
23  * Smart events one  can add callbacks for are:
24  * - @c "changed" - When the selected index item changes. @c
25  *      event_info is the selected item's data pointer.
26  * - @c "delay,changed" - When the selected index item changes, but
27  *      after a small idling period. @c event_info is the selected
28  *      item's data pointer.
29  * - @c "selected" - When the user releases a mouse button and
30  *      selects an item. @c event_info is the selected item's data
31  *      pointer.
32  * - @c "level,up" - when the user moves a finger from the first
33  *      level to the second level
34  * - @c "level,down" - when the user moves a finger from the second
35  *      level to the first level
36  *
37  * The @c "delay,changed" event is so that it'll wait a small time
38  * before actually reporting those events and, moreover, just the
39  * last event happening on those time frames will actually be
40  * reported.
41  *
42  * Here are some examples on its usage:
43  * @li @ref index_example_01
44  * @li @ref index_example_02
45  */
46
47 /**
48  * @addtogroup Index
49  * @{
50  */
51 /**
52  * Add a new index widget to the given parent Elementary
53  * (container) object
54  *
55  * @param parent The parent object
56  * @return a new index widget handle or @c NULL, on errors
57  *
58  * This function inserts a new index widget on the canvas.
59  *
60  * @ingroup Index
61  */
62 EAPI Evas_Object          *elm_index_add(Evas_Object *parent);
63
64 /**
65  * Enable or disable auto hiding feature for a given index widget.
66  *
67  * @param obj The index object
68  * @param disabled @c EINA_TRUE to disable auto hiding, @c EINA_FALSE to enable
69  *
70  * @see elm_index_autohide_disabled_get()
71  *
72  * @ingroup Index
73  */
74 EAPI void                  elm_index_autohide_disabled_set(Evas_Object *obj, Eina_Bool disabled);
75
76 /**
77  * Get whether auto hiding feature is enabled or not for a given index widget.
78  *
79  * @param obj The index object
80  * @return @c EINA_TRUE, if auto hiding is disabled, @c EINA_FALSE otherwise
81  *
82  * @see elm_index_autohide_disabled_set() for more details
83  *
84  * @ingroup Index
85  */
86 EAPI Eina_Bool             elm_index_autohide_disabled_get(const Evas_Object *obj);
87
88 /**
89  * Set the items level for a given index widget.
90  *
91  * @param obj The index object.
92  * @param level @c 0 or @c 1, the currently implemented levels.
93  *
94  * @see elm_index_item_level_get()
95  *
96  * @ingroup Index
97  */
98 EAPI void                  elm_index_item_level_set(Evas_Object *obj, int level);
99
100 /**
101  * Get the items level set for a given index widget.
102  *
103  * @param obj The index object.
104  * @return @c 0 or @c 1, which are the levels @p obj might be at.
105  *
106  * @see elm_index_item_level_set() for more information
107  *
108  * @ingroup Index
109  */
110 EAPI int                   elm_index_item_level_get(const Evas_Object *obj);
111
112 /**
113  * Set the selected state of an item.
114  *
115  * @param it The index item
116  * @param selected The selected state
117  *
118  * This sets the selected state of the given item @p it.
119  * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
120  *
121  * If a new item is selected the previously selected will be unselected.
122  * Previously selected item can be get with function
123  * elm_index_selected_item_get().
124  *
125  * Selected items will be highlighted.
126  *
127  * @see elm_index_selected_item_get()
128  *
129  * @ingroup Index
130  */
131 EAPI void                  elm_index_item_selected_set(Elm_Object_Item *it, Eina_Bool selected);
132
133 /**
134  * Returns the last selected item, for a given index widget.
135  *
136  * @param obj The index object.
137  * @return The last item @b selected on @p obj (or @c NULL, on errors).
138  *
139  * @ingroup Index
140  */
141 EAPI Elm_Object_Item      *elm_index_selected_item_get(const Evas_Object *obj, int level);
142
143 /**
144  * Append a new item on a given index widget.
145  *
146  * @param obj The index object.
147  * @param letter Letter under which the item should be indexed
148  * @param func The function to call when the item is selected.
149  * @param data The item data to set for the index's item
150  * @return A handle to the item added or @c NULL, on errors
151  *
152  * Despite the most common usage of the @p letter argument is for
153  * single char strings, one could use arbitrary strings as index
154  * entries.
155  *
156  * @c item will be the pointer returned back on @c "changed", @c
157  * "delay,changed" and @c "selected" smart events.
158  *
159  * @ingroup Index
160  */
161 EAPI Elm_Object_Item      *elm_index_item_append(Evas_Object *obj, const char *letter, Evas_Smart_Cb func, const void *data);
162
163 /**
164  * Prepend a new item on a given index widget.
165  *
166  * @param obj The index object.
167  * @param letter Letter under which the item should be indexed
168  * @param func The function to call when the item is selected.
169  * @param data The item data to set for the index's item
170  * @return A handle to the item added or @c NULL, on errors
171  *
172  * Despite the most common usage of the @p letter argument is for
173  * single char strings, one could use arbitrary strings as index
174  * entries.
175  *
176  * @c item will be the pointer returned back on @c "changed", @c
177  * "delay,changed" and @c "selected" smart events.
178  *
179  * @ingroup Index
180  */
181 EAPI Elm_Object_Item      *elm_index_item_prepend(Evas_Object *obj, const char *letter, Evas_Smart_Cb func, const void *data);
182
183 /**
184  * Insert a new item into the index object after item @p after.
185  *
186  * @param obj The index object.
187  * @param after The index item to insert after.
188  * @param letter Letter under which the item should be indexed
189  * @param func The function to call when the item is clicked.
190  * @param data The item data to set for the index's item
191  * @return A handle to the item added or @c NULL, on errors
192  *
193  * Despite the most common usage of the @p letter argument is for
194  * single char strings, one could use arbitrary strings as index
195  * entries.
196  *
197  * @c item will be the pointer returned back on @c "changed", @c
198  * "delay,changed" and @c "selected" smart events.
199  *
200  * @note If @p relative is @c NULL this function will behave as
201  * elm_index_item_append().
202  *
203  * @ingroup Index
204  */
205 EAPI Elm_Object_Item      *elm_index_item_insert_after(Evas_Object *obj, Elm_Object_Item *after, const char *letter, Evas_Smart_Cb func, const void *data);
206
207 /**
208  * Insert a new item into the index object before item @p before.
209  *
210  * @param obj The index object.
211  * @param before The index item to insert after.
212  * @param letter Letter under which the item should be indexed
213  * @param func The function to call when the item is clicked.
214  * @param data The item data to set for the index's item
215  * @return A handle to the item added or @c NULL, on errors
216  *
217  * Despite the most common usage of the @p letter argument is for
218  * single char strings, one could use arbitrary strings as index
219  * entries.
220  *
221  * @c item will be the pointer returned back on @c "changed", @c
222  * "delay,changed" and @c "selected" smart events.
223  *
224  * @note If @p relative is @c NULL this function will behave as
225  * elm_index_item_prepend().
226  *
227  * @ingroup Index
228  */
229 EAPI Elm_Object_Item      *elm_index_item_insert_before(Evas_Object *obj, Elm_Object_Item *before, const char *letter, Evas_Smart_Cb func, const void *data);
230
231 /**
232  * Insert a new item into the given index widget, using @p cmp_func
233  * function to sort items (by item handles).
234  *
235  * @param obj The index object.
236  * @param letter Letter under which the item should be indexed
237  * @param func The function to call when the item is clicked.
238  * @param data The item data to set for the index's item
239  * @param cmp_func The comparing function to be used to sort index
240  * items <b>by #index item handles</b>
241  * @param cmp_data_func A @b fallback function to be called for the
242  * sorting of index items <b>by item data</b>). It will be used
243  * when @p cmp_func returns @c 0 (equality), which means an index
244  * item with provided item data already exists. To decide which
245  * data item should be pointed to by the index item in question, @p
246  * cmp_data_func will be used. If @p cmp_data_func returns a
247  * non-negative value, the previous index item data will be
248  * replaced by the given @p item pointer. If the previous data need
249  * to be freed, it should be done by the @p cmp_data_func function,
250  * because all references to it will be lost. If this function is
251  * not provided (@c NULL is given), index items will be @b
252  * duplicated, if @p cmp_func returns @c 0.
253  * @return A handle to the item added or @c NULL, on errors
254  *
255  * Despite the most common usage of the @p letter argument is for
256  * single char strings, one could use arbitrary strings as index
257  * entries.
258  *
259  * @c item will be the pointer returned back on @c "changed", @c
260  * "delay,changed" and @c "selected" smart events.
261  *
262  * @ingroup Index
263  */
264 EAPI Elm_Object_Item      *elm_index_item_sorted_insert(Evas_Object *obj, const char *letter, Evas_Smart_Cb func, const void *data, Eina_Compare_Cb cmp_func, Eina_Compare_Cb cmp_data_func);
265
266 /**
267  * Find a given index widget's item, <b>using item data</b>.
268  *
269  * @param obj The index object
270  * @param data The item data pointed to by the desired index item
271  * @return The index item handle, if found, or @c NULL otherwise
272  *
273  * @ingroup Index
274  */
275 EAPI Elm_Object_Item      *elm_index_item_find(Evas_Object *obj, const void *data);
276
277 /**
278  * Removes @b all items from a given index widget.
279  *
280  * @param obj The index object.
281  *
282  * If deletion callbacks are set, via elm_object_item_del_cb_set(),
283  * that callback function will be called for each item in @p obj.
284  *
285  * @ingroup Index
286  */
287 EAPI void                  elm_index_item_clear(Evas_Object *obj);
288
289 /**
290  * Go to a given items level on a index widget
291  *
292  * @param obj The index object
293  * @param level The index level (one of @c 0 or @c 1)
294  *
295  * @ingroup Index
296  */
297 EAPI void                  elm_index_level_go(Evas_Object *obj, int level);
298
299 /**
300  * Get the letter (string) set on a given index widget item.
301  *
302  * @param item The index item handle
303  * @return The letter string set on @p it
304  *
305  * @ingroup Index
306  */
307 EAPI const char           *elm_index_item_letter_get(const Elm_Object_Item *item);
308
309 /**
310  * Set the indicator as to be disabled.
311  *
312  * @param obj The index object
313  * @param disabled  @c EINA_TRUE to disable it, @c EINA_FALSE to enable it
314  *
315  * In Index widget, Indicator notes popup text, which shows a letter has been selecting.
316  *
317  * @see elm_index_indicator_disabled_get()
318  *
319  * @ingroup Index
320  */
321 EAPI void                 elm_index_indicator_disabled_set(Evas_Object *obj, Eina_Bool disabled);
322
323 /**
324  * Get the value of indicator's disabled status.
325  *
326  * @param obj The index object
327  * @return EINA_TRUE if the indicator is disabled.
328  *
329  * @see elm_index_indicator_disabled_set()
330  *
331  * @ingroup Index
332  */
333 EAPI Eina_Bool            elm_index_indicator_disabled_get(const Evas_Object *obj);
334
335 /**
336  * Enable or disable horizontal mode on the index object
337  *
338  * @param obj The index object.
339  * @param horizontal @c EINA_TRUE to enable horizontal or @c EINA_FALSE to
340  * disable it, i.e., to enable vertical mode. it's an area one @ref Fingers
341  * "finger" wide on the bottom side of the index widget's container.
342  *
343  * @note Vertical mode is set by default.
344  *
345  * On horizontal mode items are displayed on index from left to right,
346  * instead of from top to bottom. Also, the index will scroll horizontally.
347  *
348  * @see elm_index_horizontal_get()
349  *
350  * @ingroup Index
351  */
352 EAPI void                      elm_index_horizontal_set(Evas_Object *obj, Eina_Bool horizontal);
353
354 /**
355  * Get a value whether horizontal mode is enabled or not.
356  *
357  * @param obj The index object.
358  * @return @c EINA_TRUE means horizontal mode selection is enabled.
359  * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
360  * @c EINA_FALSE is returned.
361  *
362  * @see elm_index_horizontal_set() for details.
363  *
364  * @ingroup Index
365  */
366 EAPI Eina_Bool                 elm_index_horizontal_get(const Evas_Object *obj);
367
368 /**
369  * @}
370  */