1 /**
2  * Add a new genlist widget to the given parent Elementary
3  * (container) object
4  *
5  * @param parent The parent object
6  * @return a new genlist widget handle or @c NULL, on errors
7  *
8  * This function inserts a new genlist widget on the canvas.
9  *
10  * @see elm_genlist_item_append()
11  * @see elm_object_item_del()
12  * @see elm_genlist_clear()
13  *
14  * @ingroup Elm_Genlist_Group
15  */
16 EAPI Evas_Object                  *elm_genlist_add(Evas_Object *parent);
17 
18 /**
19  * Get the nth item, in a given genlist widget, placed at position @p nth, in
20  * its internal items list
21  *
22  * @param obj The genlist object
23  * @param nth The number of the item to grab (0 being the first)
24  *
25  * @return The item stored in @p obj at position @p nth or @c NULL, if there's
26  * no item with that index (and on errors)
27  *
28  * @ingroup Elm_Genlist_Group
29  * @since 1.8
30  */
31 EAPI Elm_Object_Item *
32 elm_genlist_nth_item_get(const Evas_Object *obj, unsigned int nth);
33 
34 #include "elm_genlist_item_eo.legacy.h"
35 #include "elm_genlist_eo.legacy.h"
36