elementary: let's install useful headers for c++
[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_horizontal_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  *
320  * Supported elm_object common APIs
321  * @li elm_object_signal_emit()
322  *
323  * Supported elm_object_item common APIs
324  * @li elm_object_item_part_content_get()
325  * @li elm_object_item_part_content_set()
326  * @li elm_object_item_part_content_unset()
327  * @li elm_object_item_part_text_set()
328  * @li elm_object_item_part_text_get()
329  * @li elm_object_item_disabled_set()
330  * @li elm_object_item_disabled_get()
331  *
332  * @section Genlist_Examples Examples
333  *
334  * Here is a list of examples that use the genlist, trying to show some of
335  * its capabilities:
336  * - @ref genlist_example_01
337  * - @ref genlist_example_02
338  * - @ref genlist_example_03
339  * - @ref genlist_example_04
340  * - @ref genlist_example_05
341  */
342
343 /**
344  * @addtogroup Genlist
345  * @{
346  */
347
348 #define ELM_GENLIST_ITEM_CLASS_VERSION ELM_GEN_ITEM_CLASS_VERSION
349 #define ELM_GENLIST_ITEM_CLASS_HEADER ELM_GEN_ITEM_CLASS_HEADER
350
351 /**
352  * Defines if the item is of any special type (has subitems or it's the
353  * index of a group), or is just a simple item.
354  *
355  * @ingroup Genlist
356  */
357  typedef enum
358 {
359    ELM_GENLIST_ITEM_NONE = 0, /**< simple item */
360    //XXX: ELM_GENLIST_ITEM_TREE
361    ELM_GENLIST_ITEM_SUBITEMS = (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 typedef enum
368 {
369    ELM_GENLIST_ITEM_FIELD_ALL = 0,
370    ELM_GENLIST_ITEM_FIELD_TEXT = (1 << 0),
371    ELM_GENLIST_ITEM_FIELD_CONTENT = (1 << 1),
372    ELM_GENLIST_ITEM_FIELD_STATE = (1 << 2)
373 } Elm_Genlist_Item_Field_Type;
374
375 /**
376  * @see Elm_Gen_Item_Class
377  */
378 typedef Elm_Gen_Item_Class Elm_Genlist_Item_Class; 
379
380 /**
381  * @see Elm_Gen_Item_Text_Get_Cb
382  */
383 typedef Elm_Gen_Item_Text_Get_Cb Elm_Genlist_Item_Text_Get_Cb;
384
385 /**
386  * @see Elm_Gen_Item_Content_Get_Cb
387  */
388 typedef Elm_Gen_Item_Content_Get_Cb Elm_Genlist_Item_Content_Get_Cb;
389
390 /**
391  * @see Elm_Gen_Item_State_Get_Cb
392  */
393 typedef Elm_Gen_Item_State_Get_Cb Elm_Genlist_Item_State_Get_Cb;
394
395 /**
396  * @see Elm_Gen_Item_Del_Cb
397  */
398 typedef Elm_Gen_Item_Del_Cb Elm_Genlist_Item_Del_Cb;
399
400 /**
401  * Add a new genlist widget to the given parent Elementary
402  * (container) object
403  *
404  * @param parent The parent object
405  * @return a new genlist widget handle or @c NULL, on errors
406  *
407  * This function inserts a new genlist widget on the canvas.
408  *
409  * @see elm_genlist_item_append()
410  * @see elm_object_item_del()
411  * @see elm_genlist_clear()
412  *
413  * @ingroup Genlist
414  */
415 EAPI Evas_Object                  *elm_genlist_add(Evas_Object *parent);
416
417 /**
418  * Remove all items from a given genlist widget.
419  *
420  * @param obj The genlist object
421  *
422  * This removes (and deletes) all items in @p obj, leaving it empty.
423  *
424  * @see elm_object_item_del(), to remove just one item.
425  *
426  * @ingroup Genlist
427  */
428 EAPI void                          elm_genlist_clear(Evas_Object *obj);
429
430 /**
431  * Enable or disable multi-selection in the genlist
432  *
433  * @param obj The genlist object
434  * @param multi Multi-select enable/disable. Default is disabled.
435  *
436  * This enables (@c EINA_TRUE) or disables (@c EINA_FALSE) multi-selection in
437  * the list. This allows more than 1 item to be selected. To retrieve the list
438  * of selected items, use elm_genlist_selected_items_get().
439  *
440  * @see elm_genlist_selected_items_get()
441  * @see elm_genlist_multi_select_get()
442  *
443  * @ingroup Genlist
444  */
445 EAPI void                          elm_genlist_multi_select_set(Evas_Object *obj, Eina_Bool multi);
446
447 /**
448  * Gets if multi-selection in genlist is enabled or disabled.
449  *
450  * @param obj The genlist object
451  * @return Multi-select enabled/disabled
452  * (@c EINA_TRUE = enabled/@c EINA_FALSE = disabled). Default is @c EINA_FALSE.
453  *
454  * @see elm_genlist_multi_select_set()
455  *
456  * @ingroup Genlist
457  */
458 EAPI Eina_Bool                     elm_genlist_multi_select_get(const Evas_Object *obj);
459
460 /**
461  * This sets the horizontal stretching mode.
462  *
463  * @param obj The genlist object
464  * @param mode The mode to use (one of #ELM_LIST_SCROLL or #ELM_LIST_LIMIT).
465  *
466  * This sets the mode used for sizing items horizontally. Valid modes
467  * are #ELM_LIST_LIMIT and #ELM_LIST_SCROLL. The default is
468  * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
469  * the scroller will scroll horizontally. Otherwise items are expanded
470  * to fill the width of the viewport of the scroller. If it is
471  * ELM_LIST_LIMIT, items will be expanded to the viewport width and
472  * limited to that size.
473  *
474  * @see elm_genlist_mode_get()
475  *
476  * @ingroup Genlist
477  */
478 EAPI void                          elm_genlist_mode_set(Evas_Object *obj, Elm_List_Mode mode);
479
480 /**
481  * Gets the horizontal stretching mode.
482  *
483  * @param obj The genlist object
484  * @return The mode to use
485  * (#ELM_LIST_LIMIT, #ELM_LIST_SCROLL)
486  *
487  * @see elm_genlist_horizontal_set()
488  *
489  * @ingroup Genlist
490  */
491 EAPI Elm_List_Mode                 elm_genlist_mode_get(const Evas_Object *obj);
492
493 /**
494  * Set the always select mode.
495  *
496  * @param obj The genlist object
497  * @param always_select The always select mode (@c EINA_TRUE = on, @c
498  * EINA_FALSE = off). Default is @c EINA_FALSE.
499  *
500  * Items will only call their selection func and callback when first
501  * becoming selected. Any further clicks will do nothing, unless you
502  * enable always select with elm_genlist_always_select_mode_set().
503  * This means that, even if selected, every click will make the selected
504  * callbacks be called.
505  *
506  * @see elm_genlist_always_select_mode_get()
507  *
508  * @ingroup Genlist
509  */
510 //XXX: How about elm_genlist_select_mode_set() ? 
511 EAPI void                          elm_genlist_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select);
512
513 /**
514  * Get the always select mode.
515  *
516  * @param obj The genlist object
517  * @return The always select mode
518  * (@c EINA_TRUE = on, @c EINA_FALSE = off)
519  *
520  * @see elm_genlist_always_select_mode_set()
521  *
522  * @ingroup Genlist
523  */
524 //XXX: How about elm_genlist_select_mode_get() ? 
525 EAPI Eina_Bool                     elm_genlist_always_select_mode_get(const Evas_Object *obj);
526
527 /**
528  * Enable/disable the no select mode.
529  *
530  * @param obj The genlist object
531  * @param no_select The no select mode
532  * (EINA_TRUE = on, EINA_FALSE = off)
533  *
534  * This will turn off the ability to select items entirely and they
535  * will neither appear selected nor call selected callback functions.
536  *
537  * @see elm_genlist_no_select_mode_get()
538  *
539  * @ingroup Genlist
540  */
541 //XXX: elm_genlist_always_select_mode_set and elm_genlist_no_select_mode_set API could be merged to elm_genlist_select_mode_set() 
542 EAPI void                          elm_genlist_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select);
543
544 /**
545  * Gets whether the no select mode is enabled.
546  *
547  * @param obj The genlist object
548  * @return The no select mode
549  * (@c EINA_TRUE = on, @c EINA_FALSE = off)
550  *
551  * @see elm_genlist_no_select_mode_set()
552  *
553  * @ingroup Genlist
554  */
555 //XXX: elm_genlist_always_select_mode_get and elm_genlist_no_select_mode_get API could be merged to elm_genlist_select_mode_get() 
556 EAPI Eina_Bool                     elm_genlist_no_select_mode_get(const Evas_Object *obj);
557
558 /**
559  * Enable/disable horizontal and vertical bouncing effect.
560  *
561  * @param obj The genlist object
562  * @param h_bounce Allow bounce horizontally (@c EINA_TRUE = on, @c
563  * EINA_FALSE = off). Default is @c EINA_FALSE.
564  * @param v_bounce Allow bounce vertically (@c EINA_TRUE = on, @c
565  * EINA_FALSE = off). Default is @c EINA_TRUE.
566  *
567  * This will enable or disable the scroller bouncing effect for the
568  * genlist. See elm_scroller_bounce_set() for details.
569  *
570  * @see elm_scroller_bounce_set()
571  * @see elm_genlist_bounce_get()
572  *
573  * @ingroup Genlist
574  */
575 EAPI void                          elm_genlist_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
576
577 /**
578  * Get whether the horizontal and vertical bouncing effect is enabled.
579  *
580  * @param obj The genlist object
581  * @param h_bounce Pointer to a bool to receive if the bounce horizontally
582  * option is set.
583  * @param v_bounce Pointer to a bool to receive if the bounce vertically
584  * option is set.
585  *
586  * @see elm_genlist_bounce_set()
587  *
588  * @ingroup Genlist
589  */
590 EAPI void                          elm_genlist_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
591
592 /**
593  * Append a new item in a given genlist widget.
594  *
595  * @param obj The genlist object
596  * @param itc The item class for the item
597  * @param data The item data
598  * @param parent The parent item, or NULL if none
599  * @param type Item type
600  * @param func Convenience function called when the item is selected
601  * @param func_data Data passed to @p func above.
602  * @return A handle to the item added or @c NULL if not possible
603  *
604  * This adds the given item to the end of the list or the end of
605  * the children list if the @p parent is given.
606  *
607  * @see elm_genlist_item_prepend()
608  * @see elm_genlist_item_insert_before()
609  * @see elm_genlist_item_insert_after()
610  * @see elm_object_item_del()
611  *
612  * @ingroup Genlist
613  */
614 EAPI Elm_Object_Item             *elm_genlist_item_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);
615
616 /**
617  * Prepend a new item in a given genlist widget.
618  *
619  * @param obj The genlist object
620  * @param itc The item class for the item
621  * @param data The item data
622  * @param parent The parent item, or NULL if none
623  * @param type Item type
624  * @param func Convenience function called when the item is selected
625  * @param func_data Data passed to @p func above.
626  * @return A handle to the item added or NULL if not possible
627  *
628  * This adds an item to the beginning of the list or beginning of the
629  * children of the parent if given.
630  *
631  * @see elm_genlist_item_append()
632  * @see elm_genlist_item_insert_before()
633  * @see elm_genlist_item_insert_after()
634  * @see elm_object_item_del()
635  *
636  * @ingroup Genlist
637  */
638 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);
639
640 /**
641  * Insert an item before another in a genlist widget
642  *
643  * @param obj The genlist object
644  * @param itc The item class for the item
645  * @param data The item data
646  * @param parent The parent item, or NULL if none
647  * @param before The item to place this new one before.
648  * @param type Item type
649  * @param func Convenience function called when the item is selected
650  * @param func_data Data passed to @p func above.
651  * @return A handle to the item added or @c NULL if not possible
652  *
653  * This inserts an item before another in the list. It will be in the
654  * same tree level or group as the item it is inserted before.
655  *
656  * @see elm_genlist_item_append()
657  * @see elm_genlist_item_prepend()
658  * @see elm_genlist_item_insert_after()
659  * @see elm_object_item_del()
660  *
661  * @ingroup Genlist
662  */
663 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);
664
665 /**
666  * Insert an item after another in a genlist widget
667  *
668  * @param obj The genlist object
669  * @param itc The item class for the item
670  * @param data The item data
671  * @param parent The parent item, or NULL if none
672  * @param after The item to place this new one after.
673  * @param type Item type
674  * @param func Convenience function called when the item is selected
675  * @param func_data Data passed to @p func above.
676  * @return A handle to the item added or @c NULL if not possible
677  *
678  * This inserts an item after another in the list. It will be in the
679  * same tree level or group as the item it is inserted after.
680  *
681  * @see elm_genlist_item_append()
682  * @see elm_genlist_item_prepend()
683  * @see elm_genlist_item_insert_before()
684  * @see elm_object_item_del()
685  *
686  * @ingroup Genlist
687  */
688 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);
689
690 /**
691  * Insert a new item into the sorted genlist object
692  *
693  * @param obj The genlist object
694  * @param itc The item class for the item
695  * @param data The item data
696  * @param parent The parent item, or NULL if none
697  * @param type Item type
698  * @param comp The function called for the sort
699  * @param func Convenience function called when item selected
700  * @param func_data Data passed to @p func above.
701  * @return A handle to the item added or NULL if not possible
702  *
703  * This inserts an item in the genlist based on user defined comparison
704  * function. The two arguments passed to the function @p func are genlist item
705  * handles to compare.
706  *
707  * @see elm_genlist_item_append()
708  * @see elm_genlist_item_prepend()
709  * @see elm_genlist_item_insert_after()
710  * @see elm_object_item_del()
711
712  * @ingroup Genlist
713  */
714 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);
715
716 /* operations to retrieve existing items */
717 /**
718  * Get the selected item in the genlist.
719  *
720  * @param obj The genlist object
721  * @return The selected item, or NULL if none is selected.
722  *
723  * This gets the selected item in the list (if multi-selection is enabled, only
724  * the item that was first selected in the list is returned - which is not very
725  * useful, so see elm_genlist_selected_items_get() for when multi-selection is
726  * used).
727  *
728  * If no item is selected, NULL is returned.
729  *
730  * @see elm_genlist_selected_items_get()
731  *
732  * @ingroup Genlist
733  */
734 EAPI Elm_Object_Item             *elm_genlist_selected_item_get(const Evas_Object *obj);
735
736 /**
737  * Get a list of selected items in the genlist.
738  *
739  * @param obj The genlist object
740  * @return The list of selected items, or NULL if none are selected.
741  *
742  * It returns a list of the selected items. This list pointer is only valid so
743  * long as the selection doesn't change (no items are selected or unselected, or
744  * unselected implicitly by deletion). The list contains genlist items
745  * pointers. The order of the items in this list is the order which they were
746  * selected, i.e. the first item in this list is the first item that was
747  * selected, and so on.
748  *
749  * @note If not in multi-select mode, consider using function
750  * elm_genlist_selected_item_get() instead.
751  *
752  * @see elm_genlist_multi_select_set()
753  * @see elm_genlist_selected_item_get()
754  *
755  * @ingroup Genlist
756  */
757 EAPI const Eina_List              *elm_genlist_selected_items_get(const Evas_Object *obj);
758
759 /**
760  * Get a list of realized items in genlist
761  *
762  * @param obj The genlist object
763  * @return The list of realized items, nor NULL if none are realized.
764  *
765  * This returns a list of the realized items in the genlist. The list
766  * contains genlist item pointers. The list must be freed by the
767  * caller when done with eina_list_free(). The item pointers in the
768  * list are only valid so long as those items are not deleted or the
769  * genlist is not deleted.
770  *
771  * @see elm_genlist_realized_items_update()
772  *
773  * @ingroup Genlist
774  */
775 EAPI Eina_List                    *elm_genlist_realized_items_get(const Evas_Object *obj);
776
777 /**
778  * Get the first item in the genlist
779  *
780  * This returns the first item in the list.
781  *
782  * @param obj The genlist object
783  * @return The first item, or NULL if none
784  *
785  * @ingroup Genlist
786  */
787 EAPI Elm_Object_Item             *elm_genlist_first_item_get(const Evas_Object *obj);
788
789 /**
790  * Get the last item in the genlist
791  *
792  * This returns the last item in the list.
793  *
794  * @return The last item, or NULL if none
795  *
796  * @ingroup Genlist
797  */
798 EAPI Elm_Object_Item             *elm_genlist_last_item_get(const Evas_Object *obj);
799
800 /**
801  * Set the scrollbar policy
802  *
803  * @param obj The genlist object
804  * @param policy_h Horizontal scrollbar policy.
805  * @param policy_v Vertical scrollbar policy.
806  *
807  * This sets the scrollbar visibility policy for the given genlist
808  * scroller. #ELM_SMART_SCROLLER_POLICY_AUTO means the scrollbar is
809  * made visible if it is needed, and otherwise kept hidden.
810  * #ELM_SMART_SCROLLER_POLICY_ON turns it on all the time, and
811  * #ELM_SMART_SCROLLER_POLICY_OFF always keeps it off. This applies
812  * respectively for the horizontal and vertical scrollbars. Default is
813  * #ELM_SMART_SCROLLER_POLICY_AUTO
814  *
815  * @see elm_genlist_scroller_policy_get()
816  *
817  * @ingroup Genlist
818  */
819 EAPI void                          elm_genlist_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v);
820
821 /**
822  * Get the scrollbar policy
823  *
824  * @param obj The genlist object
825  * @param policy_h Pointer to store the horizontal scrollbar policy.
826  * @param policy_v Pointer to store the vertical scrollbar policy.
827  *
828  * @see elm_genlist_scroller_policy_set()
829  *
830  * @ingroup Genlist
831  */
832 EAPI void                          elm_genlist_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v);
833
834 /**
835  * Get the @b next item in a genlist widget's internal list of items,
836  * given a handle to one of those items.
837  *
838  * @param it The genlist item to fetch next from
839  * @return The item after @p item, or @c NULL if there's none (and
840  * on errors)
841  *
842  * This returns the item placed after the @p item, on the container
843  * genlist.
844  *
845  * @see elm_genlist_item_prev_get()
846  *
847  * @ingroup Genlist
848  */
849 EAPI Elm_Object_Item             *elm_genlist_item_next_get(const Elm_Object_Item *it);
850
851 /**
852  * Get the @b previous item in a genlist widget's internal list of items,
853  * given a handle to one of those items.
854  *
855  * @param it The genlist item to fetch previous from
856  * @return The item before @p item, or @c NULL if there's none (and
857  * on errors)
858  *
859  * This returns the item placed before the @p item, on the container
860  * genlist.
861  *
862  * @see elm_genlist_item_next_get()
863  *
864  * @ingroup Genlist
865  */
866 EAPI Elm_Object_Item             *elm_genlist_item_prev_get(const Elm_Object_Item *it);
867
868 /**
869  * Set whether a given genlist item is selected or not
870  *
871  * @param it The item
872  * @param selected Use @c EINA_TRUE, to make it selected, @c
873  * EINA_FALSE to make it unselected
874  *
875  * This sets the selected state of an item. If multi selection is
876  * not enabled on the containing genlist and @p selected is @c
877  * EINA_TRUE, any other previously selected items will get
878  * unselected in favor of this new one.
879  *
880  * @see elm_genlist_item_selected_get()
881  *
882  * @ingroup Genlist
883  */
884 EAPI void                          elm_genlist_item_selected_set(Elm_Object_Item *it, Eina_Bool selected);
885
886 /**
887  * Get whether a given genlist item is selected or not
888  *
889  * @param it The item
890  * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
891  *
892  * @see elm_genlist_item_selected_set() for more details
893  *
894  * @ingroup Genlist
895  */
896 EAPI Eina_Bool                     elm_genlist_item_selected_get(const Elm_Object_Item *it);
897
898 /**
899  * Show the portion of a genlist's internal list containing a given
900  * item, immediately.
901  *
902  * @param it The item to display
903  *
904  * This causes genlist to jump to the given item @p it and show it (by
905  * jumping to that position), if it is not fully visible.
906  *
907  * @see elm_genlist_item_bring_in()
908  * @see elm_genlist_item_top_show()
909  * @see elm_genlist_item_middle_show()
910  *
911  * @ingroup Genlist
912  */
913 //XXX: elm_genlist_item_show(it, TOP/MIDDLE/BOTTOM/...); this kind of API would cover all similar APIs - item_show, item_top_show...
914 EAPI void                          elm_genlist_item_show(Elm_Object_Item *it);
915
916 /**
917  * Animatedly bring in, to the visible are of a genlist, a given
918  * item on it.
919  *
920  * @param it The item to display
921  *
922  * This causes genlist to jump to the given item @p it and show it (by
923  * animatedly scrolling), if it is not fully visible. This may use animation
924  * to do so and take a period of time
925  *
926  * @see elm_genlist_item_show()
927  * @see elm_genlist_item_top_bring_in()
928  * @see elm_genlist_item_middle_bring_in()
929  *
930  * @ingroup Genlist
931  */
932 //XXX: elm_genlist_item_bring_in(it, TOP/MIDDLE/BOTTOM/...); this kind of API would cover all similar APIs - bring_in, top_bring_in ...
933 EAPI void                          elm_genlist_item_bring_in(Elm_Object_Item *it);
934
935 /**
936  * Show the portion of a genlist's internal list containing a given
937  * item, immediately.
938  *
939  * @param it The item to display
940  *
941  * This causes genlist to jump to the given item @p it and show it (by
942  * jumping to the top position), if it is not fully visible.
943  *
944  * The item will be positioned at the top of the genlist viewport.
945  *
946  * @see elm_genlist_item_show()
947  * @see elm_genlist_item_top_bring_in()
948  *
949  * @ingroup Genlist
950  */
951 //XXX: elm_genlist_item_show(it, TOP/MIDDLE/BOTTOM/...); this kind of API would cover all similar APIs - item_show, item_top_show...
952 EAPI void                          elm_genlist_item_top_show(Elm_Object_Item *it);
953
954 /**
955  * Animatedly bring in, to the visible are of a genlist, a given
956  * item on it.
957  *
958  * @param it The item
959  *
960  * This causes genlist to jump to the given item @p it and show it (by
961  * animatedly scrolling), if it is not fully visible. This may use animation
962  * to do so and take a period of time
963  *
964  * The item will be positioned at the top of the genlist viewport.
965  *
966  * @see elm_genlist_item_bring_in()
967  * @see elm_genlist_item_top_show()
968  *
969  * @ingroup Genlist
970  */
971 //XXX: elm_genlist_item_bring_in(it, TOP/MIDDLE/BOTTOM/...); this kind of API would cover all similar APIs - bring_in, top_bring_in ...
972 EAPI void                          elm_genlist_item_top_bring_in(Elm_Object_Item *it);
973
974 /**
975  * Show the portion of a genlist's internal list containing a given
976  * item, immediately.
977  *
978  * @param it The item to display
979  *
980  * This causes genlist to jump to the given item @p it and show it (by
981  * immediately scrolling to that position), if it is not fully visible.
982  *
983  * The item will be positioned at the middle of the genlist viewport.
984  *
985  * @see elm_genlist_item_show()
986  * @see elm_genlist_item_middle_bring_in()
987  *
988  * @ingroup Genlist
989  */
990 //XXX: elm_genlist_item_show(it, TOP/MIDDLE/BOTTOM/...); this kind of API would cover all similar APIs - item_show, item_top_show...
991 EAPI void                          elm_genlist_item_middle_show(Elm_Object_Item *it);
992
993 /**
994  * Animatedly bring in, to the visible are of a genlist, a given
995  * item on it.
996  *
997  * @param it The item
998  *
999  * This causes genlist to jump to the given item @p it and show it (by
1000  * animatedly scrolling), if it is not fully visible. This may use animation
1001  * to do so and take a period of time
1002  *
1003  * The item will be positioned at the middle of the genlist viewport.
1004  *
1005  * @see elm_genlist_item_bring_in()
1006  * @see elm_genlist_item_middle_show()
1007  *
1008  * @ingroup Genlist
1009  */
1010 //XXX: elm_genlist_item_bring_in(it, TOP/MIDDLE/BOTTOM/...); this kind of API would cover all similar APIs - bring_in, top_bring_in ...
1011 EAPI void                          elm_genlist_item_middle_bring_in(Elm_Object_Item *it);
1012
1013 /**
1014  * Update the contents of an item
1015  *
1016  * @param it The item
1017  *
1018  * This updates an item by calling all the item class functions again
1019  * to get the contents, texts and states. Use this when the original
1020  * item data has changed and the changes are desired to be reflected.
1021  *
1022  * Use elm_genlist_realized_items_update() to update all already realized
1023  * items.
1024  *
1025  * @see elm_genlist_realized_items_update()
1026  *
1027  * @ingroup Genlist
1028  */
1029 EAPI void                          elm_genlist_item_update(Elm_Object_Item *it);
1030
1031 /**
1032  * Update the item class of an item
1033  *
1034  * @param it The item
1035  * @param itc The item class for the item
1036  *
1037  * This sets another class of the item, changing the way that it is
1038  * displayed. After changing the item class, elm_genlist_item_update() is
1039  * called on the item @p it.
1040  *
1041  * @ingroup Genlist
1042  */
1043 EAPI void                          elm_genlist_item_item_class_update(Elm_Object_Item *it, const Elm_Genlist_Item_Class *itc);
1044
1045 /**
1046  * Get the Genlist Item class for the given Genlist Item.
1047  *
1048  * @param it The genlist item
1049  *
1050  * This returns the Genlist_Item_Class for the given item. It can be used to 
1051  * examine the function pointers and item_style.
1052  *
1053  * @ingroup Genlist
1054  */
1055 EAPI const Elm_Genlist_Item_Class *elm_genlist_item_item_class_get(const Elm_Object_Item *it);
1056
1057 /**
1058  * Get the index of the item. It is only valid once displayed.
1059  *
1060  * @param it a genlist item
1061  * @return the position inside the list of item.
1062  *
1063  * @ingroup Genlist
1064  */
1065 EAPI int                           elm_genlist_item_index_get(const Elm_Object_Item *it);
1066
1067 /**
1068  * Update the contents of all realized items.
1069  *
1070  * @param obj The genlist object.
1071  *
1072  * This updates all realized items by calling all the item class functions again
1073  * to get the contents, texts and states. Use this when the original
1074  * item data has changed and the changes are desired to be reflected.
1075  *
1076  * To update just one item, use elm_genlist_item_update().
1077  *
1078  * @see elm_genlist_realized_items_get()
1079  * @see elm_genlist_item_update()
1080  *
1081  * @ingroup Genlist
1082  */
1083 EAPI void                          elm_genlist_realized_items_update(Evas_Object *obj);
1084
1085 /**
1086  * Return how many items are currently in a list
1087  *
1088  * @param obj The list
1089  * @return The total number of list items in the list
1090  *
1091  * This behavior is O(1) and includes items which may or may not be realized.
1092  *
1093  * @ingroup Genlist
1094  */
1095 EAPI unsigned int elm_genlist_items_count(const Evas_Object *obj);
1096
1097 /**
1098  * Add a new genlist item class in a given genlist widget.
1099  *
1100  * @return New allocated a genlist item class.
1101  *
1102  * This adds genlist item class for the genlist widget. When adding a item,
1103  * genlist_item_{append, prepend, insert} function needs item class of the item.
1104  * Given callback parameters are used at retrieving {text, content} of
1105  * added item. Set as NULL if it's not used.
1106  * If there's no available memory, return can be NULL.
1107  *
1108  * @see elm_genlist_item_class_free()
1109  * @see elm_genlist_item_append()
1110  *
1111  * @ingroup Genlist
1112  */
1113 EAPI Elm_Genlist_Item_Class *elm_genlist_item_class_new(void);
1114
1115 /**
1116  * Remove a item class in a given genlist widget.
1117  *
1118  * @param itc The itc to be removed.
1119  *
1120  * This removes item class from the genlist widget.
1121  * Whenever it has no more references to it, item class is going to be freed.
1122  * Otherwise it just decreases its reference count.
1123  *
1124  * @see elm_genlist_item_class_new()
1125  * @see elm_genlist_item_class_ref()
1126  * @see elm_genlist_item_class_unref()
1127  *
1128  * @ingroup Genlist
1129  */
1130 EAPI void elm_genlist_item_class_free(Elm_Genlist_Item_Class *itc);
1131
1132 /**
1133  * Increments object reference count for the item class.
1134  *
1135  * @param itc The given item class object to reference
1136  *
1137  * This API just increases its reference count for item class management.
1138  *
1139  * @see elm_genlist_item_class_unref()
1140  *
1141  * @ingroup Genlist
1142  */
1143 EAPI void elm_genlist_item_class_ref(Elm_Genlist_Item_Class *itc);
1144
1145 /**
1146  * Decrements object reference count for the item class.
1147  *
1148  * @param itc The given item class object to reference
1149  *
1150  * This API just decreases its reference count for item class management.
1151  * Reference count can't be less than 0.
1152  *
1153  * @see elm_genlist_item_class_ref()
1154  * @see elm_genlist_item_class_free()
1155  *
1156  * @ingroup Genlist
1157  */
1158 EAPI void elm_genlist_item_class_unref(Elm_Genlist_Item_Class *itc);
1159
1160
1161
1162 //XXX: Need to review tooltip & cursor APIs
1163
1164 /**
1165  * Set the text to be shown in a given genlist item's tooltips.
1166  *
1167  * @param it The genlist item
1168  * @param text The text to set in the content
1169  *
1170  * This call will setup the text to be used as tooltip to that item
1171  * (analogous to elm_object_tooltip_text_set(), but being item
1172  * tooltips with higher precedence than object tooltips). It can
1173  * have only one tooltip at a time, so any previous tooltip data
1174  * will get removed.
1175  *
1176  * In order to set a content or something else as a tooltip, look at
1177  * elm_genlist_item_tooltip_content_cb_set().
1178  *
1179  * @ingroup Genlist
1180  */
1181 EAPI void                          elm_genlist_item_tooltip_text_set(Elm_Object_Item *it, const char *text);
1182
1183 /**
1184  * Set the content to be shown in a given genlist item's tooltips
1185  *
1186  * @param it The genlist item.
1187  * @param func The function returning the tooltip contents.
1188  * @param data What to provide to @a func as callback data/context.
1189  * @param del_cb Called when data is not needed anymore, either when
1190  *        another callback replaces @p func, the tooltip is unset with
1191  *        elm_genlist_item_tooltip_unset() or the owner @p item
1192  *        dies. This callback receives as its first parameter the
1193  *        given @p data, being @c event_info the item handle.
1194  *
1195  * This call will setup the tooltip's contents to @p item
1196  * (analogous to elm_object_tooltip_content_cb_set(), but being
1197  * item tooltips with higher precedence than object tooltips). It
1198  * can have only one tooltip at a time, so any previous tooltip
1199  * content will get removed. @p func (with @p data) will be called
1200  * every time Elementary needs to show the tooltip and it should
1201  * return a valid Evas object, which will be fully managed by the
1202  * tooltip system, getting deleted when the tooltip is gone.
1203  *
1204  * In order to set just a text as a tooltip, look at
1205  * elm_genlist_item_tooltip_text_set().
1206  *
1207  * @ingroup Genlist
1208  */
1209 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);
1210
1211 /**
1212  * Unset a tooltip from a given genlist item
1213  *
1214  * @param it genlist item to remove a previously set tooltip from.
1215  *
1216  * This call removes any tooltip set on @p item. The callback
1217  * provided as @c del_cb to
1218  * elm_genlist_item_tooltip_content_cb_set() will be called to
1219  * notify it is not used anymore (and have resources cleaned, if
1220  * need be).
1221  *
1222  * @see elm_genlist_item_tooltip_content_cb_set()
1223  *
1224  * @ingroup Genlist
1225  */
1226 EAPI void                          elm_genlist_item_tooltip_unset(Elm_Object_Item *it);
1227
1228 /**
1229  * Set a different @b style for a given genlist item's tooltip.
1230  *
1231  * @param it genlist item with tooltip set
1232  * @param style the <b>theme style</b> to use on tooltips (e.g. @c
1233  * "default", @c "transparent", etc)
1234  *
1235  * Tooltips can have <b>alternate styles</b> to be displayed on,
1236  * which are defined by the theme set on Elementary. This function
1237  * works analogously as elm_object_tooltip_style_set(), but here
1238  * applied only to genlist item objects. The default style for
1239  * tooltips is @c "default".
1240  *
1241  * @note before you set a style you should define a tooltip with
1242  *       elm_genlist_item_tooltip_content_cb_set() or
1243  *       elm_genlist_item_tooltip_text_set()
1244  *
1245  * @see elm_genlist_item_tooltip_style_get()
1246  *
1247  * @ingroup Genlist
1248  */
1249 EAPI void                          elm_genlist_item_tooltip_style_set(Elm_Object_Item *it, const char *style);
1250
1251 /**
1252  * Get the style set a given genlist item's tooltip.
1253  *
1254  * @param it genlist item with tooltip already set on.
1255  * @return style the theme style in use, which defaults to
1256  *         "default". If the object does not have a tooltip set,
1257  *         then @c NULL is returned.
1258  *
1259  * @see elm_genlist_item_tooltip_style_set() for more details
1260  *
1261  * @ingroup Genlist
1262  */
1263 EAPI const char                   *elm_genlist_item_tooltip_style_get(const Elm_Object_Item *it);
1264
1265 /**
1266  * @brief Disable size restrictions on an object's tooltip
1267  * @param it The tooltip's anchor object
1268  * @param disable If EINA_TRUE, size restrictions are disabled
1269  * @return EINA_FALSE on failure, EINA_TRUE on success
1270  *
1271  * This function allows a tooltip to expand beyond its parent window's canvas.
1272  * It will instead be limited only by the size of the display.
1273  */
1274 EAPI Eina_Bool                     elm_genlist_item_tooltip_window_mode_set(Elm_Object_Item *it, Eina_Bool disable);
1275
1276 /**
1277  * @brief Retrieve size restriction state of an object's tooltip
1278  * @param it The tooltip's anchor object
1279  * @return If EINA_TRUE, size restrictions are disabled
1280  *
1281  * This function returns whether a tooltip is allowed to expand beyond
1282  * its parent window's canvas.
1283  * It will instead be limited only by the size of the display.
1284  */
1285 EAPI Eina_Bool                     elm_genlist_item_tooltip_window_mode_get(const Elm_Object_Item *it);
1286
1287 /**
1288  * Set the type of mouse pointer/cursor decoration to be shown,
1289  * when the mouse pointer is over the given genlist widget item
1290  *
1291  * @param it genlist item to customize cursor on
1292  * @param cursor the cursor type's name
1293  *
1294  * This function works analogously as elm_object_cursor_set(), but
1295  * here the cursor's changing area is restricted to the item's
1296  * area, and not the whole widget's. Note that that item cursors
1297  * have precedence over widget cursors, so that a mouse over @p
1298  * item will always show cursor @p type.
1299  *
1300  * If this function is called twice for an object, a previously set
1301  * cursor will be unset on the second call.
1302  *
1303  * @see elm_object_cursor_set()
1304  * @see elm_genlist_item_cursor_get()
1305  * @see elm_genlist_item_cursor_unset()
1306  *
1307  * @ingroup Genlist
1308  */
1309 EAPI void                          elm_genlist_item_cursor_set(Elm_Object_Item *it, const char *cursor);
1310
1311 /**
1312  * Get the type of mouse pointer/cursor decoration set to be shown,
1313  * when the mouse pointer is over the given genlist widget item
1314  *
1315  * @param it genlist item with custom cursor set
1316  * @return the cursor type's name or @c NULL, if no custom cursors
1317  * were set to @p item (and on errors)
1318  *
1319  * @see elm_object_cursor_get()
1320  * @see elm_genlist_item_cursor_set() for more details
1321  * @see elm_genlist_item_cursor_unset()
1322  *
1323  * @ingroup Genlist
1324  */
1325 EAPI const char                   *elm_genlist_item_cursor_get(const Elm_Object_Item *it);
1326
1327 /**
1328  * Unset any custom mouse pointer/cursor decoration set to be
1329  * shown, when the mouse pointer is over the given genlist widget
1330  * item, thus making it show the @b default cursor again.
1331  *
1332  * @param it a genlist item
1333  *
1334  * Use this call to undo any custom settings on this item's cursor
1335  * decoration, bringing it back to defaults (no custom style set).
1336  *
1337  * @see elm_object_cursor_unset()
1338  * @see elm_genlist_item_cursor_set() for more details
1339  *
1340  * @ingroup Genlist
1341  */
1342 EAPI void                          elm_genlist_item_cursor_unset(Elm_Object_Item *it);
1343
1344 /**
1345  * Set a different @b style for a given custom cursor set for a
1346  * genlist item.
1347  *
1348  * @param it genlist item with custom cursor set
1349  * @param style the <b>theme style</b> to use (e.g. @c "default",
1350  * @c "transparent", etc)
1351  *
1352  * This function only makes sense when one is using custom mouse
1353  * cursor decorations <b>defined in a theme file</b> , which can
1354  * have, given a cursor name/type, <b>alternate styles</b> on
1355  * it. It works analogously as elm_object_cursor_style_set(), but
1356  * here applied only to genlist item objects.
1357  *
1358  * @warning Before you set a cursor style you should have defined a
1359  *       custom cursor previously on the item, with
1360  *       elm_genlist_item_cursor_set()
1361  *
1362  * @see elm_genlist_item_cursor_engine_only_set()
1363  * @see elm_genlist_item_cursor_style_get()
1364  *
1365  * @ingroup Genlist
1366  */
1367 EAPI void                          elm_genlist_item_cursor_style_set(Elm_Object_Item *it, const char *style);
1368
1369 /**
1370  * Get the current @b style set for a given genlist item's custom
1371  * cursor
1372  *
1373  * @param it genlist item with custom cursor set.
1374  * @return style the cursor style in use. If the object does not
1375  *         have a cursor set, then @c NULL is returned.
1376  *
1377  * @see elm_genlist_item_cursor_style_set() for more details
1378  *
1379  * @ingroup Genlist
1380  */
1381 EAPI const char                   *elm_genlist_item_cursor_style_get(const Elm_Object_Item *it);
1382
1383 /**
1384  * Set if the (custom) cursor for a given genlist item should be
1385  * searched in its theme, also, or should only rely on the
1386  * rendering engine.
1387  *
1388  * @param it item with custom (custom) cursor already set on
1389  * @param engine_only Use @c EINA_TRUE to have cursors looked for
1390  * only on those provided by the rendering engine, @c EINA_FALSE to
1391  * have them searched on the widget's theme, as well.
1392  *
1393  * @note This call is of use only if you've set a custom cursor
1394  * for genlist items, with elm_genlist_item_cursor_set().
1395  *
1396  * @note By default, cursors will only be looked for between those
1397  * provided by the rendering engine.
1398  *
1399  * @ingroup Genlist
1400  */
1401 EAPI void                          elm_genlist_item_cursor_engine_only_set(Elm_Object_Item *it, Eina_Bool engine_only);
1402
1403 /**
1404  * Get if the (custom) cursor for a given genlist item is being
1405  * searched in its theme, also, or is only relying on the rendering
1406  * engine.
1407  *
1408  * @param it a genlist item
1409  * @return @c EINA_TRUE, if cursors are being looked for only on
1410  * those provided by the rendering engine, @c EINA_FALSE if they
1411  * are being searched on the widget's theme, as well.
1412  *
1413  * @see elm_genlist_item_cursor_engine_only_set(), for more details
1414  *
1415  * @ingroup Genlist
1416  */
1417 EAPI Eina_Bool                     elm_genlist_item_cursor_engine_only_get(const Elm_Object_Item *it);
1418
1419 /**
1420  * Enable/disable compress mode.
1421  *
1422  * @param obj The genlist object
1423  * @param compress The compress mode
1424  * (@c EINA_TRUE = on, @c EINA_FALSE = off). Default is @c EINA_FALSE.
1425  *
1426  * This will enable the compress mode where items are "compressed"
1427  * horizontally to fit the genlist scrollable viewport width. This is
1428  * special for genlist.  Do not rely on
1429  * elm_genlist_horizontal_set() being set to @c ELM_LIST_COMPRESS to
1430  * work as genlist needs to handle it specially.
1431  *
1432  * @see elm_genlist_compress_mode_get()
1433  *
1434  * @ingroup Genlist
1435  */
1436 // XXX: kill this. elm_genlist_height_for_width_mode_set() covers this.
1437 EAPI void                          elm_genlist_compress_mode_set(Evas_Object *obj, Eina_Bool compress);
1438
1439 /**
1440  * Get whether the compress mode is enabled.
1441  *
1442  * @param obj The genlist object
1443  * @return The compress mode
1444  * (@c EINA_TRUE = on, @c EINA_FALSE = off)
1445  *
1446  * @see elm_genlist_compress_mode_set()
1447  *
1448  * @ingroup Genlist
1449  */
1450 EAPI Eina_Bool                     elm_genlist_compress_mode_get(const Evas_Object *obj);
1451
1452 /**
1453  * Enable/disable height-for-width mode.
1454  *
1455  * @param obj The genlist object
1456  * @param height_for_width The height-for-width mode (@c EINA_TRUE = on,
1457  * @c EINA_FALSE = off). Default is @c EINA_FALSE.
1458  *
1459  * With height-for-width mode the item width will be fixed (restricted
1460  * to a minimum of) to the list width when calculating its size in
1461  * order to allow the height to be calculated based on it. This allows,
1462  * for instance, text block to wrap lines if the Edje part is
1463  * configured with "text.min: 0 1".
1464  *
1465  * @note This mode will make list resize slower as it will have to
1466  *       recalculate every item height again whenever the list width
1467  *       changes!
1468  *
1469  * @note When height-for-width mode is enabled, it also enables
1470  *       compress mode (see elm_genlist_compress_mode_set()) and
1471  *       disables homogeneous (see elm_genlist_homogeneous_set()).
1472  *
1473  * @ingroup Genlist
1474  */
1475 //aspect 
1476 //XXX: API name is ambiguous.. How about elm_genlist_mode_fixed_width_set? 
1477 EAPI void                          elm_genlist_height_for_width_mode_set(Evas_Object *obj, Eina_Bool height_for_width);
1478
1479 /**
1480  * Get whether the height-for-width mode is enabled.
1481  *
1482  * @param obj The genlist object
1483  * @return The height-for-width mode (@c EINA_TRUE = on, @c EINA_FALSE =
1484  * off)
1485  *
1486  * @ingroup Genlist
1487  */
1488 //XXX: API name is ambiguous elm_genlist_mode_fixed_width_get() ?????
1489 EAPI Eina_Bool                     elm_genlist_height_for_width_mode_get(const Evas_Object *obj);
1490
1491 /**
1492  * Enable/disable homogeneous mode.
1493  *
1494  * @param obj The genlist object
1495  * @param homogeneous Assume the items within the genlist are of the
1496  * same height and width (EINA_TRUE = on, EINA_FALSE = off). Default is @c
1497  * EINA_FALSE.
1498  *
1499  * This will enable the homogeneous mode where items are of the same
1500  * height and width so that genlist may do the lazy-loading at its
1501  * maximum (which increases the performance for scrolling the list). This
1502  * implies 'compressed' mode.
1503  *
1504  * @see elm_genlist_compress_mode_set()
1505  * @see elm_genlist_homogeneous_get()
1506  *
1507  * @ingroup Genlist
1508  */
1509 EAPI void                          elm_genlist_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous);
1510
1511 /**
1512  * Get whether the homogeneous mode is enabled.
1513  *
1514  * @param obj The genlist object
1515  * @return Assume the items within the genlist are of the same height
1516  * and width (EINA_TRUE = on, EINA_FALSE = off)
1517  *
1518  * @see elm_genlist_homogeneous_set()
1519  *
1520  * @ingroup Genlist
1521  */
1522 EAPI Eina_Bool                     elm_genlist_homogeneous_get(const Evas_Object *obj);
1523
1524 /**
1525  * Set the maximum number of items within an item block
1526  *
1527  * @param obj The genlist object
1528  * @param count Maximum number of items within an item block. Default is 32.
1529  *
1530  * This will configure the block count to tune to the target with particular
1531  * performance matrix.
1532  *
1533  * A block of objects will be used to reduce the number of operations due to
1534  * many objects in the screen. It can determine the visibility, or if the
1535  * object has changed, it theme needs to be updated, etc. doing this kind of
1536  * calculation to the entire block, instead of per object.
1537  *
1538  * The default value for the block count is enough for most lists, so unless
1539  * you know you will have a lot of objects visible in the screen at the same
1540  * time, don't try to change this.
1541  *
1542  * @see elm_genlist_block_count_get()
1543  * @see @ref Genlist_Implementation
1544  *
1545  * @ingroup Genlist
1546  */
1547 EAPI void                          elm_genlist_block_count_set(Evas_Object *obj, int count);
1548
1549 /**
1550  * Get the maximum number of items within an item block
1551  *
1552  * @param obj The genlist object
1553  * @return Maximum number of items within an item block
1554  *
1555  * @see elm_genlist_block_count_set()
1556  *
1557  * @ingroup Genlist
1558  */
1559 EAPI int                           elm_genlist_block_count_get(const Evas_Object *obj);
1560
1561 /**
1562  * Set the timeout in seconds for the longpress event.
1563  *
1564  * @param obj The genlist object
1565  * @param timeout timeout in seconds. Default is elm config value(1.0)
1566  *
1567  * This option will change how long it takes to send an event "longpressed"
1568  * after the mouse down signal is sent to the list. If this event occurs, no
1569  * "clicked" event will be sent.
1570  *
1571  * @warning If you set the longpress timeout value with this API, your genlist
1572  * will not be affected by the longpress value of elementary config value
1573  * later.
1574  *
1575  * @see elm_genlist_longpress_timeout_set()
1576  *
1577  * @ingroup Genlist
1578  */
1579 EAPI void                          elm_genlist_longpress_timeout_set(Evas_Object *obj, double timeout);
1580
1581 /**
1582  * Get the timeout in seconds for the longpress event.
1583  *
1584  * @param obj The genlist object
1585  * @return timeout in seconds
1586  *
1587  * @see elm_genlist_longpress_timeout_get()
1588  *
1589  * @ingroup Genlist
1590  */
1591 EAPI double                        elm_genlist_longpress_timeout_get(const Evas_Object *obj);
1592
1593 /**
1594  * Get the item that is at the x, y canvas coords.
1595  *
1596  * @param obj The genlist object.
1597  * @param x The input x coordinate
1598  * @param y The input y coordinate
1599  * @param posret The position relative to the item returned here
1600  * @return The item at the coordinates or NULL if none
1601  *
1602  * This returns the item at the given coordinates (which are canvas
1603  * relative, not object-relative). If an item is at that coordinate,
1604  * that item handle is returned, and if @p posret is not NULL, the
1605  * integer pointed to is set to a value of -1, 0 or 1, depending if
1606  * the coordinate is on the upper portion of that item (-1), on the
1607  * middle section (0) or on the lower part (1). If NULL is returned as
1608  * an item (no item found there), then posret may indicate -1 or 1
1609  * based if the coordinate is above or below all items respectively in
1610  * the genlist.
1611  *
1612  * @ingroup Genlist
1613  */
1614 EAPI Elm_Object_Item             *elm_genlist_at_xy_item_get(const Evas_Object *obj, Evas_Coord x, Evas_Coord y, int *posret);
1615
1616 /**
1617  * Get the parent item of the given item
1618  *
1619  * @param it The item
1620  * @return The parent of the item or @c NULL if it has no parent.
1621  *
1622  * This returns the item that was specified as parent of the item @p it on
1623  * elm_genlist_item_append() and insertion related functions.
1624  *
1625  * @ingroup Genlist
1626  */
1627 EAPI Elm_Object_Item             *elm_genlist_item_parent_get(const Elm_Object_Item *it);
1628
1629 /**
1630  * Remove all sub-items (children) of the given item
1631  *
1632  * @param it The item
1633  *
1634  * This removes all items that are children (and their descendants) of the
1635  * given item @p it.
1636  *
1637  * @see elm_genlist_clear()
1638  * @see elm_object_item_del()
1639  *
1640  * @ingroup Genlist
1641  */
1642 EAPI void                          elm_genlist_item_subitems_clear(Elm_Object_Item *it);
1643
1644 /**
1645  * Sets the expanded state of an item.
1646  *
1647  * @param it The item
1648  * @param expanded The expanded state (@c EINA_TRUE expanded, @c EINA_FALSE not expanded).
1649  *
1650  * This function flags the item of type #ELM_GENLIST_ITEM_SUBITEMS as
1651  * expanded or not.
1652  *
1653  * The theme will respond to this change visually, and a signal "expanded" or
1654  * "contracted" will be sent from the genlist with a pointer to the item that
1655  * has been expanded/contracted.
1656  *
1657  * Calling this function won't show or hide any child of this item (if it is
1658  * a parent). You must manually delete and create them on the callbacks of
1659  * the "expanded" or "contracted" signals.
1660  *
1661  * @see elm_genlist_item_expanded_get()
1662  *
1663  * @ingroup Genlist
1664  */
1665 EAPI void                          elm_genlist_item_expanded_set(Elm_Object_Item *it, Eina_Bool expanded);
1666
1667 /**
1668  * Get the expanded state of an item
1669  *
1670  * @param it The item
1671  * @return The expanded state
1672  *
1673  * This gets the expanded state of an item.
1674  *
1675  * @see elm_genlist_item_expanded_set()
1676  *
1677  * @ingroup Genlist
1678  */
1679 EAPI Eina_Bool                     elm_genlist_item_expanded_get(const Elm_Object_Item *it);
1680
1681 /**
1682  * Get the depth of expanded item
1683  *
1684  * @param it The genlist item object
1685  * @return The depth of expanded item
1686  *
1687  * @ingroup Genlist
1688  */
1689 EAPI int                           elm_genlist_item_expanded_depth_get(const Elm_Object_Item *it);
1690
1691 /**
1692  * Sets the display only state of an item.
1693  *
1694  * @param it The item
1695  * @param display_only @c EINA_TRUE if the item is display only, @c
1696  * EINA_FALSE otherwise.
1697  *
1698  * A display only item cannot be selected or unselected. It is for
1699  * display only and not selecting or otherwise clicking, dragging
1700  * etc. by the user, thus finger size rules will not be applied to
1701  * this item.
1702  *
1703  * It's good to set group index items to display only state.
1704  *
1705  * @see elm_genlist_item_display_only_get()
1706  *
1707  * @ingroup Genlist
1708  */
1709 //XXX: elm_genlist_item_no_select_mode_set()?
1710 EAPI void                          elm_genlist_item_display_only_set(Elm_Object_Item *it, Eina_Bool display_only);
1711
1712 /**
1713  * Get the display only state of an item
1714  *
1715  * @param it The item
1716  * @return @c EINA_TRUE if the item is display only, @c
1717  * EINA_FALSE otherwise.
1718  *
1719  * @see elm_genlist_item_display_only_set()
1720  *
1721  * @ingroup Genlist
1722  */
1723 //XXX: elm_genlist_item_no_select_mode_get()?
1724 EAPI Eina_Bool                     elm_genlist_item_display_only_get(const Elm_Object_Item *it);
1725
1726 /**
1727  * Unset all contents fetched by the item class
1728  *
1729  * @param it The item
1730  * @param l The contents list to return
1731  *
1732  * This instructs genlist to release references to contents in the item,
1733  * meaning that they will no longer be managed by genlist and are
1734  * floating "orphans" that can be re-used elsewhere if the user wants
1735  * to.
1736  *
1737  * @ingroup Genlist
1738  */
1739 EAPI void                          elm_genlist_item_all_contents_unset(Elm_Object_Item *it, Eina_List **l);
1740
1741 /**
1742  * Promote an item to the top of the list
1743  *
1744  * @param it The item
1745  *
1746  * @ingroup Genlist
1747  */
1748 EAPI void                          elm_genlist_item_promote(Elm_Object_Item *it);
1749
1750 /**
1751  * Demote an item to the end of the list
1752  *
1753  * @param it The item
1754  *
1755  * @ingroup Genlist
1756  */
1757 EAPI void                          elm_genlist_item_demote(Elm_Object_Item *it);
1758
1759 /**
1760  * Update the part of an item
1761  *
1762  * @param it The item
1763  * @param parts The name of item's part
1764  * @param itf The type of item's part type
1765  *
1766  * This updates an item's part by calling item's fetching functions again
1767  * to get the contents, texts and states. Use this when the original
1768  * item data has changed and the changes are desired to be reflected.
1769  * Second parts argument is used for globbing to match '*', '?', and '.'
1770  * It can be used at updating multi fields.
1771  *
1772  * Use elm_genlist_realized_items_update() to update an item's all
1773  * property.
1774  *
1775  * @see elm_genlist_item_update()
1776  *
1777  * @ingroup Genlist
1778  */
1779 EAPI void                          elm_genlist_item_fields_update(Elm_Object_Item *it, const char *parts, Elm_Genlist_Item_Field_Type itf);
1780
1781 /**
1782  * Activate a genlist mode on an item
1783  *
1784  * @param it The genlist item
1785  * @param mode_type Mode name
1786  * @param mode_set Boolean to define set or unset mode.
1787  *
1788  * A genlist mode is a different way of selecting an item. Once a mode is
1789  * activated on an item, any other selected item is immediately unselected.
1790  * This feature provides an easy way of implementing a new kind of animation
1791  * for selecting an item, without having to entirely rewrite the item style
1792  * theme. However, the elm_genlist_selected_* API can't be used to get what
1793  * item is activate for a mode.
1794  *
1795  * The current item style will still be used, but applying a genlist mode to
1796  * an item will select it using a different kind of animation.
1797  *
1798  * The current active item for a mode can be found by
1799  * elm_genlist_mode_item_get().
1800  *
1801  * The characteristics of genlist mode are:
1802  * - Only one mode can be active at any time, and for only one item.
1803  * - Genlist handles deactivating other items when one item is activated.
1804  * - A mode is defined in the genlist theme (edc), and more modes can easily
1805  *   be added.
1806  * - A mode style and the genlist item style are different things. They
1807  *   can be combined to provide a default style to the item, with some kind
1808  *   of animation for that item when the mode is activated.
1809  *
1810  * When a mode is activated on an item, a new view for that item is created.
1811  * The theme of this mode defines the animation that will be used to transit
1812  * the item from the old view to the new view. This second (new) view will be
1813  * active for that item while the mode is active on the item, and will be
1814  * destroyed after the mode is totally deactivated from that item.
1815  *
1816  * @see elm_genlist_mode_get()
1817  * @see elm_genlist_mode_item_get()
1818  *
1819  * @ingroup Genlist
1820  */
1821 //XXX: How bout elm_genlist_effect_mode_set 
1822 EAPI void                          elm_genlist_item_mode_set(Elm_Object_Item *it, const char *mode_type, Eina_Bool mode_set);
1823
1824 /**
1825  * Get the last (or current) genlist mode used.
1826  *
1827  * @param obj The genlist object
1828  *
1829  * This function just returns the name of the last used genlist mode. It will
1830  * be the current mode if it's still active.
1831  *
1832  * @see elm_genlist_item_mode_set()
1833  * @see elm_genlist_mode_item_get()
1834  *
1835  * @ingroup Genlist
1836  */
1837 //XXX: looks weird... set the mode type to item and get the mode type from object...
1838 EAPI const char                   *elm_genlist_mode_type_get(const Evas_Object *obj);
1839
1840 /**
1841  * Get active genlist mode item
1842  *
1843  * @param obj The genlist object
1844  * @return The active item for that current mode. Or @c NULL if no item is
1845  * activated with any mode.
1846  *
1847  * This function returns the item that was activated with a mode, by the
1848  * function elm_genlist_item_mode_set().
1849  *
1850  * @see elm_genlist_item_mode_set()
1851  * @see elm_genlist_mode_get()
1852  *
1853  * @ingroup Genlist
1854  */
1855 EAPI const Elm_Object_Item       *elm_genlist_mode_item_get(const Evas_Object *obj);
1856
1857 /**
1858  * Set reorder mode
1859  *
1860  * @param obj The genlist object
1861  * @param reorder_mode The reorder mode
1862  * (EINA_TRUE = on, EINA_FALSE = off)
1863  *
1864  * @ingroup Genlist
1865  */
1866 EAPI void                          elm_genlist_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode);
1867
1868 /**
1869  * Get the reorder mode
1870  *
1871  * @param obj The genlist object
1872  * @return The reorder mode
1873  * (EINA_TRUE = on, EINA_FALSE = off)
1874  *
1875  * @ingroup Genlist
1876  */
1877 EAPI Eina_Bool                     elm_genlist_reorder_mode_get(const Evas_Object *obj);
1878
1879 /**
1880  * Get the Item's Type 
1881  *
1882  * @param it The genlist item
1883  * @return The item type.
1884  *
1885  * This function returns the item's type. Normally the item's type.
1886  * If it failed, return value is ELM_GENLIST_ITEM_MAX
1887  *
1888  * @ingroup Genlist
1889  */
1890 EAPI Elm_Genlist_Item_Type        elm_genlist_item_type_get(const Elm_Object_Item *it);
1891
1892 /**
1893  * Set Genlist edit mode
1894  *
1895  * This sets Genlist edit mode.
1896  *
1897  * @param obj The Genlist object
1898  * @param The edit mode status
1899  * (EINA_TRUE = edit mode, EINA_FALSE = normal mode
1900  *
1901  * @ingroup Genlist
1902  */
1903 //XXX: elm_genlist_effect_mode_set();
1904 EAPI void               elm_genlist_edit_mode_set(Evas_Object *obj, Eina_Bool edit_mode);
1905
1906 /**
1907  * Get Genlist edit mode
1908  *
1909  * @param obj The genlist object
1910  * @return The edit mode status
1911  * (EINA_TRUE = edit mode, EINA_FALSE = normal mode
1912  *
1913  * @ingroup Genlist
1914  */
1915 //XXX: elm_genlist_all_items_effect_mode_get();
1916 EAPI Eina_Bool          elm_genlist_edit_mode_get(const Evas_Object *obj);
1917
1918 /**
1919  * Set the flip state of a given genlist item.
1920  *
1921  * @param it The genlist item object
1922  * @param flip The flip mode
1923  * (EINA_TRUE = on, EINA_FALSE = off)
1924  *
1925  * This function sets the flip state of a given genlist item.
1926  * Flip mode overrides current item object.
1927  * It can be used for on-the-fly item replace.
1928  * Flip mode can be used with/without edit mode.
1929  *
1930  * @see elm_genlist_item_flip_get()
1931  *
1932  * @ingroup Genlist
1933  */
1934
1935 EAPI void elm_genlist_item_flip_set(Elm_Object_Item *it, Eina_Bool flip);
1936
1937 /**
1938  * Get the flip state of a given genlist item.
1939  *
1940  * @param it The genlist item object
1941  *
1942  * This function returns the flip state of a given genlist item.
1943  * If the parameter is invalid, it returns EINA_FALSE.
1944  *
1945  * @see elm_genlist_item_flip_set()
1946  *
1947  * @ingroup Genlist
1948  */
1949
1950 EAPI Eina_Bool elm_genlist_item_flip_get(const Elm_Object_Item *it);
1951
1952 /**
1953  * @}
1954  */