elementary/elm_entry : Fix a bug in filter callback. There can be a
[framework/uifw/elementary.git] / src / lib / elm_genlist.h
1 /**
2  * @defgroup Genlist Genlist
3  *
4  * @image html img/widget/genlist/preview-00.png
5  * @image latex img/widget/genlist/preview-00.eps
6  * @image html img/genlist.png
7  * @image latex img/genlist.eps
8  *
9  * This widget aims to have more expansive list than the simple list in
10  * Elementary that could have more flexible items and allow many more entries
11  * while still being fast and low on memory usage. At the same time it was
12  * also made to be able to do tree structures. But the price to pay is more
13  * complexity when it comes to usage. If all you want is a simple list with
14  * icons and a single text, use the normal @ref List object.
15  *
16  * Genlist has a fairly large API, mostly because it's relatively complex,
17  * trying to be both expansive, powerful and efficient. First we will begin
18  * an overview on the theory behind genlist.
19  *
20  * @section Genlist_Item_Class Genlist item classes - creating items
21  *
22  * In order to have the ability to add and delete items on the fly, genlist
23  * implements a class (callback) system where the application provides a
24  * structure with information about that type of item (genlist may contain
25  * multiple different items with different classes, states and styles).
26  * Genlist will call the functions in this struct (methods) when an item is
27  * "realized" (i.e., created dynamically, while the user is scrolling the
28  * grid). All objects will simply be deleted when no longer needed with
29  * evas_object_del(). The #Elm_Genlist_Item_Class structure contains the
30  * following members:
31  * - @c item_style - This is a constant string and simply defines the name
32  *   of the item style. It @b must be specified and the default should be @c
33  *   "default".
34  * - @c decorate_item_style - This is a constant string and simply defines the name
35  *   of the decorate mode item style. It is used to specify decorate mode item style. It can be
36  *   used when you call elm_genlist_item_decorate_mode_set().
37  * - @c decorate_all_item_style - This is a constant string and simply defines the name
38  *   of the decorate all item style. It is used to specify decorate all item style. It can be
39  *   used to set selection, checking and deletion mode. This is used when you
40  *   call elm_genlist_decorate_mode_set().
41  * - @c func - A struct with pointers to functions that will be called when
42  *   an item is going to be actually created. All of them receive a @c data
43  *   parameter that will point to the same data passed to
44  *   elm_genlist_item_append() and related item creation functions, and an @c
45  *   obj parameter that points to the genlist object itself.
46  *
47  * The function pointers inside @c func are @c text_get, @c content_get, @c
48  * state_get and @c del. The 3 first functions also receive a @c part
49  * parameter described below. A brief description of these functions follows:
50  *
51  * - @c text_get - The @c part parameter is the name string of one of the
52  *   existing text parts in the Edje group implementing the item's theme.
53  *   This function @b must return a strdup'()ed string, as the caller will
54  *   free() it when done. See #Elm_Genlist_Item_Text_Get_Cb.
55  * - @c content_get - The @c part parameter is the name string of one of the
56  *   existing (content) swallow parts in the Edje group implementing the item's
57  *   theme. It must return @c NULL, when no content is desired, or a valid
58  *   object handle, otherwise.  The object will be deleted by the genlist on
59  *   its deletion or when the item is "unrealized".  See
60  *   #Elm_Genlist_Item_Content_Get_Cb.
61  * - @c func.state_get - The @c part parameter is the name string of one of
62  *   the state parts in the Edje group implementing the item's theme. Return
63  *   @c EINA_FALSE for false/off or @c EINA_TRUE for true/on. Genlists will
64  *   emit a signal to its theming Edje object with @c "elm,state,xxx,active"
65  *   and @c "elm" as "emission" and "source" arguments, respectively, when
66  *   the state is true (the default is false), where @c xxx is the name of
67  *   the (state) part.  See #Elm_Genlist_Item_State_Get_Cb.
68  * - @c func.del - This is intended for use when genlist items are deleted,
69  *   so any data attached to the item (e.g. its data parameter on creation)
70  *   can be deleted. See #Elm_Genlist_Item_Del_Cb.
71  *
72  * available item styles:
73  * - default
74  * - default_style - The text part is a textblock
75  *
76  * @image html img/widget/genlist/preview-04.png
77  * @image latex img/widget/genlist/preview-04.eps
78  *
79  * - double_label
80  *
81  * @image html img/widget/genlist/preview-01.png
82  * @image latex img/widget/genlist/preview-01.eps
83  *
84  * - icon_top_text_bottom
85  *
86  * @image html img/widget/genlist/preview-02.png
87  * @image latex img/widget/genlist/preview-02.eps
88  *
89  * - group_index
90  *
91  * @image html img/widget/genlist/preview-03.png
92  * @image latex img/widget/genlist/preview-03.eps
93  *
94  * @section Genlist_Items Structure of items
95  *
96  * An item in a genlist can have 0 or more texts (they can be regular
97  * text or textblock Evas objects - that's up to the style to determine), 0
98  * or more contents (which are simply objects swallowed into the genlist item's
99  * theming Edje object) and 0 or more <b>boolean states</b>, which have the
100  * behavior left to the user to define. The Edje part names for each of
101  * these properties will be looked up, in the theme file for the genlist,
102  * under the Edje (string) data items named @c "labels", @c "contents" and @c
103  * "states", respectively. For each of those properties, if more than one
104  * part is provided, they must have names listed separated by spaces in the
105  * data fields. For the default genlist item theme, we have @b one text
106  * part (@c "elm.text"), @b two content parts (@c "elm.swalllow.icon" and @c
107  * "elm.swallow.end") and @b no state parts.
108  *
109  * A genlist item may be at one of several styles. Elementary provides one
110  * by default - "default", but this can be extended by system or application
111  * custom themes/overlays/extensions (see @ref Theme "themes" for more
112  * details).
113  *
114  * @section Genlist_Manipulation Editing and Navigating
115  *
116  * Items can be added by several calls. All of them return a @ref
117  * Elm_Object_Item handle that is an internal member inside the genlist.
118  * They all take a data parameter that is meant to be used for a handle to
119  * the applications internal data (eg. the struct with the original item
120  * data). The parent parameter is the parent genlist item this belongs to if
121  * it is a tree or an indexed group, and NULL if there is no parent. The
122  * flags can be a bitmask of #ELM_GENLIST_ITEM_NONE,
123  * #ELM_GENLIST_ITEM_TREE and #ELM_GENLIST_ITEM_GROUP. If
124  * #ELM_GENLIST_ITEM_TREE is set then this item is displayed as an item
125  * that is able to expand and have child items.  If ELM_GENLIST_ITEM_GROUP
126  * is set then this item is group index item that is displayed at the top
127  * until the next group comes. The func parameter is a convenience callback
128  * that is called when the item is selected and the data parameter will be
129  * the func_data parameter, obj be the genlist object and event_info will be
130  * the genlist item.
131  *
132  * elm_genlist_item_append() adds an item to the end of the list, or if
133  * there is a parent, to the end of all the child items of the parent.
134  * elm_genlist_item_prepend() is the same but adds to the beginning of
135  * the list or children list. elm_genlist_item_insert_before() inserts at
136  * item before another item and elm_genlist_item_insert_after() inserts after
137  * the indicated item.
138  *
139  * The application can clear the list with elm_genlist_clear() which deletes
140  * all the items in the list and elm_object_item_del() will delete a specific
141  * item. elm_genlist_item_subitems_clear() will clear all items that are
142  * children of the indicated parent item.
143  *
144  * To help inspect list items you can jump to the item at the top of the list
145  * with elm_genlist_first_item_get() which will return the item pointer, and
146  * similarly elm_genlist_last_item_get() gets the item at the end of the list.
147  * elm_genlist_item_next_get() and elm_genlist_item_prev_get() get the next
148  * and previous items respectively relative to the indicated item. Using
149  * these calls you can walk the entire item list/tree. Note that as a tree
150  * the items are flattened in the list, so elm_genlist_item_parent_get() will
151  * let you know which item is the parent (and thus know how to skip them if
152  * wanted).
153  *
154  * @section Genlist_Multi_Selection Multi-selection
155  *
156  * If the application wants multiple items to be able to be selected,
157  * elm_genlist_multi_select_set() can enable this. If the list is
158  * single-selection only (the default), then elm_genlist_selected_item_get()
159  * will return the selected item, if any, or NULL if none is selected. If the
160  * list is multi-select then elm_genlist_selected_items_get() will return a
161  * list (that is only valid as long as no items are modified (added, deleted,
162  * selected or unselected)).
163  *
164  * @section Genlist_Usage_Hints Usage hints
165  *
166  * There are also convenience functions. elm_object_item_widget_get() will
167  * return the genlist object the item belongs to. elm_genlist_item_show()
168  * will make the scroller scroll to show that specific item so its visible.
169  * elm_object_item_data_get() returns the data pointer set by the item
170  * creation functions.
171  *
172  * If an item changes (state of boolean changes, text or contents change),
173  * then use elm_genlist_item_update() to have genlist update the item with
174  * the new state. Genlist will re-realize the item and thus call the functions
175  * in the _Elm_Genlist_Item_Class for that item.
176  *
177  * To programmatically (un)select an item use elm_genlist_item_selected_set().
178  * To get its selected state use elm_genlist_item_selected_get(). Similarly
179  * to expand/contract an item and get its expanded state, use
180  * elm_genlist_item_expanded_set() and elm_genlist_item_expanded_get(). And
181  * again to make an item disabled (unable to be selected and appear
182  * differently) use elm_object_item_disabled_set() to set this and
183  * elm_object_item_disabled_get() to get the disabled state.
184  *
185  * In general to indicate how the genlist should expand items horizontally to
186  * fill the list area, use elm_genlist_mode_set(). Valid modes are
187  * ELM_LIST_LIMIT and ELM_LIST_SCROLL. The default is ELM_LIST_SCROLL. This
188  * mode means that if items are too wide to fit, the scroller will scroll
189  * horizontally. Otherwise items are expanded to fill the width of the
190  * viewport of the scroller. If it is ELM_LIST_LIMIT, items will be expanded
191  * to the viewport width and limited to that size. This can be combined with
192  * a different style that uses edjes' ellipsis feature (cutting text off like
193  * this: "tex...").
194  *
195  * Items will only call their selection func and callback when first becoming
196  * selected. Any further clicks will do nothing, unless you enable always
197  * select with elm_genlist_select_mode_set() as ELM_OBJECT_SELECT_MODE_ALWAYS.
198  * This means even if selected, every click will make the selected callbacks
199  * be called. elm_genlist_select_mode_set() as ELM_OBJECT_SELECT_MODE_NONE will
200  * turn off the ability to select items entirely and they will neither
201  * appear selected nor call selected callback functions.
202  *
203  * Remember that you can create new styles and add your own theme augmentation
204  * per application with elm_theme_extension_add(). If you absolutely must
205  * have a specific style that overrides any theme the user or system sets up
206  * you can use elm_theme_overlay_add() to add such a file.
207  *
208  * @section Genlist_Implementation Implementation
209  *
210  * Evas tracks every object you create. Every time it processes an event
211  * (mouse move, down, up etc.) it needs to walk through objects and find out
212  * what event that affects. Even worse every time it renders display updates,
213  * in order to just calculate what to re-draw, it needs to walk through many
214  * many many objects. Thus, the more objects you keep active, the more
215  * overhead Evas has in just doing its work. It is advisable to keep your
216  * active objects to the minimum working set you need. Also remember that
217  * object creation and deletion carries an overhead, so there is a
218  * middle-ground, which is not easily determined. But don't keep massive lists
219  * of objects you can't see or use. Genlist does this with list objects. It
220  * creates and destroys them dynamically as you scroll around. It groups them
221  * into blocks so it can determine the visibility etc. of a whole block at
222  * once as opposed to having to walk the whole list. This 2-level list allows
223  * for very large numbers of items to be in the list (tests have used up to
224  * 2,000,000 items). Also genlist employs a queue for adding items. As items
225  * may be different sizes, every item added needs to be calculated as to its
226  * size and thus this presents a lot of overhead on populating the list, this
227  * genlist employs a queue. Any item added is queued and spooled off over
228  * time, actually appearing some time later, so if your list has many members
229  * you may find it takes a while for them to all appear, with your process
230  * consuming a lot of CPU while it is busy spooling.
231  *
232  * Genlist also implements a tree structure, but it does so with callbacks to
233  * the application, with the application filling in tree structures when
234  * requested (allowing for efficient building of a very deep tree that could
235  * even be used for file-management). See the above smart signal callbacks for
236  * details.
237  *
238  * @section Genlist_Smart_Events Genlist smart events
239  *
240  * Signals that you can add callbacks for are:
241  * - @c "activated" - The user has double-clicked or pressed
242  *   (enter|return|spacebar) on an item. The @c event_info parameter is the
243  *   item that was activated.
244  * - @c "clicked,double" - The user has double-clicked an item.  The @c
245  *   event_info parameter is the item that was double-clicked.
246  * - @c "selected" - This is called when a user has made an item selected.
247  *   The event_info parameter is the genlist item that was selected.
248  * - @c "unselected" - This is called when a user has made an item
249  *   unselected. The event_info parameter is the genlist item that was
250  *   unselected.
251  * - @c "expanded" - This is called when elm_genlist_item_expanded_set() is
252  *   called and the item is now meant to be expanded. The event_info
253  *   parameter is the genlist item that was indicated to expand.  It is the
254  *   job of this callback to then fill in the child items.
255  * - @c "contracted" - This is called when elm_genlist_item_expanded_set() is
256  *   called and the item is now meant to be contracted. The event_info
257  *   parameter is the genlist item that was indicated to contract. It is the
258  *   job of this callback to then delete the child items.
259  * - @c "expand,request" - This is called when a user has indicated they want
260  *   to expand a tree branch item. The callback should decide if the item can
261  *   expand (has any children) and then call elm_genlist_item_expanded_set()
262  *   appropriately to set the state. The event_info parameter is the genlist
263  *   item that was indicated to expand.
264  * - @c "contract,request" - This is called when a user has indicated they
265  *   want to contract a tree branch item. The callback should decide if the
266  *   item can contract (has any children) and then call
267  *   elm_genlist_item_expanded_set() appropriately to set the state. The
268  *   event_info parameter is the genlist item that was indicated to contract.
269  * - @c "realized" - This is called when the item in the list is created as a
270  *   real evas object. event_info parameter is the genlist item that was
271  *   created.
272  * - @c "unrealized" - This is called just before an item is unrealized.
273  *   After this call content objects provided will be deleted and the item
274  *   object itself delete or be put into a floating cache.
275  * - @c "drag,start,up" - This is called when the item in the list has been
276  *   dragged (not scrolled) up.
277  * - @c "drag,start,down" - This is called when the item in the list has been
278  *   dragged (not scrolled) down.
279  * - @c "drag,start,left" - This is called when the item in the list has been
280  *   dragged (not scrolled) left.
281  * - @c "drag,start,right" - This is called when the item in the list has
282  *   been dragged (not scrolled) right.
283  * - @c "drag,stop" - This is called when the item in the list has stopped
284  *   being dragged.
285  * - @c "drag" - This is called when the item in the list is being dragged.
286  * - @c "longpressed" - This is called when the item is pressed for a certain
287  *   amount of time. By default it's 1 second. The event_info parameter is the
288  *   longpressed genlist item.
289  * - @c "scroll,anim,start" - This is called when scrolling animation has
290  *   started.
291  * - @c "scroll,anim,stop" - This is called when scrolling animation has
292  *   stopped.
293  * - @c "scroll,drag,start" - This is called when dragging the content has
294  *   started.
295  * - @c "scroll,drag,stop" - This is called when dragging the content has
296  *   stopped.
297  * - @c "edge,top" - This is called when the genlist is scrolled until
298  *   the top edge.
299  * - @c "edge,bottom" - This is called when the genlist is scrolled
300  *   until the bottom edge.
301  * - @c "edge,left" - This is called when the genlist is scrolled
302  *   until the left edge.
303  * - @c "edge,right" - This is called when the genlist is scrolled
304  *   until the right edge.
305  * - @c "multi,swipe,left" - This is called when the genlist is multi-touch
306  *   swiped left.
307  * - @c "multi,swipe,right" - This is called when the genlist is multi-touch
308  *   swiped right.
309  * - @c "multi,swipe,up" - This is called when the genlist is multi-touch
310  *   swiped up.
311  * - @c "multi,swipe,down" - This is called when the genlist is multi-touch
312  *   swiped down.
313  * - @c "multi,pinch,out" - This is called when the genlist is multi-touch
314  *   pinched out.
315  * - @c multi,pinch,in" - This is called when the genlist is multi-touch
316  *   pinched in.
317  * - @c "swipe" - This is called when the genlist is swiped.
318  * - @c "moved" - This is called when a genlist item is moved in reorder mode.
319  * - @c "moved,after" - This is called when a genlist item is moved after
320  *   another item in reorder mode. The event_info parameter is the reordered
321  *   item. To get the relative previous item, use elm_genlist_item_prev_get().
322  *   This signal is called along with "moved" signal.
323  * - @c "moved,before" - This is called when a genlist item is moved before
324  *   another item in reorder mode. The event_info parameter is the reordered
325  *   item. To get the relative previous item, use elm_genlist_item_next_get().
326  *   This signal is called along with "moved" signal.
327  * - @c "language,changed" - This is called when the program's language is
328  *   changed.
329  * - @c "tree,effect,finished" - This is called when a genlist tree effect is finished.
330  *
331  * Supported elm_object common APIs
332  * @li elm_object_signal_emit()
333  *
334  * Supported elm_object_item common APIs
335  * @li elm_object_item_part_content_get()
336  * @li elm_object_item_part_content_set()
337  * @li elm_object_item_part_content_unset()
338  * @li elm_object_item_part_text_set()
339  * @li elm_object_item_part_text_get()
340  * @li elm_object_item_disabled_set()
341  * @li elm_object_item_disabled_get()
342  * @li elm_object_item_signal_emit()
343  *
344  * @section Genlist_Examples Examples
345  *
346  * Here is a list of examples that use the genlist, trying to show some of
347  * its capabilities:
348  * - @ref genlist_example_01
349  * - @ref genlist_example_02
350  * - @ref genlist_example_03
351  * - @ref genlist_example_04
352  * - @ref genlist_example_05
353  */
354
355 /**
356  * @addtogroup Genlist
357  * @{
358  */
359
360 #define ELM_GENLIST_ITEM_CLASS_VERSION ELM_GEN_ITEM_CLASS_VERSION
361 #define ELM_GENLIST_ITEM_CLASS_HEADER ELM_GEN_ITEM_CLASS_HEADER
362
363 /**
364  * Defines if the item is of any special type (has subitems or it's the
365  * index of a group), or is just a simple item.
366  *
367  * @ingroup Genlist
368  */
369 typedef enum
370 {
371    ELM_GENLIST_ITEM_NONE = 0, /**< simple item */
372    ELM_GENLIST_ITEM_TREE = (1 << 0), /**< this may be expanded and have child items. */
373    ELM_GENLIST_ITEM_GROUP = (1 << 1), /**< an index item of a group of items. this item can have child items. */
374
375    ELM_GENLIST_ITEM_MAX = (1 << 2)
376 } Elm_Genlist_Item_Type;
377
378 /**
379  * Defines the type of the item part
380  * Used while updating item's parts
381  * It can be used at updating multi fields.
382  *
383  * @ingroup Genlist
384  */
385 typedef enum
386 {
387    ELM_GENLIST_ITEM_FIELD_ALL = 0,
388    ELM_GENLIST_ITEM_FIELD_TEXT = (1 << 0),
389    ELM_GENLIST_ITEM_FIELD_CONTENT = (1 << 1),
390    ELM_GENLIST_ITEM_FIELD_STATE = (1 << 2)
391 } Elm_Genlist_Item_Field_Type;
392
393 /**
394  * Defines where to position the item in the genlist.
395  *
396  * @ingroup Genlist
397  */
398 typedef enum
399 {
400    ELM_GENLIST_ITEM_SCROLLTO_NONE = 0,   /**< no scrollto */
401    ELM_GENLIST_ITEM_SCROLLTO_IN = (1 << 0),   /**< to the nearest viewport */
402    ELM_GENLIST_ITEM_SCROLLTO_TOP = (1 << 1),   /**< to the top of viewport */
403    ELM_GENLIST_ITEM_SCROLLTO_MIDDLE = (1 << 2)   /**< to the middle of viewport */
404 } Elm_Genlist_Item_Scrollto_Type;
405
406 /**
407  * @see Elm_Gen_Item_Class
408  */
409 typedef Elm_Gen_Item_Class Elm_Genlist_Item_Class;
410
411 /**
412  * @see Elm_Gen_Item_Text_Get_Cb
413  */
414 typedef Elm_Gen_Item_Text_Get_Cb Elm_Genlist_Item_Text_Get_Cb;
415
416 /**
417  * @see Elm_Gen_Item_Content_Get_Cb
418  */
419 typedef Elm_Gen_Item_Content_Get_Cb Elm_Genlist_Item_Content_Get_Cb;
420
421 /**
422  * @see Elm_Gen_Item_State_Get_Cb
423  */
424 typedef Elm_Gen_Item_State_Get_Cb Elm_Genlist_Item_State_Get_Cb;
425
426 /**
427  * @see Elm_Gen_Item_Del_Cb
428  */
429 typedef Elm_Gen_Item_Del_Cb Elm_Genlist_Item_Del_Cb;
430
431 /**
432  * Add a new genlist widget to the given parent Elementary
433  * (container) object
434  *
435  * @param parent The parent object
436  * @return a new genlist widget handle or @c NULL, on errors
437  *
438  * This function inserts a new genlist widget on the canvas.
439  *
440  * @see elm_genlist_item_append()
441  * @see elm_object_item_del()
442  * @see elm_genlist_clear()
443  *
444  * @ingroup Genlist
445  */
446 EAPI Evas_Object                  *elm_genlist_add(Evas_Object *parent);
447
448 /**
449  * Remove all items from a given genlist widget.
450  *
451  * @param obj The genlist object
452  *
453  * This removes (and deletes) all items in @p obj, leaving it empty.
454  *
455  * @see elm_object_item_del(), to remove just one item.
456  *
457  * @ingroup Genlist
458  */
459 EAPI void                          elm_genlist_clear(Evas_Object *obj);
460
461 /**
462  * Enable or disable multi-selection in the genlist
463  *
464  * @param obj The genlist object
465  * @param multi Multi-select enable/disable. Default is disabled.
466  *
467  * This enables (@c EINA_TRUE) or disables (@c EINA_FALSE) multi-selection in
468  * the list. This allows more than 1 item to be selected. To retrieve the list
469  * of selected items, use elm_genlist_selected_items_get().
470  *
471  * @see elm_genlist_selected_items_get()
472  * @see elm_genlist_multi_select_get()
473  *
474  * @ingroup Genlist
475  */
476 EAPI void                          elm_genlist_multi_select_set(Evas_Object *obj, Eina_Bool multi);
477
478 /**
479  * Gets if multi-selection in genlist is enabled or disabled.
480  *
481  * @param obj The genlist object
482  * @return Multi-select enabled/disabled
483  * (@c EINA_TRUE = enabled/@c EINA_FALSE = disabled). Default is @c EINA_FALSE.
484  *
485  * @see elm_genlist_multi_select_set()
486  *
487  * @ingroup Genlist
488  */
489 EAPI Eina_Bool                     elm_genlist_multi_select_get(const Evas_Object *obj);
490
491 /**
492  * This sets the horizontal stretching mode.
493  *
494  * @param obj The genlist object
495  * @param mode The mode to use (one of #ELM_LIST_SCROLL or #ELM_LIST_LIMIT).
496  *
497  * This sets the mode used for sizing items horizontally. Valid modes
498  * are #ELM_LIST_LIMIT, #ELM_LIST_SCROLL, and #ELM_LIST_COMPRESS. The default is
499  * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
500  * the scroller will scroll horizontally. Otherwise items are expanded
501  * to fill the width of the viewport of the scroller. If it is
502  * ELM_LIST_LIMIT, items will be expanded to the viewport width and
503  * limited to that size. If it is ELM_LIST_COMPRESS, the item width will be
504  * fixed (restricted to a minimum of) to the list width when calculating its
505  * size in order to allow the height to be calculated based on it. This allows,
506  * for instance, text block to wrap lines if the Edje part is configured with
507  * "text.min: 0 1".
508  * @note ELM_LIST_COMPRESS will make list resize slower as it will have to
509  *       recalculate every item height again whenever the list width
510  *       changes!
511  * @note When ELM_LIST_COMPRESS mode is enabled, it also enables
512  *       compress mode (see elm_genlist_mode_set()) and
513  *       disables homogeneous (see elm_genlist_homogeneous_set()).
514  *
515  * @see elm_genlist_mode_get()
516  *
517  * @ingroup Genlist
518  */
519 EAPI void                          elm_genlist_mode_set(Evas_Object *obj, Elm_List_Mode mode);
520
521 /**
522  * Gets the horizontal stretching mode.
523  *
524  * @param obj The genlist object
525  * @return The mode to use
526  * (#ELM_LIST_LIMIT, #ELM_LIST_SCROLL)
527  *
528  * @see elm_genlist_mode_set()
529  *
530  * @ingroup Genlist
531  */
532 EAPI Elm_List_Mode                 elm_genlist_mode_get(const Evas_Object *obj);
533
534 /**
535  * Enable/disable horizontal and vertical bouncing effect.
536  *
537  * @param obj The genlist object
538  * @param h_bounce Allow bounce horizontally (@c EINA_TRUE = on, @c
539  * EINA_FALSE = off). Default is @c EINA_FALSE.
540  * @param v_bounce Allow bounce vertically (@c EINA_TRUE = on, @c
541  * EINA_FALSE = off). Default is @c EINA_TRUE.
542  *
543  * This will enable or disable the scroller bouncing effect for the
544  * genlist. See elm_scroller_bounce_set() for details.
545  *
546  * @see elm_scroller_bounce_set()
547  * @see elm_genlist_bounce_get()
548  *
549  * @ingroup Genlist
550  */
551 EAPI void                          elm_genlist_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
552
553 /**
554  * Get whether the horizontal and vertical bouncing effect is enabled.
555  *
556  * @param obj The genlist object
557  * @param h_bounce Pointer to a bool to receive if the bounce horizontally
558  * option is set.
559  * @param v_bounce Pointer to a bool to receive if the bounce vertically
560  * option is set.
561  *
562  * @see elm_genlist_bounce_set()
563  *
564  * @ingroup Genlist
565  */
566 EAPI void                          elm_genlist_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
567
568 /**
569  * Append a new item in a given genlist widget.
570  *
571  * @param obj The genlist object
572  * @param itc The item class for the item
573  * @param data The item data
574  * @param parent The parent item, or NULL if none
575  * @param type Item type
576  * @param func Convenience function called when the item is selected
577  * @param func_data Data passed to @p func above.
578  * @return A handle to the item added or @c NULL if not possible
579  *
580  * This adds the given item to the end of the list or the end of
581  * the children list if the @p parent is given.
582  *
583  * @see elm_genlist_item_prepend()
584  * @see elm_genlist_item_insert_before()
585  * @see elm_genlist_item_insert_after()
586  * @see elm_object_item_del()
587  *
588  * @ingroup Genlist
589  */
590 EAPI Elm_Object_Item             *elm_genlist_item_append(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Genlist_Item_Type type, Evas_Smart_Cb func, const void *func_data);
591
592 /**
593  * Prepend a new item in a given genlist widget.
594  *
595  * @param obj The genlist object
596  * @param itc The item class for the item
597  * @param data The item data
598  * @param parent The parent item, or NULL if none
599  * @param type Item type
600  * @param func Convenience function called when the item is selected
601  * @param func_data Data passed to @p func above.
602  * @return A handle to the item added or NULL if not possible
603  *
604  * This adds an item to the beginning of the list or beginning of the
605  * children of the parent if given.
606  *
607  * @see elm_genlist_item_append()
608  * @see elm_genlist_item_insert_before()
609  * @see elm_genlist_item_insert_after()
610  * @see elm_object_item_del()
611  *
612  * @ingroup Genlist
613  */
614 EAPI Elm_Object_Item             *elm_genlist_item_prepend(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Genlist_Item_Type type, Evas_Smart_Cb func, const void *func_data);
615
616 /**
617  * Insert an item before another in a genlist widget
618  *
619  * @param obj The genlist object
620  * @param itc The item class for the item
621  * @param data The item data
622  * @param parent The parent item, or NULL if none
623  * @param before The item to place this new one before.
624  * @param type Item type
625  * @param func Convenience function called when the item is selected
626  * @param func_data Data passed to @p func above.
627  * @return A handle to the item added or @c NULL if not possible
628  *
629  * This inserts an item before another in the list. It will be in the
630  * same tree level or group as the item it is inserted before.
631  *
632  * @see elm_genlist_item_append()
633  * @see elm_genlist_item_prepend()
634  * @see elm_genlist_item_insert_after()
635  * @see elm_object_item_del()
636  *
637  * @ingroup Genlist
638  */
639 EAPI Elm_Object_Item             *elm_genlist_item_insert_before(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Object_Item *before, Elm_Genlist_Item_Type type, Evas_Smart_Cb func, const void *func_data);
640
641 /**
642  * Insert an item after another in a genlist widget
643  *
644  * @param obj The genlist object
645  * @param itc The item class for the item
646  * @param data The item data
647  * @param parent The parent item, or NULL if none
648  * @param after The item to place this new one after.
649  * @param type Item type
650  * @param func Convenience function called when the item is selected
651  * @param func_data Data passed to @p func above.
652  * @return A handle to the item added or @c NULL if not possible
653  *
654  * This inserts an item after another in the list. It will be in the
655  * same tree level or group as the item it is inserted after.
656  *
657  * @see elm_genlist_item_append()
658  * @see elm_genlist_item_prepend()
659  * @see elm_genlist_item_insert_before()
660  * @see elm_object_item_del()
661  *
662  * @ingroup Genlist
663  */
664 EAPI Elm_Object_Item             *elm_genlist_item_insert_after(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Object_Item *after, Elm_Genlist_Item_Type type, Evas_Smart_Cb func, const void *func_data);
665
666 /**
667  * Insert a new item into the sorted genlist object
668  *
669  * @param obj The genlist object
670  * @param itc The item class for the item
671  * @param data The item data
672  * @param parent The parent item, or NULL if none
673  * @param type Item type
674  * @param comp The function called for the sort
675  * @param func Convenience function called when item selected
676  * @param func_data Data passed to @p func above.
677  * @return A handle to the item added or NULL if not possible
678  *
679  * This inserts an item in the genlist based on user defined comparison
680  * function. The two arguments passed to the function @p func are genlist item
681  * handles to compare.
682  *
683  * @see elm_genlist_item_append()
684  * @see elm_genlist_item_prepend()
685  * @see elm_genlist_item_insert_after()
686  * @see elm_object_item_del()
687
688  * @ingroup Genlist
689  */
690 EAPI Elm_Object_Item             *elm_genlist_item_sorted_insert(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Object_Item *parent, Elm_Genlist_Item_Type type, Eina_Compare_Cb comp, Evas_Smart_Cb func, const void *func_data);
691
692 /* operations to retrieve existing items */
693 /**
694  * Get the selected item in the genlist.
695  *
696  * @param obj The genlist object
697  * @return The selected item, or NULL if none is selected.
698  *
699  * This gets the selected item in the list (if multi-selection is enabled, only
700  * the item that was first selected in the list is returned - which is not very
701  * useful, so see elm_genlist_selected_items_get() for when multi-selection is
702  * used).
703  *
704  * If no item is selected, NULL is returned.
705  *
706  * @see elm_genlist_selected_items_get()
707  *
708  * @ingroup Genlist
709  */
710 EAPI Elm_Object_Item             *elm_genlist_selected_item_get(const Evas_Object *obj);
711
712 /**
713  * Get a list of selected items in the genlist.
714  *
715  * @param obj The genlist object
716  * @return The list of selected items, or NULL if none are selected.
717  *
718  * It returns a list of the selected items. This list pointer is only valid so
719  * long as the selection doesn't change (no items are selected or unselected, or
720  * unselected implicitly by deletion). The list contains genlist items
721  * pointers. The order of the items in this list is the order which they were
722  * selected, i.e. the first item in this list is the first item that was
723  * selected, and so on.
724  *
725  * @note If not in multi-select mode, consider using function
726  * elm_genlist_selected_item_get() instead.
727  *
728  * @see elm_genlist_multi_select_set()
729  * @see elm_genlist_selected_item_get()
730  *
731  * @ingroup Genlist
732  */
733 EAPI const Eina_List              *elm_genlist_selected_items_get(const Evas_Object *obj);
734
735 /**
736  * Get a list of realized items in genlist
737  *
738  * @param obj The genlist object
739  * @return The list of realized items, nor NULL if none are realized.
740  *
741  * This returns a list of the realized items in the genlist. The list
742  * contains genlist item pointers. The list must be freed by the
743  * caller when done with eina_list_free(). The item pointers in the
744  * list are only valid so long as those items are not deleted or the
745  * genlist is not deleted.
746  *
747  * @see elm_genlist_realized_items_update()
748  *
749  * @ingroup Genlist
750  */
751 EAPI Eina_List                    *elm_genlist_realized_items_get(const Evas_Object *obj);
752
753 /**
754  * Get the first item in the genlist
755  *
756  * This returns the first item in the list.
757  *
758  * @param obj The genlist object
759  * @return The first item, or NULL if none
760  *
761  * @ingroup Genlist
762  */
763 EAPI Elm_Object_Item             *elm_genlist_first_item_get(const Evas_Object *obj);
764
765 /**
766  * Get the last item in the genlist
767  *
768  * This returns the last item in the list.
769  *
770  * @return The last item, or NULL if none
771  *
772  * @ingroup Genlist
773  */
774 EAPI Elm_Object_Item             *elm_genlist_last_item_get(const Evas_Object *obj);
775
776 /**
777  * Set the scrollbar policy
778  *
779  * @param obj The genlist object
780  * @param policy_h Horizontal scrollbar policy.
781  * @param policy_v Vertical scrollbar policy.
782  *
783  * This sets the scrollbar visibility policy for the given genlist
784  * scroller. #ELM_SCROLLER_POLICY_AUTO means the scrollbar is
785  * made visible if it is needed, and otherwise kept hidden.
786  * #ELM_SCROLLER_POLICY_ON turns it on all the time, and
787  * #ELM_SCROLLER_POLICY_OFF always keeps it off. This applies
788  * respectively for the horizontal and vertical scrollbars. Default is
789  * #ELM_SCROLLER_POLICY_AUTO
790  *
791  * @see elm_genlist_scroller_policy_get()
792  *
793  * @ingroup Genlist
794  */
795 EAPI void                          elm_genlist_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v);
796
797 /**
798  * Get the scrollbar policy
799  *
800  * @param obj The genlist object
801  * @param policy_h Pointer to store the horizontal scrollbar policy.
802  * @param policy_v Pointer to store the vertical scrollbar policy.
803  *
804  * @see elm_genlist_scroller_policy_set()
805  *
806  * @ingroup Genlist
807  */
808 EAPI void                          elm_genlist_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v);
809
810 /**
811  * Get the @b next item in a genlist widget's internal list of items,
812  * given a handle to one of those items.
813  *
814  * @param it The genlist item to fetch next from
815  * @return The item after @p item, or @c NULL if there's none (and
816  * on errors)
817  *
818  * This returns the item placed after the @p item, on the container
819  * genlist.
820  *
821  * @see elm_genlist_item_prev_get()
822  *
823  * @ingroup Genlist
824  */
825 EAPI Elm_Object_Item             *elm_genlist_item_next_get(const Elm_Object_Item *it);
826
827 /**
828  * Get the @b previous item in a genlist widget's internal list of items,
829  * given a handle to one of those items.
830  *
831  * @param it The genlist item to fetch previous from
832  * @return The item before @p item, or @c NULL if there's none (and
833  * on errors)
834  *
835  * This returns the item placed before the @p item, on the container
836  * genlist.
837  *
838  * @see elm_genlist_item_next_get()
839  *
840  * @ingroup Genlist
841  */
842 EAPI Elm_Object_Item             *elm_genlist_item_prev_get(const Elm_Object_Item *it);
843
844 /**
845  * Set whether a given genlist item is selected or not
846  *
847  * @param it The item
848  * @param selected Use @c EINA_TRUE, to make it selected, @c
849  * EINA_FALSE to make it unselected
850  *
851  * This sets the selected state of an item. If multi selection is
852  * not enabled on the containing genlist and @p selected is @c
853  * EINA_TRUE, any other previously selected items will get
854  * unselected in favor of this new one.
855  *
856  * @see elm_genlist_item_selected_get()
857  *
858  * @ingroup Genlist
859  */
860 EAPI void                          elm_genlist_item_selected_set(Elm_Object_Item *it, Eina_Bool selected);
861
862 /**
863  * Get whether a given genlist item is selected or not
864  *
865  * @param it The item
866  * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
867  *
868  * @see elm_genlist_item_selected_set() for more details
869  *
870  * @ingroup Genlist
871  */
872 EAPI Eina_Bool                     elm_genlist_item_selected_get(const Elm_Object_Item *it);
873
874 /**
875  * Show the portion of a genlist's internal list containing a given
876  * item, immediately.
877  *
878  * @param it The item to display
879  * @param type The position to bring in, the given item to.
880  *             @ref Elm_Genlist_Item_Scrollto_Type
881  *
882  * This causes genlist to jump to the given item @p it and show it (by
883  * jumping to that position), if it is not fully visible.
884  *
885  * @see elm_genlist_item_bring_in()
886  *
887  * @ingroup Genlist
888  */
889 EAPI void                          elm_genlist_item_show(Elm_Object_Item *it, Elm_Genlist_Item_Scrollto_Type type);
890
891 /**
892  * Animatedly bring in, to the visible are of a genlist, a given
893  * item on it.
894  *
895  * @param it The item to display
896  * @param type The position to bring in, the given item to.
897  *             @ref Elm_Genlist_Item_Scrollto_Type
898  *
899  * This causes genlist to jump to the given item @p it and show it (by
900  * animatedly scrolling), if it is not fully visible.
901  * This may use animation and take a some time to do so.
902  *
903  * @see elm_genlist_item_show()
904  *
905  * @ingroup Genlist
906  */
907 EAPI void                          elm_genlist_item_bring_in(Elm_Object_Item *it, Elm_Genlist_Item_Scrollto_Type type);
908
909 /**
910  * Update the contents of an item
911  *
912  * @param it The item
913  *
914  * This updates an item by calling all the item class functions again
915  * to get the contents, texts and states. Use this when the original
916  * item data has changed and the changes are desired to be reflected.
917  *
918  * Use elm_genlist_realized_items_update() to update all already realized
919  * items.
920  *
921  * @see elm_genlist_realized_items_update()
922  *
923  * @ingroup Genlist
924  */
925 EAPI void                          elm_genlist_item_update(Elm_Object_Item *it);
926
927 /**
928  * Update the item class of an item
929  *
930  * @param it The item
931  * @param itc The item class for the item
932  *
933  * This sets another class of the item, changing the way that it is
934  * displayed. After changing the item class, elm_genlist_item_update() is
935  * called on the item @p it.
936  *
937  * @ingroup Genlist
938  */
939 EAPI void                          elm_genlist_item_item_class_update(Elm_Object_Item *it, const Elm_Genlist_Item_Class *itc);
940
941 /**
942  * Get the Genlist Item class for the given Genlist Item.
943  *
944  * @param it The genlist item
945  *
946  * This returns the Genlist_Item_Class for the given item. It can be used to
947  * examine the function pointers and item_style.
948  *
949  * @ingroup Genlist
950  */
951 EAPI const Elm_Genlist_Item_Class *elm_genlist_item_item_class_get(const Elm_Object_Item *it);
952
953 /**
954  * Get the index of the item. It is only valid once displayed.
955  *
956  * @param it a genlist item
957  * @return the position inside the list of item.
958  *
959  * @ingroup Genlist
960  */
961 EAPI int                           elm_genlist_item_index_get(const Elm_Object_Item *it);
962
963 /**
964  * Update the contents of all realized items.
965  *
966  * @param obj The genlist object.
967  *
968  * This updates all realized items by calling all the item class functions again
969  * to get the contents, texts and states. Use this when the original
970  * item data has changed and the changes are desired to be reflected.
971  *
972  * To update just one item, use elm_genlist_item_update().
973  *
974  * @see elm_genlist_realized_items_get()
975  * @see elm_genlist_item_update()
976  *
977  * @ingroup Genlist
978  */
979 EAPI void                          elm_genlist_realized_items_update(Evas_Object *obj);
980
981 /**
982  * Return how many items are currently in a list
983  *
984  * @param obj The list
985  * @return The total number of list items in the list
986  *
987  * This behavior is O(1) and includes items which may or may not be realized.
988  *
989  * @ingroup Genlist
990  */
991 EAPI unsigned int elm_genlist_items_count(const Evas_Object *obj);
992
993 /**
994  * Add a new genlist item class in a given genlist widget.
995  *
996  * @return New allocated a genlist item class.
997  *
998  * This adds genlist item class for the genlist widget. When adding a item,
999  * genlist_item_{append, prepend, insert} function needs item class of the item.
1000  * Given callback parameters are used at retrieving {text, content} of
1001  * added item. Set as NULL if it's not used.
1002  * If there's no available memory, return can be NULL.
1003  *
1004  * @see elm_genlist_item_class_free()
1005  * @see elm_genlist_item_append()
1006  *
1007  * @ingroup Genlist
1008  */
1009 EAPI Elm_Genlist_Item_Class *elm_genlist_item_class_new(void);
1010
1011 /**
1012  * Remove a item class in a given genlist widget.
1013  *
1014  * @param itc The itc to be removed.
1015  *
1016  * This removes item class from the genlist widget.
1017  * Whenever it has no more references to it, item class is going to be freed.
1018  * Otherwise it just decreases its reference count.
1019  *
1020  * @see elm_genlist_item_class_new()
1021  * @see elm_genlist_item_class_ref()
1022  * @see elm_genlist_item_class_unref()
1023  *
1024  * @ingroup Genlist
1025  */
1026 EAPI void elm_genlist_item_class_free(Elm_Genlist_Item_Class *itc);
1027
1028 /**
1029  * Increments object reference count for the item class.
1030  *
1031  * @param itc The given item class object to reference
1032  *
1033  * This API just increases its reference count for item class management.
1034  *
1035  * @see elm_genlist_item_class_unref()
1036  *
1037  * @ingroup Genlist
1038  */
1039 EAPI void elm_genlist_item_class_ref(Elm_Genlist_Item_Class *itc);
1040
1041 /**
1042  * Decrements object reference count for the item class.
1043  *
1044  * @param itc The given item class object to reference
1045  *
1046  * This API just decreases its reference count for item class management.
1047  * Reference count can't be less than 0.
1048  *
1049  * @see elm_genlist_item_class_ref()
1050  * @see elm_genlist_item_class_free()
1051  *
1052  * @ingroup Genlist
1053  */
1054 EAPI void elm_genlist_item_class_unref(Elm_Genlist_Item_Class *itc);
1055
1056 /**
1057  * Set the text to be shown in a given genlist item's tooltips.
1058  *
1059  * @param it The genlist item
1060  * @param text The text to set in the content
1061  *
1062  * This call will setup the text to be used as tooltip to that item
1063  * (analogous to elm_object_tooltip_text_set(), but being item
1064  * tooltips with higher precedence than object tooltips). It can
1065  * have only one tooltip at a time, so any previous tooltip data
1066  * will get removed.
1067  *
1068  * In order to set a content or something else as a tooltip, look at
1069  * elm_genlist_item_tooltip_content_cb_set().
1070  *
1071  * @ingroup Genlist
1072  */
1073 EAPI void                          elm_genlist_item_tooltip_text_set(Elm_Object_Item *it, const char *text);
1074
1075 /**
1076  * Set the content to be shown in a given genlist item's tooltips
1077  *
1078  * @param it The genlist item.
1079  * @param func The function returning the tooltip contents.
1080  * @param data What to provide to @a func as callback data/context.
1081  * @param del_cb Called when data is not needed anymore, either when
1082  *        another callback replaces @p func, the tooltip is unset with
1083  *        elm_genlist_item_tooltip_unset() or the owner @p item
1084  *        dies. This callback receives as its first parameter the
1085  *        given @p data, being @c event_info the item handle.
1086  *
1087  * This call will setup the tooltip's contents to @p item
1088  * (analogous to elm_object_tooltip_content_cb_set(), but being
1089  * item tooltips with higher precedence than object tooltips). It
1090  * can have only one tooltip at a time, so any previous tooltip
1091  * content will get removed. @p func (with @p data) will be called
1092  * every time Elementary needs to show the tooltip and it should
1093  * return a valid Evas object, which will be fully managed by the
1094  * tooltip system, getting deleted when the tooltip is gone.
1095  *
1096  * In order to set just a text as a tooltip, look at
1097  * elm_genlist_item_tooltip_text_set().
1098  *
1099  * @ingroup Genlist
1100  */
1101 EAPI void                          elm_genlist_item_tooltip_content_cb_set(Elm_Object_Item *it, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb);
1102
1103 /**
1104  * Unset a tooltip from a given genlist item
1105  *
1106  * @param it genlist item to remove a previously set tooltip from.
1107  *
1108  * This call removes any tooltip set on @p item. The callback
1109  * provided as @c del_cb to
1110  * elm_genlist_item_tooltip_content_cb_set() will be called to
1111  * notify it is not used anymore (and have resources cleaned, if
1112  * need be).
1113  *
1114  * @see elm_genlist_item_tooltip_content_cb_set()
1115  *
1116  * @ingroup Genlist
1117  */
1118 EAPI void                          elm_genlist_item_tooltip_unset(Elm_Object_Item *it);
1119
1120 /**
1121  * Set a different @b style for a given genlist item's tooltip.
1122  *
1123  * @param it genlist item with tooltip set
1124  * @param style the <b>theme style</b> to use on tooltips (e.g. @c
1125  * "default", @c "transparent", etc)
1126  *
1127  * Tooltips can have <b>alternate styles</b> to be displayed on,
1128  * which are defined by the theme set on Elementary. This function
1129  * works analogously as elm_object_tooltip_style_set(), but here
1130  * applied only to genlist item objects. The default style for
1131  * tooltips is @c "default".
1132  *
1133  * @note before you set a style you should define a tooltip with
1134  *       elm_genlist_item_tooltip_content_cb_set() or
1135  *       elm_genlist_item_tooltip_text_set()
1136  *
1137  * @see elm_genlist_item_tooltip_style_get()
1138  *
1139  * @ingroup Genlist
1140  */
1141 EAPI void                          elm_genlist_item_tooltip_style_set(Elm_Object_Item *it, const char *style);
1142
1143 /**
1144  * Get the style set a given genlist item's tooltip.
1145  *
1146  * @param it genlist item with tooltip already set on.
1147  * @return style the theme style in use, which defaults to
1148  *         "default". If the object does not have a tooltip set,
1149  *         then @c NULL is returned.
1150  *
1151  * @see elm_genlist_item_tooltip_style_set() for more details
1152  *
1153  * @ingroup Genlist
1154  */
1155 EAPI const char                   *elm_genlist_item_tooltip_style_get(const Elm_Object_Item *it);
1156
1157 /**
1158  * @brief Disable size restrictions on an object's tooltip
1159  * @param it The tooltip's anchor object
1160  * @param disable If EINA_TRUE, size restrictions are disabled
1161  * @return EINA_FALSE on failure, EINA_TRUE on success
1162  *
1163  * This function allows a tooltip to expand beyond its parent window's canvas.
1164  * It will instead be limited only by the size of the display.
1165  */
1166 EAPI Eina_Bool                     elm_genlist_item_tooltip_window_mode_set(Elm_Object_Item *it, Eina_Bool disable);
1167
1168 /**
1169  * @brief Retrieve size restriction state of an object's tooltip
1170  * @param it The tooltip's anchor object
1171  * @return If EINA_TRUE, size restrictions are disabled
1172  *
1173  * This function returns whether a tooltip is allowed to expand beyond
1174  * its parent window's canvas.
1175  * It will instead be limited only by the size of the display.
1176  */
1177 EAPI Eina_Bool                     elm_genlist_item_tooltip_window_mode_get(const Elm_Object_Item *it);
1178
1179 /**
1180  * Set the type of mouse pointer/cursor decoration to be shown,
1181  * when the mouse pointer is over the given genlist widget item
1182  *
1183  * @param it genlist item to customize cursor on
1184  * @param cursor the cursor type's name
1185  *
1186  * This function works analogously as elm_object_cursor_set(), but
1187  * here the cursor's changing area is restricted to the item's
1188  * area, and not the whole widget's. Note that that item cursors
1189  * have precedence over widget cursors, so that a mouse over @p
1190  * item will always show cursor @p type.
1191  *
1192  * If this function is called twice for an object, a previously set
1193  * cursor will be unset on the second call.
1194  *
1195  * @see elm_object_cursor_set()
1196  * @see elm_genlist_item_cursor_get()
1197  * @see elm_genlist_item_cursor_unset()
1198  *
1199  * @ingroup Genlist
1200  */
1201 EAPI void                          elm_genlist_item_cursor_set(Elm_Object_Item *it, const char *cursor);
1202
1203 /**
1204  * Get the type of mouse pointer/cursor decoration set to be shown,
1205  * when the mouse pointer is over the given genlist widget item
1206  *
1207  * @param it genlist item with custom cursor set
1208  * @return the cursor type's name or @c NULL, if no custom cursors
1209  * were set to @p item (and on errors)
1210  *
1211  * @see elm_object_cursor_get()
1212  * @see elm_genlist_item_cursor_set() for more details
1213  * @see elm_genlist_item_cursor_unset()
1214  *
1215  * @ingroup Genlist
1216  */
1217 EAPI const char                   *elm_genlist_item_cursor_get(const Elm_Object_Item *it);
1218
1219 /**
1220  * Unset any custom mouse pointer/cursor decoration set to be
1221  * shown, when the mouse pointer is over the given genlist widget
1222  * item, thus making it show the @b default cursor again.
1223  *
1224  * @param it a genlist item
1225  *
1226  * Use this call to undo any custom settings on this item's cursor
1227  * decoration, bringing it back to defaults (no custom style set).
1228  *
1229  * @see elm_object_cursor_unset()
1230  * @see elm_genlist_item_cursor_set() for more details
1231  *
1232  * @ingroup Genlist
1233  */
1234 EAPI void                          elm_genlist_item_cursor_unset(Elm_Object_Item *it);
1235
1236 /**
1237  * Set a different @b style for a given custom cursor set for a
1238  * genlist item.
1239  *
1240  * @param it genlist item with custom cursor set
1241  * @param style the <b>theme style</b> to use (e.g. @c "default",
1242  * @c "transparent", etc)
1243  *
1244  * This function only makes sense when one is using custom mouse
1245  * cursor decorations <b>defined in a theme file</b> , which can
1246  * have, given a cursor name/type, <b>alternate styles</b> on
1247  * it. It works analogously as elm_object_cursor_style_set(), but
1248  * here applied only to genlist item objects.
1249  *
1250  * @warning Before you set a cursor style you should have defined a
1251  *       custom cursor previously on the item, with
1252  *       elm_genlist_item_cursor_set()
1253  *
1254  * @see elm_genlist_item_cursor_engine_only_set()
1255  * @see elm_genlist_item_cursor_style_get()
1256  *
1257  * @ingroup Genlist
1258  */
1259 EAPI void                          elm_genlist_item_cursor_style_set(Elm_Object_Item *it, const char *style);
1260
1261 /**
1262  * Get the current @b style set for a given genlist item's custom
1263  * cursor
1264  *
1265  * @param it genlist item with custom cursor set.
1266  * @return style the cursor style in use. If the object does not
1267  *         have a cursor set, then @c NULL is returned.
1268  *
1269  * @see elm_genlist_item_cursor_style_set() for more details
1270  *
1271  * @ingroup Genlist
1272  */
1273 EAPI const char                   *elm_genlist_item_cursor_style_get(const Elm_Object_Item *it);
1274
1275 /**
1276  * Set if the (custom) cursor for a given genlist item should be
1277  * searched in its theme, also, or should only rely on the
1278  * rendering engine.
1279  *
1280  * @param it item with custom (custom) cursor already set on
1281  * @param engine_only Use @c EINA_TRUE to have cursors looked for
1282  * only on those provided by the rendering engine, @c EINA_FALSE to
1283  * have them searched on the widget's theme, as well.
1284  *
1285  * @note This call is of use only if you've set a custom cursor
1286  * for genlist items, with elm_genlist_item_cursor_set().
1287  *
1288  * @note By default, cursors will only be looked for between those
1289  * provided by the rendering engine.
1290  *
1291  * @ingroup Genlist
1292  */
1293 EAPI void                          elm_genlist_item_cursor_engine_only_set(Elm_Object_Item *it, Eina_Bool engine_only);
1294
1295 /**
1296  * Get if the (custom) cursor for a given genlist item is being
1297  * searched in its theme, also, or is only relying on the rendering
1298  * engine.
1299  *
1300  * @param it a genlist item
1301  * @return @c EINA_TRUE, if cursors are being looked for only on
1302  * those provided by the rendering engine, @c EINA_FALSE if they
1303  * are being searched on the widget's theme, as well.
1304  *
1305  * @see elm_genlist_item_cursor_engine_only_set(), for more details
1306  *
1307  * @ingroup Genlist
1308  */
1309 EAPI Eina_Bool                     elm_genlist_item_cursor_engine_only_get(const Elm_Object_Item *it);
1310
1311 /**
1312  * Enable/disable homogeneous mode.
1313  *
1314  * @param obj The genlist object
1315  * @param homogeneous Assume the items within the genlist are of the
1316  * same height and width (EINA_TRUE = on, EINA_FALSE = off). Default is @c
1317  * EINA_FALSE.
1318  *
1319  * This will enable the homogeneous mode where items are of the same
1320  * height and width so that genlist may do the lazy-loading at its
1321  * maximum (which increases the performance for scrolling the list). This
1322  * implies 'compressed' mode.
1323  *
1324  * @see elm_genlist_mode_set()
1325  * @see elm_genlist_homogeneous_get()
1326  *
1327  * @ingroup Genlist
1328  */
1329 EAPI void                          elm_genlist_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous);
1330
1331 /**
1332  * Get whether the homogeneous mode is enabled.
1333  *
1334  * @param obj The genlist object
1335  * @return Assume the items within the genlist are of the same height
1336  * and width (EINA_TRUE = on, EINA_FALSE = off)
1337  *
1338  * @see elm_genlist_homogeneous_set()
1339  *
1340  * @ingroup Genlist
1341  */
1342 EAPI Eina_Bool                     elm_genlist_homogeneous_get(const Evas_Object *obj);
1343
1344 /**
1345  * Set the maximum number of items within an item block
1346  *
1347  * @param obj The genlist object
1348  * @param count Maximum number of items within an item block. Default is 32.
1349  *
1350  * This will configure the block count to tune to the target with particular
1351  * performance matrix.
1352  *
1353  * A block of objects will be used to reduce the number of operations due to
1354  * many objects in the screen. It can determine the visibility, or if the
1355  * object has changed, it theme needs to be updated, etc. doing this kind of
1356  * calculation to the entire block, instead of per object.
1357  *
1358  * The default value for the block count is enough for most lists, so unless
1359  * you know you will have a lot of objects visible in the screen at the same
1360  * time, don't try to change this.
1361  *
1362  * @see elm_genlist_block_count_get()
1363  * @see @ref Genlist_Implementation
1364  *
1365  * @ingroup Genlist
1366  */
1367 EAPI void                          elm_genlist_block_count_set(Evas_Object *obj, int count);
1368
1369 /**
1370  * Get the maximum number of items within an item block
1371  *
1372  * @param obj The genlist object
1373  * @return Maximum number of items within an item block
1374  *
1375  * @see elm_genlist_block_count_set()
1376  *
1377  * @ingroup Genlist
1378  */
1379 EAPI int                           elm_genlist_block_count_get(const Evas_Object *obj);
1380
1381 /**
1382  * Set the timeout in seconds for the longpress event.
1383  *
1384  * @param obj The genlist object
1385  * @param timeout timeout in seconds. Default is elm config value(1.0)
1386  *
1387  * This option will change how long it takes to send an event "longpressed"
1388  * after the mouse down signal is sent to the list. If this event occurs, no
1389  * "clicked" event will be sent.
1390  *
1391  * @warning If you set the longpress timeout value with this API, your genlist
1392  * will not be affected by the longpress value of elementary config value
1393  * later.
1394  *
1395  * @see elm_genlist_longpress_timeout_set()
1396  *
1397  * @ingroup Genlist
1398  */
1399 EAPI void                          elm_genlist_longpress_timeout_set(Evas_Object *obj, double timeout);
1400
1401 /**
1402  * Get the timeout in seconds for the longpress event.
1403  *
1404  * @param obj The genlist object
1405  * @return timeout in seconds
1406  *
1407  * @see elm_genlist_longpress_timeout_get()
1408  *
1409  * @ingroup Genlist
1410  */
1411 EAPI double                        elm_genlist_longpress_timeout_get(const Evas_Object *obj);
1412
1413 /**
1414  * Get the item that is at the x, y canvas coords.
1415  *
1416  * @param obj The genlist object.
1417  * @param x The input x coordinate
1418  * @param y The input y coordinate
1419  * @param posret The position relative to the item returned here
1420  * @return The item at the coordinates or NULL if none
1421  *
1422  * This returns the item at the given coordinates (which are canvas
1423  * relative, not object-relative). If an item is at that coordinate,
1424  * that item handle is returned, and if @p posret is not NULL, the
1425  * integer pointed to is set to a value of -1, 0 or 1, depending if
1426  * the coordinate is on the upper portion of that item (-1), on the
1427  * middle section (0) or on the lower part (1). If NULL is returned as
1428  * an item (no item found there), then posret may indicate -1 or 1
1429  * based if the coordinate is above or below all items respectively in
1430  * the genlist.
1431  *
1432  * @ingroup Genlist
1433  */
1434 EAPI Elm_Object_Item             *elm_genlist_at_xy_item_get(const Evas_Object *obj, Evas_Coord x, Evas_Coord y, int *posret);
1435
1436 /**
1437  * Get the parent item of the given item
1438  *
1439  * @param it The item
1440  * @return The parent of the item or @c NULL if it has no parent.
1441  *
1442  * This returns the item that was specified as parent of the item @p it on
1443  * elm_genlist_item_append() and insertion related functions.
1444  *
1445  * @ingroup Genlist
1446  */
1447 EAPI Elm_Object_Item             *elm_genlist_item_parent_get(const Elm_Object_Item *it);
1448
1449 /**
1450  * Remove all sub-items (children) of the given item
1451  *
1452  * @param it The item
1453  *
1454  * This removes all items that are children (and their descendants) of the
1455  * given item @p it.
1456  *
1457  * @see elm_genlist_clear()
1458  * @see elm_object_item_del()
1459  *
1460  * @ingroup Genlist
1461  */
1462 EAPI void                          elm_genlist_item_subitems_clear(Elm_Object_Item *it);
1463
1464 /**
1465  * Sets the expanded state of an item.
1466  *
1467  * @param it The item
1468  * @param expanded The expanded state (@c EINA_TRUE expanded, @c EINA_FALSE not expanded).
1469  *
1470  * This function flags the item of type #ELM_GENLIST_ITEM_TREE as
1471  * expanded or not.
1472  *
1473  * The theme will respond to this change visually, and a signal "expanded" or
1474  * "contracted" will be sent from the genlist with a pointer to the item that
1475  * has been expanded/contracted.
1476  *
1477  * Calling this function won't show or hide any child of this item (if it is
1478  * a parent). You must manually delete and create them on the callbacks of
1479  * the "expanded" or "contracted" signals.
1480  *
1481  * @see elm_genlist_item_expanded_get()
1482  *
1483  * @ingroup Genlist
1484  */
1485 EAPI void                          elm_genlist_item_expanded_set(Elm_Object_Item *it, Eina_Bool expanded);
1486
1487 /**
1488  * Get the expanded state of an item
1489  *
1490  * @param it The item
1491  * @return The expanded state
1492  *
1493  * This gets the expanded state of an item.
1494  *
1495  * @see elm_genlist_item_expanded_set()
1496  *
1497  * @ingroup Genlist
1498  */
1499 EAPI Eina_Bool                     elm_genlist_item_expanded_get(const Elm_Object_Item *it);
1500
1501 /**
1502  * Get the depth of expanded item
1503  *
1504  * @param it The genlist item object
1505  * @return The depth of expanded item
1506  *
1507  * @ingroup Genlist
1508  */
1509 EAPI int                           elm_genlist_item_expanded_depth_get(const Elm_Object_Item *it);
1510
1511 /**
1512  * Unset all contents fetched by the item class
1513  *
1514  * @param it The item
1515  * @param l The contents list to return
1516  *
1517  * This instructs genlist to release references to contents in the item,
1518  * meaning that they will no longer be managed by genlist and are
1519  * floating "orphans" that can be re-used elsewhere if the user wants
1520  * to.
1521  *
1522  * @ingroup Genlist
1523  */
1524 EAPI void                          elm_genlist_item_all_contents_unset(Elm_Object_Item *it, Eina_List **l);
1525
1526 /**
1527  * Promote an item to the top of the list
1528  *
1529  * @param it The item
1530  *
1531  * @ingroup Genlist
1532  */
1533 EAPI void                          elm_genlist_item_promote(Elm_Object_Item *it);
1534
1535 /**
1536  * Demote an item to the end of the list
1537  *
1538  * @param it The item
1539  *
1540  * @ingroup Genlist
1541  */
1542 EAPI void                          elm_genlist_item_demote(Elm_Object_Item *it);
1543
1544 /**
1545  * Update the part of an item
1546  *
1547  * @param it The item
1548  * @param parts The name of item's part
1549  * @param itf The type of item's part type
1550  *
1551  * This updates an item's part by calling item's fetching functions again
1552  * to get the contents, texts and states. Use this when the original
1553  * item data has changed and the changes are desired to be reflected.
1554  * Second parts argument is used for globbing to match '*', '?', and '.'
1555  * It can be used at updating multi fields.
1556  *
1557  * Use elm_genlist_realized_items_update() to update an item's all
1558  * property.
1559  *
1560  * @see elm_genlist_item_update()
1561  *
1562  * @ingroup Genlist
1563  */
1564 EAPI void                          elm_genlist_item_fields_update(Elm_Object_Item *it, const char *parts, Elm_Genlist_Item_Field_Type itf);
1565
1566 /**
1567  * Activate a genlist mode on an item
1568  *
1569  * @param it The genlist item
1570  * @param decorate_it_type Mode name
1571  * @param decorate_it_set Boolean to define set or unset mode.
1572
1573  *
1574  * A genlist mode is a different way of selecting an item. Once a mode is
1575  * activated on an item, any other selected item is immediately unselected.
1576  * This feature provides an easy way of implementing a new kind of animation
1577  * for selecting an item, without having to entirely rewrite the item style
1578  * theme. However, the elm_genlist_selected_* API can't be used to get what
1579  * item is activate for a mode.
1580  *
1581  * The current item style will still be used, but applying a genlist mode to
1582  * an item will select it using a different kind of animation.
1583  *
1584  * The current active item for a mode can be found by
1585  * elm_genlist_decorated_item_get().
1586  *
1587  * The characteristics of genlist mode are:
1588  * - Only one mode can be active at any time, and for only one item.
1589  * - Genlist handles deactivating other items when one item is activated.
1590  * - A mode is defined in the genlist theme (edc), and more modes can easily
1591  *   be added.
1592  * - A mode style and the genlist item style are different things. They
1593  *   can be combined to provide a default style to the item, with some kind
1594  *   of animation for that item when the mode is activated.
1595  *
1596  * When a mode is activated on an item, a new view for that item is created.
1597  * The theme of this mode defines the animation that will be used to transit
1598  * the item from the old view to the new view. This second (new) view will be
1599  * active for that item while the mode is active on the item, and will be
1600  * destroyed after the mode is totally deactivated from that item.
1601  *
1602  * @see elm_genlist_mode_get()
1603  * @see elm_genlist_decorated_item_get()
1604  *
1605  * @ingroup Genlist
1606  */
1607 EAPI void                          elm_genlist_item_decorate_mode_set(Elm_Object_Item *it, const char *decorate_it_type, Eina_Bool decorate_it_set);
1608
1609 /**
1610  * Get the item's decorate mode.
1611  *
1612  * @param it The genlist item
1613  *
1614  * This function just returns the name of the item's decorate mode.
1615  *
1616  * @see elm_genlist_item_decorate_mode_set()
1617  * @see elm_genlist_decorated_item_get()
1618  *
1619  * @ingroup Genlist
1620  */
1621 EAPI const char                   *elm_genlist_item_decorate_mode_get(const Elm_Object_Item *it);
1622
1623 /**
1624  * Get active genlist mode item
1625  *
1626  * @param obj The genlist object
1627  * @return The active item for that current mode. Or @c NULL if no item is
1628  * activated with any mode.
1629  *
1630  * This function returns the item that was activated with a mode, by the
1631  * function elm_genlist_item_decorate_mode_set().
1632  *
1633  * @see elm_genlist_item_decorate_mode_set()
1634  * @see elm_genlist_mode_get()
1635  *
1636  * @ingroup Genlist
1637  */
1638 EAPI const Elm_Object_Item       *elm_genlist_decorated_item_get(const Evas_Object *obj);
1639
1640 /**
1641  * Set reorder mode
1642  *
1643  * @param obj The genlist object
1644  * @param reorder_mode The reorder mode
1645  * (EINA_TRUE = on, EINA_FALSE = off)
1646  *
1647  * @ingroup Genlist
1648  */
1649 EAPI void                          elm_genlist_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode);
1650
1651 /**
1652  * Get the reorder mode
1653  *
1654  * @param obj The genlist object
1655  * @return The reorder mode
1656  * (EINA_TRUE = on, EINA_FALSE = off)
1657  *
1658  * @ingroup Genlist
1659  */
1660 EAPI Eina_Bool                     elm_genlist_reorder_mode_get(const Evas_Object *obj);
1661
1662 /**
1663  * Get the Item's Type
1664  *
1665  * @param it The genlist item
1666  * @return The item type.
1667  *
1668  * This function returns the item's type. Normally the item's type.
1669  * If it failed, return value is ELM_GENLIST_ITEM_MAX
1670  *
1671  * @ingroup Genlist
1672  */
1673 EAPI Elm_Genlist_Item_Type        elm_genlist_item_type_get(const Elm_Object_Item *it);
1674
1675 /**
1676  * Set Genlist decorate mode
1677  *
1678  * This sets Genlist decorate mode to all items.
1679  *
1680  * @param obj The Genlist object
1681  * @param decorated The decorate mode status
1682  * (EINA_TRUE = decorate mode, EINA_FALSE = normal mode
1683  *
1684  * @ingroup Genlist
1685  */
1686 EAPI void               elm_genlist_decorate_mode_set(Evas_Object *obj, Eina_Bool decorated);
1687
1688 /**
1689  * Get Genlist decorate mode
1690  *
1691  * @param obj The genlist object
1692  * @return The decorate mode status
1693  * (EINA_TRUE = decorate mode, EINA_FALSE = normal mode
1694  *
1695  * @ingroup Genlist
1696  */
1697 EAPI Eina_Bool          elm_genlist_decorate_mode_get(const Evas_Object *obj);
1698
1699 /**
1700  * Set the flip state of a given genlist item.
1701  *
1702  * @param it The genlist item object
1703  * @param flip The flip mode
1704  * (EINA_TRUE = on, EINA_FALSE = off)
1705  *
1706  * This function sets the flip state of a given genlist item.
1707  * Flip mode overrides current item object.
1708  * It can be used for on-the-fly item replace.
1709  * Flip mode can be used with/without edit mode.
1710  *
1711  * @see elm_genlist_item_flip_get()
1712  *
1713  * @ingroup Genlist
1714  */
1715
1716 EAPI void elm_genlist_item_flip_set(Elm_Object_Item *it, Eina_Bool flip);
1717
1718 /**
1719  * Get the flip state of a given genlist item.
1720  *
1721  * @param it The genlist item object
1722  *
1723  * This function returns the flip state of a given genlist item.
1724  * If the parameter is invalid, it returns EINA_FALSE.
1725  *
1726  * @see elm_genlist_item_flip_set()
1727  *
1728  * @ingroup Genlist
1729  */
1730
1731 EAPI Eina_Bool elm_genlist_item_flip_get(const Elm_Object_Item *it);
1732
1733 /**
1734  * Set Genlist tree effect
1735  *
1736  * @param obj The genlist object
1737  * @param enabled The tree effect status
1738  * (EINA_TRUE = enabled, EINA_FALSE = disabled
1739  *
1740  * @ingroup Genlist
1741  */
1742 EAPI void               elm_genlist_tree_effect_enabled_set(Evas_Object *obj, Eina_Bool enabled);
1743
1744 /**
1745  * Get Genlist tree effect
1746  *
1747  * @param obj The genlist object
1748  * @return The tree effect status
1749  * (EINA_TRUE = enabled, EINA_FALSE = disabled
1750  *
1751  * @ingroup Genlist
1752  */
1753 EAPI Eina_Bool          elm_genlist_tree_effect_enabled_get(const Evas_Object *obj);
1754
1755 /**
1756  * Set the genlist select mode.
1757  *
1758  * @param obj The genlist object
1759  * @param mode The select mode
1760  *
1761  * elm_genlist_select_mode_set() changes item select mode in the genlist widget.
1762  * - ELM_OBJECT_SELECT_MODE_DEFAULT : Items will only call their selection func and
1763  *      callback when first becoming selected. Any further clicks will
1764  *      do nothing, unless you set always select mode.
1765  * - ELM_OBJECT_SELECT_MODE_ALWAYS :  This means that, even if selected,
1766  *      every click will make the selected callbacks be called.
1767  * - ELM_OBJECT_SELECT_MODE_NONE : This will turn off the ability to select items
1768  *      entirely and they will neither appear selected nor call selected
1769  *      callback functions.
1770  *
1771  * @see elm_genlist_select_mode_get()
1772  *
1773  * @ingroup Genlist
1774  */
1775 EAPI void elm_genlist_select_mode_set(Evas_Object *obj, Elm_Object_Select_Mode mode);
1776
1777 /**
1778  * Get the genlist select mode.
1779  *
1780  * @param obj The genlist object
1781  * @return The select mode
1782  * (If getting mode is failed, it returns ELM_OBJECT_SELECT_MODE_MAX)
1783  *
1784  * @see elm_genlist_select_mode_set()
1785  *
1786  * @ingroup Genlist
1787  */
1788 EAPI Elm_Object_Select_Mode elm_genlist_select_mode_get(const Evas_Object *obj);
1789
1790 /**
1791  * Set whether the genlist items' should be highlighted when item selected.
1792  *
1793  * @param obj The genlist object.
1794  * @param highlight @c EINA_TRUE to enable highlighting or @c EINA_FALSE to
1795  * disable it.
1796  *
1797  * This will turn on/off the highlight effect when item selection and
1798  * they will, or will not highlighted. The selected and clicked
1799  * callback functions will still be called.
1800  *
1801  * Highlight is enabled by default.
1802  *
1803  * @see elm_genlist_highlight_mode_get().
1804  *
1805  * @ingroup Genlist
1806  */
1807 EAPI void               elm_genlist_highlight_mode_set(Evas_Object *obj, Eina_Bool highlight);
1808
1809 /**
1810  * Get whether the genlist items' should be highlighted when item selected.
1811  *
1812  * @param obj The genlist object.
1813  * @return @c EINA_TRUE means items can be highlighted. @c EINA_FALSE indicates
1814  * they can't. If @p obj is @c NULL, @c EINA_FALSE is returned.
1815  *
1816  * @see elm_genlist_highlight_mode_set() for details.
1817  *
1818  * @ingroup Genlist
1819  */
1820 EAPI Eina_Bool          elm_genlist_highlight_mode_get(const Evas_Object *obj);
1821
1822 /**
1823  * Set the genlist item's select mode.
1824  *
1825  * @param it The genlist item object
1826  * @param mode The select mode
1827  *
1828  * elm_genlist_select_mode_set() changes item's select mode.
1829  * - ELM_OBJECT_SELECT_MODE_DEFAULT : The item will only call their selection func and
1830  *      callback when first becoming selected. Any further clicks will
1831  *      do nothing, unless you set always select mode.
1832  * - ELM_OBJECT_SELECT_MODE_ALWAYS : This means that, even if selected,
1833  *      every click will make the selected callbacks be called.
1834  * - ELM_OBJECT_SELECT_MODE_NONE : This will turn off the ability to select the item
1835  *      entirely and they will neither appear selected nor call selected
1836  *      callback functions.
1837  * - ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY : This will apply no-finger-size rule
1838  *      with ELM_OBJECT_SELECT_MODE_NONE. No-finger-size rule makes an item can be
1839  *      smaller than lower limit. Clickable objects should be bigger than
1840  *      human touch point device (your finger) for some touch or
1841  *      small screen devices. So it is enabled, the item can be shrink than
1842  *      predefined finger-size value. And the item will be updated.
1843  *
1844  * @see elm_genlist_item_select_mode_get()
1845  *
1846  * @ingroup Genlist
1847  */
1848 EAPI void
1849 elm_genlist_item_select_mode_set(Elm_Object_Item *it,
1850                                  Elm_Object_Select_Mode mode);
1851
1852 /**
1853  * Get the genlist item's select mode.
1854  *
1855  * @param it The genlist item object
1856  * @return The select mode
1857  * (If getting mode is failed, it returns ELM_OBJECT_SELECT_MODE_MAX)
1858  *
1859  * @see elm_genlist_item_select_mode_set()
1860  *
1861  * @ingroup Genlist
1862  */
1863 EAPI Elm_Object_Select_Mode
1864 elm_genlist_item_select_mode_get(const Elm_Object_Item *it);
1865
1866 /**
1867  * @}
1868  */