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