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