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