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