elementary: factorise code.
[framework/uifw/elementary.git] / src / lib / elm_genlist.c
1 #include <Elementary.h>
2 #include <Elementary_Cursor.h>
3 #include "elm_priv.h"
4
5 #define SWIPE_MOVES         12
6 #define MAX_ITEMS_PER_BLOCK 32
7
8 /**
9  * @defgroup Genlist Genlist
10  *
11  * The aim was to have more expansive list than the simple list in
12  * Elementary that could have more flexible items and allow many more entries
13  * while still being fast and low on memory usage. At the same time it was
14  * also made to be able to do tree structures. But the price to pay is more
15  * complex when it comes to usage. If all you want is a simple list with
16  * icons and a single label, use the normal List object.
17  *
18  * Genlist has a fairly large API, mostly because it's relatively complex,
19  * trying to be both expansive, powerful and efficient. First we will begin
20  * an overview on the theory behind genlist.
21  *
22  * Evas tracks every object you create. Every time it processes an event
23  * (mouse move, down, up etc.) it needs to walk through objects and find out
24  * what event that affects. Even worse every time it renders display updates,
25  * in order to just calculate what to re-draw, it needs to walk through many
26  * many many objects. Thus, the more objects you keep active, the more
27  * overhead Evas has in just doing its work. It is advisable to keep your
28  * active objects to the minimum working set you need. Also remember that
29  * object creation and deletion carries an overhead, so there is a
30  * middle-ground, which is not easily determined. But don't keep massive lists
31  * of objects you can't see or use. Genlist does this with list objects. It
32  * creates and destroys them dynamically as you scroll around. It groups them
33  * into blocks so it can determine the visibility etc. of a whole block at
34  * once as opposed to having to walk the whole list. This 2-level list allows
35  * for very large numbers of items to be in the list (tests have used up to
36  * 2,000,000 items). Also genlist employs a queue for adding items. As items
37  * may be different sizes, every item added needs to be calculated as to its
38  * size and thus this presents a lot of overhead on populating the list, this
39  * genlist employs a queue. Any item added is queued and spooled off over
40  * time, actually appearing some time later, so if your list has many members
41  * you may find it takes a while for them to all appear, with your process
42  * consuming a lot of CPU while it is busy spooling.
43  *
44  * Genlist also implements a tree structure, but it does so with callbacks to
45  * the application, with the application filling in tree structures when
46  * requested (allowing for efficient building of a very deep tree that could
47  * even be used for file-management). See the above smart signal callbacks for
48  * details.
49  *
50  * An item in the genlist world can have 0 or more text labels (they can be
51  * regular text or textblock - that's up to the style to determine), 0 or
52  * more icons (which are simply objects swallowed into the genlist item) and
53  * 0 or more boolean states that can be used for check, radio or other
54  * indicators by the edje theme style. An item may be one of several styles
55  * (Elementary provides 4 by default - "default", "double_label", "group_index"
56  * and "icon_top_text_bottom", but this can be extended by system or
57  * application custom themes/overlays/extensions).
58  *
59  * In order to implement the ability to add and delete items on the fly,
60  * Genlist implements a class/callback system where the application provides
61  * a structure with information about that type of item (genlist may contain
62  * multiple different items with different classes, states and styles).
63  * Genlist will call the functions in this struct (methods) when an item is
64  * "realized" (that is created dynamically while scrolling). All objects will
65  * simply be deleted  when no longer needed with evas_object_del(). The
66  * Elm_Genlist_Item_Class structure contains the following members:
67  *
68  * item_style - This is a constant string and simply defines the name of the
69  * item style. It must be specified and the default should be "default".
70  *
71  * func.label_get - This function is called when an actual item object is
72  * created. The data parameter is the data parameter passed to
73  * elm_genlist_item_append() and related item creation functions. The obj
74  * parameter is the genlist object and the part parameter is the string name
75  * of the text part in the edje design that is listed as one of the possible
76  * labels that can be set. This function must return a strudup()'ed string as
77  * the caller will free() it when done.
78  *
79  * func.icon_get - This function is called when an actual item object is
80  * created. The data parameter is the data parameter passed to
81  * elm_genlist_item_append() and related item creation functions. The obj
82  * parameter is the genlist object and the part parameter is the string name
83  * of the icon part in the edje design that is listed as one of the possible
84  * icons that can be set. This must return NULL for no object or a valid
85  * object. The object will be deleted by genlist on shutdown or when the item
86  * is unrealized.
87  *
88  * func.state_get - This function is called when an actual item object is
89  * created. The data parameter is the data parameter passed to
90  * elm_genlist_item_append() and related item creation functions. The obj
91  * parameter is the genlist object and the part parameter is the string name
92  * of the state part in the edje design that is listed as one of the possible
93  * states that can be set. Return 0 for false or 1 for true. Genlist will
94  * emit a signal to the edje object with "elm,state,XXX,active" "elm" when
95  * true (the default is false), where XXX is the name of the part.
96  *
97  * func.del - This is called when elm_genlist_item_del() is called on an
98  * item, elm_genlist_clear() is called on the genlist, or
99  * elm_genlist_item_subitems_clear() is called to clear sub-items. This is
100  * intended for use when actual genlist items are deleted, so any backing
101  * data attached to the item (e.g. its data parameter on creation) can be
102  * deleted.
103  *
104  * Items can be added by several calls. All of them return a Elm_Genlist_Item
105  * handle that is an internal member inside the genlist. They all take a data
106  * parameter that is meant to be used for a handle to the applications
107  * internal data (eg the struct with the original item data). The parent
108  * parameter is the parent genlist item this belongs to if it is a tree or
109  * an indexed group, and NULL if there is no parent. The flags can be a bitmask
110  * of ELM_GENLIST_ITEM_NONE, ELM_GENLIST_ITEM_SUBITEMS and
111  * ELM_GENLIST_ITEM_GROUP. If ELM_GENLIST_ITEM_SUBITEMS is set then this item
112  * is displayed as an item that is able to expand and have child items.
113  * If ELM_GENLIST_ITEM_GROUP is set then this item is group idex item that is
114  * displayed at the top until the next group comes. The func parameter is a
115  * convenience callback that is called when the item is selected and the data
116  * parameter will be the func_data parameter, obj be the genlist object and
117  * event_info will be the genlist item.
118  *
119  * elm_genlist_item_append() appends an item to the end of the list, or if
120  * there is a parent, to the end of all the child items of the parent.
121  * elm_genlist_item_prepend() is the same but prepends to the beginning of
122  * the list or children list. elm_genlist_item_insert_before() inserts at
123  * item before another item and elm_genlist_item_insert_after() inserts after
124  * the indicated item.
125  *
126  * The application can clear the list with elm_genlist_clear() which deletes
127  * all the items in the list and elm_genlist_item_del() will delete a specific
128  * item. elm_genlist_item_subitems_clear() will clear all items that are
129  * children of the indicated parent item.
130  *
131  * If the application wants multiple items to be able to be selected,
132  * elm_genlist_multi_select_set() can enable this. If the list is
133  * single-selection only (the default), then elm_genlist_selected_item_get()
134  * will return the selected item, if any, or NULL I none is selected. If the
135  * list is multi-select then elm_genlist_selected_items_get() will return a
136  * list (that is only valid as long as no items are modified (added, deleted,
137  * selected or unselected)).
138  *
139  * To help inspect list items you can jump to the item at the top of the list
140  * with elm_genlist_first_item_get() which will return the item pointer, and
141  * similarly elm_genlist_last_item_get() gets the item at the end of the list.
142  * elm_genlist_item_next_get() and elm_genlist_item_prev_get() get the next
143  * and previous items respectively relative to the indicated item. Using
144  * these calls you can walk the entire item list/tree. Note that as a tree
145  * the items are flattened in the list, so elm_genlist_item_parent_get() will
146  * let you know which item is the parent (and thus know how to skip them if
147  * wanted).
148  *
149  * There are also convenience functions. elm_genlist_item_genlist_get() will
150  * return the genlist object the item belongs to. elm_genlist_item_show()
151  * will make the scroller scroll to show that specific item so its visible.
152  * elm_genlist_item_data_get() returns the data pointer set by the item
153  * creation functions.
154  *
155  * If an item changes (state of boolean changes, label or icons change),
156  * then use elm_genlist_item_update() to have genlist update the item with
157  * the new state. Genlist will re-realize the item thus call the functions
158  * in the _Elm_Genlist_Item_Class for that item.
159  *
160  * To programmatically (un)select an item use elm_genlist_item_selected_set().
161  * To get its selected state use elm_genlist_item_selected_get(). Similarly
162  * to expand/contract an item and get its expanded state, use
163  * elm_genlist_item_expanded_set() and elm_genlist_item_expanded_get(). And
164  * again to make an item disabled (unable to be selected and appear
165  * differently) use elm_genlist_item_disabled_set() to set this and
166  * elm_genlist_item_disabled_get() to get the disabled state.
167  *
168  * In general to indicate how the genlist should expand items horizontally to
169  * fill the list area, use elm_genlist_horizontal_mode_set(). Valid modes are
170  * ELM_LIST_LIMIT and ELM_LIST_SCROLL . The default is ELM_LIST_SCROLL. This
171  * mode means that if items are too wide to fit, the scroller will scroll
172  * horizontally. Otherwise items are expanded to fill the width of the
173  * viewport of the scroller. If it is ELM_LIST_LIMIT, items will be expanded
174  * to the viewport width and limited to that size. This can be combined with
175  * a different style that uses edjes' ellipsis feature (cutting text off like
176  * this: "tex...").
177  *
178  * Items will only call their selection func and callback when first becoming
179  * selected. Any further clicks will do nothing, unless you enable always
180  * select with elm_genlist_always_select_mode_set(). This means even if
181  * selected, every click will make the selected callbacks be called.
182  * elm_genlist_no_select_mode_set() will turn off the ability to select
183  * items entirely and they will neither appear selected nor call selected
184  * callback functions.
185  *
186  * Remember that you can create new styles and add your own theme augmentation
187  * per application with elm_theme_extension_add(). If you absolutely must
188  * have a specific style that overrides any theme the user or system sets up
189  * you can use elm_theme_overlay_add() to add such a file.
190  *
191  * Signals that you can add callbacks for are:
192  *
193  * "clicked,double" - This is called when a user has double-clicked an item. The
194  *                    event_info parameter is the genlist item that was double-c
195  *                    licked.
196  * "selected" - This is called when a user has made an item selected. The
197  *              event_info parameter is the genlist item that was selected.
198  * "unselected" - This is called when a user has made an item unselected. The
199  *                 event_info parameter is the genlist item that was unselected.
200  * "expanded" - This is called when elm_genlist_item_expanded_set() is called
201  *              and the item is now meant to be expanded. The event_info
202  *              parameter is the genlist item that was indicated to expand. It
203  *              is the job of this callback to then fill in the child items.
204  * "contracted" - This is called when elm_genlist_item_expanded_set() is called
205  *                and the item is now meant to be contracted. The event_info
206  *                parameter is the genlist item that was indicated to contract.
207  *                It is the job of this callback to then delete the child items.
208  * "expand,request" - This is called when a user has indicated they want to
209  *                    expand a tree branch item. The callback should decide if
210  *                    the item can expand (has any children) and then call
211  *                    elm_genlist_item_expanded_set() appropriately to set the
212  *                    state. The event_info parameter is the genlist item that
213  *                    was indicated to expand.
214  * "contract,request" - This is called when a user has indicated they want to
215  *                      contract a tree branch item. The callback should decide
216  *                      if the item can contract (has any children) and then
217  *                      call elm_genlist_item_expanded_set() appropriately to
218  *                      set the state. The event_info parameter is the genlist
219  *                      item that was indicated to contract.
220  * "realized" - This is called when the item in the list is created as a real
221  *              evas object. event_info parameter is the genlist item that was
222  *              created. The object may be deleted at any time, so it is up to
223  *              the caller to not use the object pointer from
224  *              elm_genlist_item_object_get() in a way  where it may point to
225  *              freed objects.
226  * "unrealized" - This is called just before an item is unrealized. After this
227  *                call icon objects provided will be deleted and the item object
228  *                itself delete or be put into a floating cache.
229  * "drag,start,up" - This is called when the item in the list has been dragged
230  *                   (not scrolled) up.
231  * "drag,start,down" - This is called when the item in the list has been dragged
232  *                     (not scrolled) down.
233  * "drag,start,left" - This is called when the item in the list has been dragged
234  *                     (not scrolled) left.
235  * "drag,start,right" - This is called when the item in the list has been
236  *                      dragged (not scrolled) right.
237  * "drag,stop" - This is called when the item in the list has stopped being
238  *               dragged.
239  * "drag" - This is called when the item in the list is being dragged.
240  * "longpressed" - This is called when the item is pressed for a certain amount
241  *                 of time. By default it's 1 second.
242  * "scroll,edge,top" - This is called when the genlist is scrolled until the
243  *                     top edge.
244  * "scroll,edge,bottom" - This is called when the genlist is scrolled until the
245  *                         bottom edge.
246  * "scroll,edge,left" - This is called when the genlist is scrolled until the
247  *                      left edge.
248  * "scroll,edge,right" - This is called when the genlist is scrolled until the
249  *                       right edge.
250  * "multi,swipe,left" - This is called when the genlist is multi-touch swiped
251  *                       left.
252  * "multi,swipe,right" - This is called when the genlist is multi-touch swiped
253  *                       right.
254  * "multi,swipe,up" - This is called when the genlist is multi-touch swiped up.
255  * "multi,swipe,down" - This is called when the genlist is multi-touch swiped
256  *                      down.
257  * "multi,pinch,out" - This is called when the genlist is multi-touch pinched
258  *                     out.
259  * "multi,pinch,in" - This is called when the genlist is multi-touch pinched in.
260  */
261
262 typedef struct _Widget_Data Widget_Data;
263 typedef struct _Item_Block  Item_Block;
264 typedef struct _Pan         Pan;
265 typedef struct _Item_Cache  Item_Cache;
266
267 struct _Widget_Data
268 {
269    Evas_Object      *obj, *scr, *pan_smart;
270    Eina_Inlist      *items, *blocks;
271    Eina_List        *group_items;
272    Pan              *pan;
273    Evas_Coord        pan_x, pan_y, w, h, minw, minh, realminw, prev_viewport_w;
274    Ecore_Job        *calc_job, *update_job;
275    Ecore_Idler      *queue_idler, *must_recalc_idler;
276    Eina_List        *queue, *selected;
277    Elm_Genlist_Item *show_item, *last_selected_item, *anchor_item, *mode_item;
278    Eina_Inlist      *item_cache;
279    Evas_Coord        anchor_y;
280    Elm_List_Mode     mode;
281    Ecore_Timer      *multi_timer, *scr_hold_timer;
282    const char       *mode_type;
283    Evas_Coord        prev_x, prev_y, prev_mx, prev_my;
284    Evas_Coord        cur_x, cur_y, cur_mx, cur_my;
285    Eina_Bool         mouse_down : 1;
286    Eina_Bool         multi_down : 1;
287    Eina_Bool         multi_timeout : 1;
288    Eina_Bool         multitouched : 1;
289    Eina_Bool         on_hold : 1;
290    Eina_Bool         multi : 1;
291    Eina_Bool         always_select : 1;
292    Eina_Bool         longpressed : 1;
293    Eina_Bool         wasselected : 1;
294    Eina_Bool         no_select : 1;
295    Eina_Bool         bring_in : 1;
296    Eina_Bool         compress : 1;
297    Eina_Bool         height_for_width : 1;
298    Eina_Bool         homogeneous : 1;
299    Eina_Bool         clear_me : 1;
300    Eina_Bool         swipe : 1;
301    struct
302    {
303       Evas_Coord x, y;
304    } history[SWIPE_MOVES];
305    int               multi_device;
306    int               item_cache_count;
307    int               item_cache_max;
308    int               movements;
309    int               walking;
310    int               item_width;
311    int               item_height;
312    int               group_item_width;
313    int               group_item_height;
314    int               max_items_per_block;
315    double            longpress_timeout;
316 };
317
318 struct _Item_Block
319 {
320    EINA_INLIST;
321    int          count;
322    int          num;
323    Widget_Data *wd;
324    Eina_List   *items;
325    Evas_Coord   x, y, w, h, minw, minh;
326    Eina_Bool    want_unrealize : 1;
327    Eina_Bool    realized : 1;
328    Eina_Bool    changed : 1;
329    Eina_Bool    updateme : 1;
330    Eina_Bool    showme : 1;
331    Eina_Bool    must_recalc : 1;
332 };
333
334 struct _Elm_Genlist_Item
335 {
336    Elm_Widget_Item               base;
337    EINA_INLIST;
338    Widget_Data                  *wd;
339    Item_Block                   *block;
340    Eina_List                    *items;
341    Evas_Coord                    x, y, w, h, minw, minh;
342    const Elm_Genlist_Item_Class *itc;
343    Elm_Genlist_Item             *parent;
344    Elm_Genlist_Item             *group_item;
345    Elm_Genlist_Item_Flags        flags;
346    struct
347    {
348       Evas_Smart_Cb func;
349       const void   *data;
350    } func;
351
352    Evas_Object                  *spacer;
353    Eina_List                    *labels, *icons, *states, *icon_objs;
354    Eina_List                    *mode_labels, *mode_icons, *mode_states, *mode_icon_objs;
355    Ecore_Timer                  *long_timer;
356    Ecore_Timer                  *swipe_timer;
357    Evas_Coord                    dx, dy;
358    Evas_Coord                    scrl_x, scrl_y;
359
360    Elm_Genlist_Item             *rel;
361    Evas_Object                  *mode_view;
362
363    struct
364    {
365       const void                 *data;
366       Elm_Tooltip_Item_Content_Cb content_cb;
367       Evas_Smart_Cb               del_cb;
368       const char                 *style;
369    } tooltip;
370
371    const char                   *mouse_cursor;
372
373    int                           relcount;
374    int                           walking;
375    int                           expanded_depth;
376    int                           order_num_in;
377
378    Eina_Bool                     before : 1;
379
380    Eina_Bool                     want_unrealize : 1;
381    Eina_Bool                     want_realize : 1;
382    Eina_Bool                     realized : 1;
383    Eina_Bool                     selected : 1;
384    Eina_Bool                     highlighted : 1;
385    Eina_Bool                     expanded : 1;
386    Eina_Bool                     disabled : 1;
387    Eina_Bool                     display_only : 1;
388    Eina_Bool                     mincalcd : 1;
389    Eina_Bool                     queued : 1;
390    Eina_Bool                     showme : 1;
391    Eina_Bool                     delete_me : 1;
392    Eina_Bool                     down : 1;
393    Eina_Bool                     dragging : 1;
394    Eina_Bool                     updateme : 1;
395    Eina_Bool                     nocache : 1;
396    Eina_Bool                     stacking_even : 1;
397    Eina_Bool                     nostacking : 1;
398 };
399
400 struct _Item_Cache
401 {
402    EINA_INLIST;
403
404    Evas_Object *base_view, *spacer;
405
406    const char  *item_style; // it->itc->item_style
407    Eina_Bool    tree : 1; // it->flags & ELM_GENLIST_ITEM_SUBITEMS
408    Eina_Bool    compress : 1; // it->wd->compress
409
410    Eina_Bool    selected : 1; // it->selected
411    Eina_Bool    disabled : 1; // it->disabled
412    Eina_Bool    expanded : 1; // it->expanded
413 };
414
415 #define ELM_GENLIST_ITEM_FROM_INLIST(item) \
416   ((item) ? EINA_INLIST_CONTAINER_GET(item, Elm_Genlist_Item) : NULL)
417
418 struct _Pan
419 {
420    Evas_Object_Smart_Clipped_Data __clipped_data;
421    Widget_Data                   *wd;
422    Ecore_Job                     *resize_job;
423 };
424
425 static const char *widtype = NULL;
426 static void      _item_cache_zero(Widget_Data *wd);
427 static void      _del_hook(Evas_Object *obj);
428 static void      _mirrored_set(Evas_Object *obj,
429                                Eina_Bool    rtl);
430 static void      _theme_hook(Evas_Object *obj);
431 static void      _show_region_hook(void        *data,
432                                    Evas_Object *obj);
433 static void      _sizing_eval(Evas_Object *obj);
434 static void      _item_unrealize(Elm_Genlist_Item *it, Eina_Bool calc);
435 static void      _item_block_unrealize(Item_Block *itb);
436 static void      _calc_job(void *data);
437 static void      _on_focus_hook(void        *data,
438                                 Evas_Object *obj);
439 static Eina_Bool _item_multi_select_up(Widget_Data *wd);
440 static Eina_Bool _item_multi_select_down(Widget_Data *wd);
441 static Eina_Bool _item_single_select_up(Widget_Data *wd);
442 static Eina_Bool _item_single_select_down(Widget_Data *wd);
443 static Eina_Bool _event_hook(Evas_Object       *obj,
444                              Evas_Object       *src,
445                              Evas_Callback_Type type,
446                              void              *event_info);
447 static void      _signal_emit_hook(Evas_Object *obj,
448                                    const char *emission,
449                                    const char *source);
450 static Eina_Bool _deselect_all_items(Widget_Data *wd);
451 static void      _pan_calculate(Evas_Object *obj);
452 static void      _item_position(Elm_Genlist_Item *it, Evas_Object *obj);
453 static void      _mode_item_realize(Elm_Genlist_Item *it);
454 static void      _mode_item_unrealize(Elm_Genlist_Item *it);
455 static void      _item_mode_set(Elm_Genlist_Item *it);
456 static void      _item_mode_unset(Widget_Data *wd);
457
458 static Evas_Smart_Class _pan_sc = EVAS_SMART_CLASS_INIT_VERSION;
459
460 static Eina_Bool
461 _event_hook(Evas_Object       *obj,
462             Evas_Object       *src __UNUSED__,
463             Evas_Callback_Type type,
464             void              *event_info)
465 {
466    if (type != EVAS_CALLBACK_KEY_DOWN) return EINA_FALSE;
467    Evas_Event_Key_Down *ev = event_info;
468    Widget_Data *wd = elm_widget_data_get(obj);
469    if (!wd) return EINA_FALSE;
470    if (!wd->items) return EINA_FALSE;
471    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return EINA_FALSE;
472    if (elm_widget_disabled_get(obj)) return EINA_FALSE;
473
474    Elm_Genlist_Item *it = NULL;
475    Evas_Coord x = 0;
476    Evas_Coord y = 0;
477    Evas_Coord step_x = 0;
478    Evas_Coord step_y = 0;
479    Evas_Coord v_w = 0;
480    Evas_Coord v_h = 0;
481    Evas_Coord page_x = 0;
482    Evas_Coord page_y = 0;
483
484    elm_smart_scroller_child_pos_get(wd->scr, &x, &y);
485    elm_smart_scroller_step_size_get(wd->scr, &step_x, &step_y);
486    elm_smart_scroller_page_size_get(wd->scr, &page_x, &page_y);
487    elm_smart_scroller_child_viewport_size_get(wd->scr, &v_w, &v_h);
488
489    if ((!strcmp(ev->keyname, "Left")) || (!strcmp(ev->keyname, "KP_Left")))
490      {
491         x -= step_x;
492      }
493    else if ((!strcmp(ev->keyname, "Right")) ||
494             (!strcmp(ev->keyname, "KP_Right")))
495      {
496         x += step_x;
497      }
498    else if ((!strcmp(ev->keyname, "Up")) || (!strcmp(ev->keyname, "KP_Up")))
499      {
500         if (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
501              (_item_multi_select_up(wd)))
502             || (_item_single_select_up(wd)))
503           {
504              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
505              return EINA_TRUE;
506           }
507         else
508           y -= step_y;
509      }
510    else if ((!strcmp(ev->keyname, "Down")) || (!strcmp(ev->keyname, "KP_Down")))
511      {
512         if (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
513              (_item_multi_select_down(wd)))
514             || (_item_single_select_down(wd)))
515           {
516              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
517              return EINA_TRUE;
518           }
519         else
520           y += step_y;
521      }
522    else if ((!strcmp(ev->keyname, "Home")) ||
523             (!strcmp(ev->keyname, "KP_Home")))
524      {
525         it = elm_genlist_first_item_get(obj);
526         elm_genlist_item_bring_in(it);
527         ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
528         return EINA_TRUE;
529      }
530    else if ((!strcmp(ev->keyname, "End")) ||
531             (!strcmp(ev->keyname, "KP_End")))
532      {
533         it = elm_genlist_last_item_get(obj);
534         elm_genlist_item_bring_in(it);
535         ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
536         return EINA_TRUE;
537      }
538    else if ((!strcmp(ev->keyname, "Prior")) ||
539             (!strcmp(ev->keyname, "KP_Prior")))
540      {
541         if (page_y < 0)
542           y -= -(page_y * v_h) / 100;
543         else
544           y -= page_y;
545      }
546    else if ((!strcmp(ev->keyname, "Next")) ||
547             (!strcmp(ev->keyname, "KP_Next")))
548      {
549         if (page_y < 0)
550           y += -(page_y * v_h) / 100;
551         else
552           y += page_y;
553      }
554    else if(((!strcmp(ev->keyname, "Return")) ||
555             (!strcmp(ev->keyname, "KP_Enter")) ||
556             (!strcmp(ev->keyname, "space")))
557            && (!wd->multi) && (wd->selected))
558      {
559         it = elm_genlist_selected_item_get(obj);
560         elm_genlist_item_expanded_set(it,
561                                       !elm_genlist_item_expanded_get(it));
562      }
563    else if (!strcmp(ev->keyname, "Escape"))
564      {
565         if (!_deselect_all_items(wd)) return EINA_FALSE;
566         ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
567         return EINA_TRUE;
568      }
569    else return EINA_FALSE;
570
571    ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
572    elm_smart_scroller_child_pos_set(wd->scr, x, y);
573    return EINA_TRUE;
574 }
575
576 static Eina_Bool
577 _deselect_all_items(Widget_Data *wd)
578 {
579    if (!wd->selected) return EINA_FALSE;
580    while(wd->selected)
581      elm_genlist_item_selected_set(wd->selected->data, EINA_FALSE);
582
583    return EINA_TRUE;
584 }
585
586 static Eina_Bool
587 _item_multi_select_up(Widget_Data *wd)
588 {
589    if (!wd->selected) return EINA_FALSE;
590    if (!wd->multi) return EINA_FALSE;
591
592    Elm_Genlist_Item *prev = elm_genlist_item_prev_get(wd->last_selected_item);
593    if (!prev) return EINA_TRUE;
594
595    if (elm_genlist_item_selected_get(prev))
596      {
597         elm_genlist_item_selected_set(wd->last_selected_item, EINA_FALSE);
598         wd->last_selected_item = prev;
599         elm_genlist_item_show(wd->last_selected_item);
600      }
601    else
602      {
603         elm_genlist_item_selected_set(prev, EINA_TRUE);
604         elm_genlist_item_show(prev);
605      }
606    return EINA_TRUE;
607 }
608
609 static Eina_Bool
610 _item_multi_select_down(Widget_Data *wd)
611 {
612    if (!wd->selected) return EINA_FALSE;
613    if (!wd->multi) return EINA_FALSE;
614
615    Elm_Genlist_Item *next = elm_genlist_item_next_get(wd->last_selected_item);
616    if (!next) return EINA_TRUE;
617
618    if (elm_genlist_item_selected_get(next))
619      {
620         elm_genlist_item_selected_set(wd->last_selected_item, EINA_FALSE);
621         wd->last_selected_item = next;
622         elm_genlist_item_show(wd->last_selected_item);
623      }
624    else
625      {
626         elm_genlist_item_selected_set(next, EINA_TRUE);
627         elm_genlist_item_show(next);
628      }
629    return EINA_TRUE;
630 }
631
632 static Eina_Bool
633 _item_single_select_up(Widget_Data *wd)
634 {
635    Elm_Genlist_Item *prev;
636    if (!wd->selected)
637      {
638         prev = ELM_GENLIST_ITEM_FROM_INLIST(wd->items->last);
639         while ((prev) && (prev->delete_me))
640           prev = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(prev)->prev);
641      }
642    else prev = elm_genlist_item_prev_get(wd->last_selected_item);
643
644    if (!prev) return EINA_FALSE;
645
646    _deselect_all_items(wd);
647
648    elm_genlist_item_selected_set(prev, EINA_TRUE);
649    elm_genlist_item_show(prev);
650    return EINA_TRUE;
651 }
652
653 static Eina_Bool
654 _item_single_select_down(Widget_Data *wd)
655 {
656    Elm_Genlist_Item *next;
657    if (!wd->selected)
658      {
659         next = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
660         while ((next) && (next->delete_me))
661           next = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(next)->next);
662      }
663    else next = elm_genlist_item_next_get(wd->last_selected_item);
664
665    if (!next) return EINA_FALSE;
666
667    _deselect_all_items(wd);
668
669    elm_genlist_item_selected_set(next, EINA_TRUE);
670    elm_genlist_item_show(next);
671    return EINA_TRUE;
672 }
673
674 static void
675 _on_focus_hook(void        *data __UNUSED__,
676                Evas_Object *obj)
677 {
678    Widget_Data *wd = elm_widget_data_get(obj);
679    if (!wd) return;
680    if (elm_widget_focus_get(obj))
681      {
682         edje_object_signal_emit(wd->obj, "elm,action,focus", "elm");
683         evas_object_focus_set(wd->obj, EINA_TRUE);
684         if ((wd->selected) && (!wd->last_selected_item))
685           wd->last_selected_item = eina_list_data_get(wd->selected);
686      }
687    else
688      {
689         edje_object_signal_emit(wd->obj, "elm,action,unfocus", "elm");
690         evas_object_focus_set(wd->obj, EINA_FALSE);
691      }
692 }
693
694 static void
695 _del_hook(Evas_Object *obj)
696 {
697    Widget_Data *wd = elm_widget_data_get(obj);
698    if (!wd) return;
699    _item_cache_zero(wd);
700    if (wd->calc_job) ecore_job_del(wd->calc_job);
701    if (wd->update_job) ecore_job_del(wd->update_job);
702    if (wd->must_recalc_idler) ecore_idler_del(wd->must_recalc_idler);
703    if (wd->multi_timer) ecore_timer_del(wd->multi_timer);
704    if (wd->mode_type) eina_stringshare_del(wd->mode_type);
705    if (wd->scr_hold_timer) ecore_timer_del(wd->scr_hold_timer);
706    free(wd);
707 }
708
709 static void
710 _del_pre_hook(Evas_Object *obj)
711 {
712    Widget_Data *wd = elm_widget_data_get(obj);
713    if (!wd) return;
714    evas_object_del(wd->pan_smart);
715    wd->pan_smart = NULL;
716    elm_genlist_clear(obj);
717 }
718
719 static void
720 _mirrored_set(Evas_Object *obj,
721               Eina_Bool    rtl)
722 {
723    Widget_Data *wd = elm_widget_data_get(obj);
724    if (!wd) return;
725    _item_cache_zero(wd);
726    elm_smart_scroller_mirrored_set(wd->scr, rtl);
727 }
728
729 static void
730 _theme_hook(Evas_Object *obj)
731 {
732    Widget_Data *wd = elm_widget_data_get(obj);
733    Item_Block *itb;
734    if (!wd) return;
735    _item_cache_zero(wd);
736    _elm_widget_mirrored_reload(obj);
737    _mirrored_set(obj, elm_widget_mirrored_get(obj));
738    elm_smart_scroller_object_theme_set(obj, wd->scr, "genlist", "base",
739                                        elm_widget_style_get(obj));
740    edje_object_scale_set(wd->scr, elm_widget_scale_get(obj) * _elm_config->scale);
741    wd->item_width = wd->item_height = 0;
742    wd->group_item_width = wd->group_item_height = 0;
743    wd->minw = wd->minh = wd->realminw = 0;
744    EINA_INLIST_FOREACH(wd->blocks, itb)
745      {
746         Eina_List *l;
747         Elm_Genlist_Item *it;
748
749         if (itb->realized) _item_block_unrealize(itb);
750         EINA_LIST_FOREACH(itb->items, l, it)
751           it->mincalcd = EINA_FALSE;
752
753         itb->changed = EINA_TRUE;
754      }
755    if (wd->calc_job) ecore_job_del(wd->calc_job);
756    wd->calc_job = ecore_job_add(_calc_job, wd);
757    _sizing_eval(obj);
758 }
759
760 static void
761 _show_region_hook(void        *data,
762                   Evas_Object *obj)
763 {
764    Widget_Data *wd = elm_widget_data_get(data);
765    Evas_Coord x, y, w, h;
766    if (!wd) return;
767    elm_widget_show_region_get(obj, &x, &y, &w, &h);
768    //x & y are screen coordinates, Add with pan coordinates
769    x += wd->pan_x;
770    y += wd->pan_y;
771    elm_smart_scroller_child_region_show(wd->scr, x, y, w, h);
772 }
773
774 static void
775 _sizing_eval(Evas_Object *obj)
776 {
777    Widget_Data *wd = elm_widget_data_get(obj);
778    Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
779    if (!wd) return;
780    evas_object_size_hint_min_get(wd->scr, &minw, &minh);
781    evas_object_size_hint_max_get(wd->scr, &maxw, &maxh);
782    minh = -1;
783    if (wd->height_for_width)
784      {
785         Evas_Coord vw, vh;
786
787         elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
788         if ((vw != 0) && (vw != wd->prev_viewport_w))
789           {
790              Item_Block *itb;
791
792              wd->prev_viewport_w = vw;
793              EINA_INLIST_FOREACH(wd->blocks, itb)
794                {
795                   itb->must_recalc = EINA_TRUE;
796                }
797              if (wd->calc_job) ecore_job_del(wd->calc_job);
798              wd->calc_job = ecore_job_add(_calc_job, wd);
799           }
800      }
801    if (wd->mode == ELM_LIST_LIMIT)
802      {
803         Evas_Coord vmw, vmh, vw, vh;
804
805         minw = wd->realminw;
806         maxw = -1;
807         elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
808         if ((minw > 0) && (vw < minw)) vw = minw;
809         else if ((maxw > 0) && (vw > maxw))
810           vw = maxw;
811         edje_object_size_min_calc
812           (elm_smart_scroller_edje_object_get(wd->scr), &vmw, &vmh);
813         minw = vmw + minw;
814      }
815    else
816      {
817         Evas_Coord vmw, vmh;
818
819         edje_object_size_min_calc
820           (elm_smart_scroller_edje_object_get(wd->scr), &vmw, &vmh);
821         minw = vmw;
822         minh = vmh;
823      }
824    evas_object_size_hint_min_set(obj, minw, minh);
825    evas_object_size_hint_max_set(obj, maxw, maxh);
826 }
827
828 static void
829 _signal_emit_hook(Evas_Object *obj,
830                   const char  *emission,
831                   const char  *source)
832 {
833    Widget_Data *wd = elm_widget_data_get(obj);
834    edje_object_signal_emit(elm_smart_scroller_edje_object_get(wd->scr),
835                            emission, source);
836 }
837
838 static void
839 _item_highlight(Elm_Genlist_Item *it)
840 {
841    const char *selectraise;
842    if ((it->wd->no_select) || (it->delete_me) || (it->highlighted) ||
843        (it->disabled) || (it->display_only) || (it->mode_view))
844      return;
845    edje_object_signal_emit(it->base.view, "elm,state,selected", "elm");
846    selectraise = edje_object_data_get(it->base.view, "selectraise");
847    if ((selectraise) && (!strcmp(selectraise, "on")))
848      {
849         evas_object_raise(it->base.view);
850         if ((it->group_item) && (it->group_item->realized))
851           evas_object_raise(it->group_item->base.view);
852      }
853    it->highlighted = EINA_TRUE;
854 }
855
856 static void
857 _item_block_del(Elm_Genlist_Item *it)
858 {
859    Eina_Inlist *il;
860    Item_Block *itb = it->block;
861
862    itb->items = eina_list_remove(itb->items, it);
863    itb->count--;
864    itb->changed = EINA_TRUE;
865    if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
866    it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
867    if (itb->count < 1)
868      {
869         il = EINA_INLIST_GET(itb);
870         Item_Block *itbn = (Item_Block *)(il->next);
871         if (it->parent)
872           it->parent->items = eina_list_remove(it->parent->items, it);
873         else
874           it->wd->blocks = eina_inlist_remove(it->wd->blocks, il);
875         free(itb);
876         if (itbn) itbn->changed = EINA_TRUE;
877      }
878    else
879      {
880         if (itb->count < 16)
881           {
882              il = EINA_INLIST_GET(itb);
883              Item_Block *itbp = (Item_Block *)(il->prev);
884              Item_Block *itbn = (Item_Block *)(il->next);
885              if ((itbp) && ((itbp->count + itb->count) < 48))
886                {
887                   Elm_Genlist_Item *it2;
888
889                   EINA_LIST_FREE(itb->items, it2)
890                     {
891                        it2->block = itbp;
892                        itbp->items = eina_list_append(itbp->items, it2);
893                        itbp->count++;
894                        itbp->changed = EINA_TRUE;
895                     }
896                   it->wd->blocks = eina_inlist_remove(it->wd->blocks,
897                                                       EINA_INLIST_GET(itb));
898                   free(itb);
899                }
900              else if ((itbn) && ((itbn->count + itb->count) < 48))
901                {
902                   while (itb->items)
903                     {
904                        Eina_List *last = eina_list_last(itb->items);
905                        Elm_Genlist_Item *it2 = last->data;
906
907                        it2->block = itbn;
908                        itb->items = eina_list_remove_list(itb->items, last);
909                        itbn->items = eina_list_prepend(itbn->items, it2);
910                        itbn->count++;
911                        itbn->changed = EINA_TRUE;
912                     }
913                   it->wd->blocks =
914                     eina_inlist_remove(it->wd->blocks, EINA_INLIST_GET(itb));
915                   free(itb);
916                }
917           }
918      }
919 }
920
921 static void
922 _item_del(Elm_Genlist_Item *it)
923 {
924    elm_widget_item_pre_notify_del(it);
925    elm_genlist_item_subitems_clear(it);
926    it->wd->walking -= it->walking;
927    if (it->wd->show_item == it) it->wd->show_item = NULL;
928    if (it->selected) it->wd->selected = eina_list_remove(it->wd->selected, it);
929    if (it->realized) _item_unrealize(it, EINA_FALSE);
930    if (it->block) _item_block_del(it);
931    if ((!it->delete_me) && (it->itc->func.del))
932      it->itc->func.del((void *)it->base.data, it->base.widget);
933    it->delete_me = EINA_TRUE;
934    if (it->queued)
935      it->wd->queue = eina_list_remove(it->wd->queue, it);
936    if (it->wd->anchor_item == it)
937      {
938         it->wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
939         if (!it->wd->anchor_item)
940           it->wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
941      }
942    it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
943    if (it->parent)
944      it->parent->items = eina_list_remove(it->parent->items, it);
945    if (it->flags & ELM_GENLIST_ITEM_GROUP)
946      it->wd->group_items = eina_list_remove(it->wd->group_items, it);
947    if (it->long_timer) ecore_timer_del(it->long_timer);
948    if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
949
950    if (it->tooltip.del_cb)
951      it->tooltip.del_cb((void *)it->tooltip.data, it->base.widget, it);
952
953    elm_widget_item_del(it);
954 }
955
956 static void
957 _item_select(Elm_Genlist_Item *it)
958 {
959    if ((it->wd->no_select) || (it->delete_me) || (it->mode_view)) return;
960    if (it->selected)
961      {
962         if (it->wd->always_select) goto call;
963         return;
964      }
965    it->selected = EINA_TRUE;
966    it->wd->selected = eina_list_append(it->wd->selected, it);
967 call:
968    it->walking++;
969    it->wd->walking++;
970    if (it->func.func) it->func.func((void *)it->func.data, it->base.widget, it);
971    if (!it->delete_me)
972      evas_object_smart_callback_call(it->base.widget, "selected", it);
973    it->walking--;
974    it->wd->walking--;
975    if ((it->wd->clear_me) && (!it->wd->walking))
976      elm_genlist_clear(it->base.widget);
977    else
978      {
979         if ((!it->walking) && (it->delete_me))
980           {
981              if (!it->relcount) _item_del(it);
982           }
983      }
984    it->wd->last_selected_item = it;
985 }
986
987 static void
988 _item_unselect(Elm_Genlist_Item *it)
989 {
990    const char *stacking, *selectraise;
991
992    if ((it->delete_me) || (!it->highlighted)) return;
993    edje_object_signal_emit(it->base.view, "elm,state,unselected", "elm");
994    stacking = edje_object_data_get(it->base.view, "stacking");
995    selectraise = edje_object_data_get(it->base.view, "selectraise");
996    if (!it->nostacking)
997      {
998        if ((it->order_num_in & 0x1) ^ it->stacking_even) evas_object_lower(it->base.view);
999        else evas_object_raise(it->base.view);
1000      }
1001    it->highlighted = EINA_FALSE;
1002    if (it->selected)
1003      {
1004         it->selected = EINA_FALSE;
1005         it->wd->selected = eina_list_remove(it->wd->selected, it);
1006         evas_object_smart_callback_call(it->base.widget, "unselected", it);
1007      }
1008 }
1009
1010 static void
1011 _mouse_move(void        *data,
1012             Evas        *evas __UNUSED__,
1013             Evas_Object *obj,
1014             void        *event_info)
1015 {
1016    Elm_Genlist_Item *it = data;
1017    Evas_Event_Mouse_Move *ev = event_info;
1018    Evas_Coord minw = 0, minh = 0, x, y, dx, dy, adx, ady;
1019
1020    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1021      {
1022         if (!it->wd->on_hold)
1023           {
1024              it->wd->on_hold = EINA_TRUE;
1025              if (!it->wd->wasselected)
1026                _item_unselect(it);
1027           }
1028      }
1029    if (it->wd->multitouched)
1030      {
1031         it->wd->cur_x = ev->cur.canvas.x;
1032         it->wd->cur_y = ev->cur.canvas.y;
1033         return;
1034      }
1035    if ((it->dragging) && (it->down))
1036      {
1037         if (it->wd->movements == SWIPE_MOVES) it->wd->swipe = EINA_TRUE;
1038         else
1039           {
1040              it->wd->history[it->wd->movements].x = ev->cur.canvas.x;
1041              it->wd->history[it->wd->movements].y = ev->cur.canvas.y;
1042              if (abs((it->wd->history[it->wd->movements].x -
1043                       it->wd->history[0].x)) > 40)
1044                it->wd->swipe = EINA_TRUE;
1045              else
1046                it->wd->movements++;
1047           }
1048         if (it->long_timer)
1049           {
1050              ecore_timer_del(it->long_timer);
1051              it->long_timer = NULL;
1052           }
1053         evas_object_smart_callback_call(it->base.widget, "drag", it);
1054         return;
1055      }
1056    if ((!it->down) /* || (it->wd->on_hold)*/ || (it->wd->longpressed))
1057      {
1058         if (it->long_timer)
1059           {
1060              ecore_timer_del(it->long_timer);
1061              it->long_timer = NULL;
1062           }
1063         return;
1064      }
1065    if (!it->display_only)
1066      elm_coords_finger_size_adjust(1, &minw, 1, &minh);
1067    evas_object_geometry_get(obj, &x, &y, NULL, NULL);
1068    x = ev->cur.canvas.x - x;
1069    y = ev->cur.canvas.y - y;
1070    dx = x - it->dx;
1071    adx = dx;
1072    if (adx < 0) adx = -dx;
1073    dy = y - it->dy;
1074    ady = dy;
1075    if (ady < 0) ady = -dy;
1076    minw /= 2;
1077    minh /= 2;
1078    if ((adx > minw) || (ady > minh))
1079      {
1080         it->dragging = EINA_TRUE;
1081         if (it->long_timer)
1082           {
1083              ecore_timer_del(it->long_timer);
1084              it->long_timer = NULL;
1085           }
1086         if (!it->wd->wasselected)
1087           _item_unselect(it);
1088         if (dy < 0)
1089           {
1090              if (ady > adx)
1091                evas_object_smart_callback_call(it->base.widget,
1092                                                "drag,start,up", it);
1093              else
1094                {
1095                   if (dx < 0)
1096                     evas_object_smart_callback_call(it->base.widget,
1097                                                     "drag,start,left", it);
1098                   else
1099                     evas_object_smart_callback_call(it->base.widget,
1100                                                     "drag,start,right", it);
1101                }
1102           }
1103         else
1104           {
1105              if (ady > adx)
1106                evas_object_smart_callback_call(it->base.widget,
1107                                                "drag,start,down", it);
1108              else
1109                {
1110                   if (dx < 0)
1111                     evas_object_smart_callback_call(it->base.widget,
1112                                                     "drag,start,left", it);
1113                   else
1114                     evas_object_smart_callback_call(it->base.widget,
1115                                                     "drag,start,right", it);
1116                }
1117           }
1118      }
1119 }
1120
1121 static Eina_Bool
1122 _long_press(void *data)
1123 {
1124    Elm_Genlist_Item *it = data;
1125
1126    it->long_timer = NULL;
1127    if ((it->disabled) || (it->dragging) || (it->display_only))
1128      return ECORE_CALLBACK_CANCEL;
1129    it->wd->longpressed = EINA_TRUE;
1130    evas_object_smart_callback_call(it->base.widget, "longpressed", it);
1131    return ECORE_CALLBACK_CANCEL;
1132 }
1133
1134 static void
1135 _swipe(Elm_Genlist_Item *it)
1136 {
1137    int i, sum = 0;
1138
1139    if (!it) return;
1140    if ((it->display_only) || (it->disabled)) return;
1141    it->wd->swipe = EINA_FALSE;
1142    for (i = 0; i < it->wd->movements; i++)
1143      {
1144         sum += it->wd->history[i].x;
1145         if (abs(it->wd->history[0].y - it->wd->history[i].y) > 10) return;
1146      }
1147
1148    sum /= it->wd->movements;
1149    if (abs(sum - it->wd->history[0].x) <= 10) return;
1150    evas_object_smart_callback_call(it->base.widget, "swipe", it);
1151 }
1152
1153 static Eina_Bool
1154 _swipe_cancel(void *data)
1155 {
1156    Elm_Genlist_Item *it = data;
1157
1158    if (!it) return ECORE_CALLBACK_CANCEL;
1159    it->wd->swipe = EINA_FALSE;
1160    it->wd->movements = 0;
1161    return ECORE_CALLBACK_RENEW;
1162 }
1163
1164 static Eina_Bool
1165 _multi_cancel(void *data)
1166 {
1167    Widget_Data *wd = data;
1168
1169    if (!wd) return ECORE_CALLBACK_CANCEL;
1170    wd->multi_timeout = EINA_TRUE;
1171    return ECORE_CALLBACK_RENEW;
1172 }
1173
1174 static void
1175 _multi_touch_gesture_eval(void *data)
1176 {
1177    Elm_Genlist_Item *it = data;
1178
1179    it->wd->multitouched = EINA_FALSE;
1180    if (it->wd->multi_timer)
1181      {
1182         ecore_timer_del(it->wd->multi_timer);
1183         it->wd->multi_timer = NULL;
1184      }
1185    if (it->wd->multi_timeout)
1186      {
1187         it->wd->multi_timeout = EINA_FALSE;
1188         return;
1189      }
1190
1191    Evas_Coord minw = 0, minh = 0;
1192    Evas_Coord off_x, off_y, off_mx, off_my;
1193
1194    elm_coords_finger_size_adjust(1, &minw, 1, &minh);
1195    off_x = abs(it->wd->cur_x - it->wd->prev_x);
1196    off_y = abs(it->wd->cur_y - it->wd->prev_y);
1197    off_mx = abs(it->wd->cur_mx - it->wd->prev_mx);
1198    off_my = abs(it->wd->cur_my - it->wd->prev_my);
1199
1200    if (((off_x > minw) || (off_y > minh)) && ((off_mx > minw) || (off_my > minh)))
1201      {
1202         if ((off_x + off_mx) > (off_y + off_my))
1203           {
1204              if ((it->wd->cur_x > it->wd->prev_x) && (it->wd->cur_mx > it->wd->prev_mx))
1205                evas_object_smart_callback_call(it->base.widget,
1206                                                "multi,swipe,right", it);
1207              else if ((it->wd->cur_x < it->wd->prev_x) && (it->wd->cur_mx < it->wd->prev_mx))
1208                evas_object_smart_callback_call(it->base.widget,
1209                                                "multi,swipe,left", it);
1210              else if (abs(it->wd->cur_x - it->wd->cur_mx) > abs(it->wd->prev_x - it->wd->prev_mx))
1211                evas_object_smart_callback_call(it->base.widget,
1212                                                "multi,pinch,out", it);
1213              else
1214                evas_object_smart_callback_call(it->base.widget,
1215                                                "multi,pinch,in", it);
1216           }
1217         else
1218           {
1219              if ((it->wd->cur_y > it->wd->prev_y) && (it->wd->cur_my > it->wd->prev_my))
1220                evas_object_smart_callback_call(it->base.widget,
1221                                                "multi,swipe,down", it);
1222              else if ((it->wd->cur_y < it->wd->prev_y) && (it->wd->cur_my < it->wd->prev_my))
1223                evas_object_smart_callback_call(it->base.widget,
1224                                                "multi,swipe,up", it);
1225              else if (abs(it->wd->cur_y - it->wd->cur_my) > abs(it->wd->prev_y - it->wd->prev_my))
1226                evas_object_smart_callback_call(it->base.widget,
1227                                                "multi,pinch,out", it);
1228              else
1229                evas_object_smart_callback_call(it->base.widget,
1230                                                "multi,pinch,in", it);
1231           }
1232      }
1233    it->wd->multi_timeout = EINA_FALSE;
1234 }
1235
1236 static void
1237 _multi_down(void        *data,
1238             Evas        *evas __UNUSED__,
1239             Evas_Object *obj __UNUSED__,
1240             void        *event_info)
1241 {
1242    Elm_Genlist_Item *it = data;
1243    Evas_Event_Multi_Down *ev = event_info;
1244
1245    if ((it->wd->multi_device != 0) || (it->wd->multitouched) || (it->wd->multi_timeout)) return;
1246    it->wd->multi_device = ev->device;
1247    it->wd->multi_down = EINA_TRUE;
1248    it->wd->multitouched = EINA_TRUE;
1249    it->wd->prev_mx = ev->canvas.x;
1250    it->wd->prev_my = ev->canvas.y;
1251    if (!it->wd->wasselected) _item_unselect(it);
1252    it->wd->wasselected = EINA_FALSE;
1253    it->wd->longpressed = EINA_FALSE;
1254    if (it->long_timer)
1255      {
1256         ecore_timer_del(it->long_timer);
1257         it->long_timer = NULL;
1258      }
1259    if (it->dragging)
1260      {
1261         it->dragging = EINA_FALSE;
1262         evas_object_smart_callback_call(it->base.widget, "drag,stop", it);
1263      }
1264    if (it->swipe_timer)
1265      {
1266         ecore_timer_del(it->swipe_timer);
1267         it->swipe_timer = NULL;
1268      }
1269    if (it->wd->on_hold)
1270      {
1271         it->wd->swipe = EINA_FALSE;
1272         it->wd->movements = 0;
1273         it->wd->on_hold = EINA_FALSE;
1274      }
1275 }
1276
1277 static void
1278 _multi_up(void        *data,
1279           Evas        *evas __UNUSED__,
1280           Evas_Object *obj __UNUSED__,
1281           void        *event_info)
1282 {
1283    Elm_Genlist_Item *it = data;
1284    Evas_Event_Multi_Up *ev = event_info;
1285
1286    if (it->wd->multi_device != ev->device) return;
1287    it->wd->multi_device = 0;
1288    it->wd->multi_down = EINA_FALSE;
1289    if (it->wd->mouse_down) return;
1290    _multi_touch_gesture_eval(data);
1291 }
1292
1293 static void
1294 _multi_move(void        *data,
1295             Evas        *evas __UNUSED__,
1296             Evas_Object *obj __UNUSED__,
1297             void        *event_info)
1298 {
1299    Elm_Genlist_Item *it = data;
1300    Evas_Event_Multi_Move *ev = event_info;
1301
1302    if (it->wd->multi_device != ev->device) return;
1303    it->wd->cur_mx = ev->cur.canvas.x;
1304    it->wd->cur_my = ev->cur.canvas.y;
1305 }
1306
1307 static void
1308 _mouse_down(void        *data,
1309             Evas        *evas __UNUSED__,
1310             Evas_Object *obj,
1311             void        *event_info)
1312 {
1313    Elm_Genlist_Item *it = data;
1314    Evas_Event_Mouse_Down *ev = event_info;
1315    Evas_Coord x, y;
1316
1317    if (ev->button != 1) return;
1318    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1319      {
1320         it->wd->on_hold = EINA_TRUE;
1321      }
1322
1323    it->down = EINA_TRUE;
1324    it->dragging = EINA_FALSE;
1325    evas_object_geometry_get(obj, &x, &y, NULL, NULL);
1326    it->dx = ev->canvas.x - x;
1327    it->dy = ev->canvas.y - y;
1328    it->wd->mouse_down = EINA_TRUE;
1329    if (!it->wd->multitouched)
1330      {
1331         it->wd->prev_x = ev->canvas.x;
1332         it->wd->prev_y = ev->canvas.y;
1333         it->wd->multi_timeout = EINA_FALSE;
1334         if (it->wd->multi_timer) ecore_timer_del(it->wd->multi_timer);
1335         it->wd->multi_timer = ecore_timer_add(1, _multi_cancel, it->wd);
1336      }
1337    it->wd->longpressed = EINA_FALSE;
1338    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) it->wd->on_hold = EINA_TRUE;
1339    else it->wd->on_hold = EINA_FALSE;
1340    if (it->wd->on_hold) return;
1341    it->wd->wasselected = it->selected;
1342    _item_highlight(it);
1343    if (ev->flags & EVAS_BUTTON_DOUBLE_CLICK)
1344      if ((!it->disabled) && (!it->display_only))
1345        {
1346           evas_object_smart_callback_call(it->base.widget, "clicked,double", it);
1347           evas_object_smart_callback_call(it->base.widget, "clicked", it); // will be removed
1348        }
1349    if (it->long_timer) ecore_timer_del(it->long_timer);
1350    if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
1351    it->swipe_timer = ecore_timer_add(0.4, _swipe_cancel, it);
1352    if (it->realized)
1353      it->long_timer = ecore_timer_add(it->wd->longpress_timeout, _long_press,
1354                                       it);
1355    else
1356      it->long_timer = NULL;
1357    it->wd->swipe = EINA_FALSE;
1358    it->wd->movements = 0;
1359 }
1360
1361 static void
1362 _mouse_up(void        *data,
1363           Evas        *evas __UNUSED__,
1364           Evas_Object *obj __UNUSED__,
1365           void        *event_info)
1366 {
1367    Elm_Genlist_Item *it = data;
1368    Evas_Event_Mouse_Up *ev = event_info;
1369    Eina_Bool dragged = EINA_FALSE;
1370
1371    if (ev->button != 1) return;
1372    it->down = EINA_FALSE;
1373    it->wd->mouse_down = EINA_FALSE;
1374    if (it->wd->multitouched)
1375      {
1376         if (it->wd->multi_down) return;
1377         _multi_touch_gesture_eval(data);
1378         return;
1379      }
1380    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) it->wd->on_hold = EINA_TRUE;
1381    else it->wd->on_hold = EINA_FALSE;
1382    if (it->long_timer)
1383      {
1384         ecore_timer_del(it->long_timer);
1385         it->long_timer = NULL;
1386      }
1387    if (it->dragging)
1388      {
1389         it->dragging = EINA_FALSE;
1390         evas_object_smart_callback_call(it->base.widget, "drag,stop", it);
1391         dragged = 1;
1392      }
1393    if (it->swipe_timer)
1394      {
1395         ecore_timer_del(it->swipe_timer);
1396         it->swipe_timer = NULL;
1397      }
1398    if (it->wd->multi_timer)
1399      {
1400         ecore_timer_del(it->wd->multi_timer);
1401         it->wd->multi_timer = NULL;
1402         it->wd->multi_timeout = EINA_FALSE;
1403      }
1404    if (it->wd->on_hold)
1405      {
1406         if (it->wd->swipe) _swipe(data);
1407         it->wd->longpressed = EINA_FALSE;
1408         it->wd->on_hold = EINA_FALSE;
1409         return;
1410      }
1411    if (it->wd->longpressed)
1412      {
1413         it->wd->longpressed = EINA_FALSE;
1414         if (!it->wd->wasselected)
1415           _item_unselect(it);
1416         it->wd->wasselected = EINA_FALSE;
1417         return;
1418      }
1419    if (dragged)
1420      {
1421         if (it->want_unrealize)
1422           {
1423              _item_unrealize(it, EINA_FALSE);
1424              if (it->block->want_unrealize)
1425                _item_block_unrealize(it->block);
1426           }
1427      }
1428    if ((it->disabled) || (dragged) || (it->display_only)) return;
1429    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
1430    if (it->wd->multi)
1431      {
1432         if (!it->selected)
1433           {
1434              _item_highlight(it);
1435              _item_select(it);
1436           }
1437         else _item_unselect(it);
1438      }
1439    else
1440      {
1441         if (!it->selected)
1442           {
1443              Widget_Data *wd = it->wd;
1444              if (wd)
1445                {
1446                   while (wd->selected) _item_unselect(wd->selected->data);
1447                }
1448           }
1449         else
1450           {
1451              const Eina_List *l, *l_next;
1452              Elm_Genlist_Item *it2;
1453
1454              EINA_LIST_FOREACH_SAFE(it->wd->selected, l, l_next, it2)
1455                if (it2 != it) _item_unselect(it2);
1456              //_item_highlight(it);
1457              //_item_select(it);
1458           }
1459         _item_highlight(it);
1460         _item_select(it);
1461      }
1462 }
1463
1464 static void
1465 _signal_expand_toggle(void        *data,
1466                       Evas_Object *obj __UNUSED__,
1467                       const char  *emission __UNUSED__,
1468                       const char  *source __UNUSED__)
1469 {
1470    Elm_Genlist_Item *it = data;
1471
1472    if (it->expanded)
1473      evas_object_smart_callback_call(it->base.widget, "contract,request", it);
1474    else
1475      evas_object_smart_callback_call(it->base.widget, "expand,request", it);
1476 }
1477
1478 static void
1479 _signal_expand(void        *data,
1480                Evas_Object *obj __UNUSED__,
1481                const char  *emission __UNUSED__,
1482                const char  *source __UNUSED__)
1483 {
1484    Elm_Genlist_Item *it = data;
1485
1486    if (!it->expanded)
1487      evas_object_smart_callback_call(it->base.widget, "expand,request", it);
1488 }
1489
1490 static void
1491 _signal_contract(void        *data,
1492                  Evas_Object *obj __UNUSED__,
1493                  const char  *emission __UNUSED__,
1494                  const char  *source __UNUSED__)
1495 {
1496    Elm_Genlist_Item *it = data;
1497
1498    if (it->expanded)
1499      evas_object_smart_callback_call(it->base.widget, "contract,request", it);
1500 }
1501
1502 static Eina_Bool
1503 _scr_hold_timer_cb(void *data)
1504 {
1505    if (!data) return ECORE_CALLBACK_CANCEL;
1506    Widget_Data *wd = data;
1507    elm_smart_scroller_hold_set(wd->scr, EINA_FALSE);
1508    wd->scr_hold_timer = NULL;
1509    return ECORE_CALLBACK_CANCEL;
1510 }
1511
1512 static void
1513 _mode_finished_signal_cb(void        *data,
1514                          Evas_Object *obj,
1515                          const char  *emission __UNUSED__,
1516                          const char  *source __UNUSED__)
1517 {
1518    if (!data) return;
1519    if (!obj) return;
1520    Elm_Genlist_Item *it = data;
1521    if ((it->delete_me) || (!it->realized) || (!it->mode_view)) return;
1522    char buf[1024];
1523
1524    it->nocache = EINA_FALSE;
1525    _mode_item_unrealize(it);
1526    snprintf(buf, sizeof(buf), "elm,state,%s,passive,finished", it->wd->mode_type);
1527    edje_object_signal_callback_del_full(obj, buf, "elm", _mode_finished_signal_cb, it);
1528 }
1529
1530 static void
1531 _item_cache_clean(Widget_Data *wd)
1532 {
1533    while ((wd->item_cache) && (wd->item_cache_count > wd->item_cache_max))
1534      {
1535         Item_Cache *itc;
1536
1537         itc = EINA_INLIST_CONTAINER_GET(wd->item_cache->last, Item_Cache);
1538         wd->item_cache = eina_inlist_remove(wd->item_cache,
1539                                             wd->item_cache->last);
1540         wd->item_cache_count--;
1541         if (itc->spacer) evas_object_del(itc->spacer);
1542         if (itc->base_view) evas_object_del(itc->base_view);
1543         if (itc->item_style) eina_stringshare_del(itc->item_style);
1544         free(itc);
1545      }
1546 }
1547
1548 static void
1549 _item_cache_zero(Widget_Data *wd)
1550 {
1551    int pmax = wd->item_cache_max;
1552    wd->item_cache_max = 0;
1553    _item_cache_clean(wd);
1554    wd->item_cache_max = pmax;
1555 }
1556
1557 static void
1558 _item_cache_add(Elm_Genlist_Item *it)
1559 {
1560    Item_Cache *itc;
1561
1562    if (it->wd->item_cache_max <= 0)
1563      {
1564         evas_object_del(it->base.view);
1565         it->base.view = NULL;
1566         evas_object_del(it->spacer);
1567         it->spacer = NULL;
1568         return;
1569      }
1570
1571    it->wd->item_cache_count++;
1572    itc = calloc(1, sizeof(Item_Cache));
1573    it->wd->item_cache = eina_inlist_prepend(it->wd->item_cache,
1574                                             EINA_INLIST_GET(itc));
1575    itc->spacer = it->spacer;
1576    it->spacer = NULL;
1577    itc->base_view = it->base.view;
1578    it->base.view = NULL;
1579    evas_object_hide(itc->base_view);
1580    evas_object_move(itc->base_view, -9999, -9999);
1581    itc->item_style = eina_stringshare_add(it->itc->item_style);
1582    if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) itc->tree = 1;
1583    itc->compress = (it->wd->compress);
1584    itc->selected = it->selected;
1585    itc->disabled = it->disabled;
1586    itc->expanded = it->expanded;
1587    if (it->long_timer)
1588      {
1589         ecore_timer_del(it->long_timer);
1590         it->long_timer = NULL;
1591      }
1592    if (it->swipe_timer)
1593      {
1594         ecore_timer_del(it->swipe_timer);
1595         it->swipe_timer = NULL;
1596      }
1597    // FIXME: other callbacks?
1598    edje_object_signal_callback_del_full(itc->base_view,
1599                                         "elm,action,expand,toggle",
1600                                         "elm", _signal_expand_toggle, it);
1601    edje_object_signal_callback_del_full(itc->base_view, "elm,action,expand",
1602                                         "elm",
1603                                         _signal_expand, it);
1604    edje_object_signal_callback_del_full(itc->base_view, "elm,action,contract",
1605                                         "elm", _signal_contract, it);
1606    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_DOWN,
1607                                        _mouse_down, it);
1608    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_UP,
1609                                        _mouse_up, it);
1610    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_MOVE,
1611                                        _mouse_move, it);
1612    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_DOWN,
1613                                        _multi_down, it);
1614    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_UP,
1615                                        _multi_up, it);
1616    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_MOVE,
1617                                        _multi_move, it);
1618    _item_cache_clean(it->wd);
1619 }
1620
1621 static Item_Cache *
1622 _item_cache_find(Elm_Genlist_Item *it)
1623 {
1624    Item_Cache *itc;
1625    Eina_Bool tree = 0;
1626
1627    if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) tree = 1;
1628    EINA_INLIST_FOREACH(it->wd->item_cache, itc)
1629      {
1630         if ((itc->selected) || (itc->disabled) || (itc->expanded))
1631           continue;
1632         if ((itc->tree == tree) &&
1633             (itc->compress == it->wd->compress) &&
1634             (!strcmp(it->itc->item_style, itc->item_style)))
1635           {
1636              it->wd->item_cache = eina_inlist_remove(it->wd->item_cache,
1637                                                      EINA_INLIST_GET(itc));
1638              it->wd->item_cache_count--;
1639              return itc;
1640           }
1641      }
1642    return NULL;
1643 }
1644
1645 static void
1646 _elm_genlist_item_odd_even_update(Elm_Genlist_Item *it)
1647 {
1648    if (!it->nostacking)
1649      {
1650        if ((it->order_num_in & 0x1) ^ it->stacking_even)
1651          evas_object_lower(it->base.view);
1652        else
1653          evas_object_raise(it->base.view);
1654      }
1655
1656    if (it->order_num_in & 0x1)
1657      edje_object_signal_emit(it->base.view, "elm,state,odd", "elm");
1658    else
1659      edje_object_signal_emit(it->base.view, "elm,state,even", "elm");
1660 }
1661
1662 static void
1663 _elm_genlist_item_state_update(Elm_Genlist_Item *it, Item_Cache *itc)
1664 {
1665   if (itc)
1666     {
1667       if (it->selected != itc->selected)
1668         {
1669           if (it->selected)
1670             edje_object_signal_emit(it->base.view,
1671                                     "elm,state,selected", "elm");
1672         }
1673       if (it->disabled != itc->disabled)
1674         {
1675           if (it->disabled)
1676             edje_object_signal_emit(it->base.view,
1677                                     "elm,state,disabled", "elm");
1678         }
1679       if (it->expanded != itc->expanded)
1680         {
1681           if (it->expanded)
1682             edje_object_signal_emit(it->base.view,
1683                                     "elm,state,expanded", "elm");
1684         }
1685     }
1686   else
1687     {
1688       if (it->selected)
1689         edje_object_signal_emit(it->base.view,
1690                                 "elm,state,selected", "elm");
1691       if (it->disabled)
1692         edje_object_signal_emit(it->base.view,
1693                                 "elm,state,disabled", "elm");
1694       if (it->expanded)
1695         edje_object_signal_emit(it->base.view,
1696                                 "elm,state,expanded", "elm");
1697     }
1698 }
1699
1700 static void
1701 _item_cache_free(Item_Cache *itc)
1702 {
1703    if (itc->spacer) evas_object_del(itc->spacer);
1704    if (itc->base_view) evas_object_del(itc->base_view);
1705    if (itc->item_style) eina_stringshare_del(itc->item_style);
1706    free(itc);
1707 }
1708
1709 static void
1710 _item_label_realize(Elm_Genlist_Item *it,
1711                     Evas_Object *target,
1712                     const Eina_List *source)
1713 {
1714    if (it->itc->func.label_get)
1715      {
1716         const Eina_List *l;
1717         const char *key;
1718
1719         it->mode_labels =
1720            elm_widget_stringlist_get(edje_object_data_get(target, "labels"));
1721         EINA_LIST_FOREACH(source, l, key)
1722           {
1723              char *s = it->itc->func.label_get
1724                 ((void *)it->base.data, it->base.widget, key);
1725
1726              if (s)
1727                {
1728                   edje_object_part_text_set(target, key, s);
1729                   free(s);
1730                }
1731              else
1732                {
1733                   edje_object_part_text_set(target, key, "");
1734                }
1735           }
1736      }
1737 }
1738
1739 static Eina_List *
1740 _item_icon_realize(Elm_Genlist_Item *it,
1741                    Evas_Object *target,
1742                    Eina_List *source)
1743 {
1744    Eina_List *res = NULL;
1745
1746    if (it->itc->func.icon_get)
1747      {
1748         const Eina_List *l;
1749         const char *key;
1750
1751         it->mode_icons =
1752            elm_widget_stringlist_get(edje_object_data_get(target,
1753                                                           "icons"));
1754         EINA_LIST_FOREACH(source, l, key)
1755           {
1756              Evas_Object *ic = it->itc->func.icon_get
1757                 ((void *)it->base.data, it->base.widget, key);
1758
1759              if (ic)
1760                {
1761                   res = eina_list_append(res, ic);
1762                   edje_object_part_swallow(it->mode_view, key, ic);
1763                   evas_object_show(ic);
1764                   elm_widget_sub_object_add(it->base.widget, ic);
1765                }
1766           }
1767      }
1768
1769    return res;
1770 }
1771
1772 static void
1773 _item_state_realize(Elm_Genlist_Item *it,
1774                     Evas_Object *target,
1775                     Eina_List *source)
1776 {
1777    if (it->itc->func.state_get)
1778      {
1779         const Eina_List *l;
1780         const char *key;
1781         char buf[4096];
1782
1783         it->mode_states =
1784            elm_widget_stringlist_get(edje_object_data_get(target, "states"));
1785         EINA_LIST_FOREACH(source, l, key)
1786           {
1787              Eina_Bool on = it->itc->func.state_get
1788                 ((void *)it->base.data, it->base.widget, key);
1789
1790              if (on)
1791                {
1792                   snprintf(buf, sizeof(buf), "elm,state,%s,active", key);
1793                   edje_object_signal_emit(target, buf, "elm");
1794                }
1795              else
1796                {
1797                   snprintf(buf, sizeof(buf), "elm,state,%s,passive", key);
1798                   edje_object_signal_emit(target, buf, "elm");
1799                }
1800           }
1801      }
1802 }
1803
1804 static void
1805 _item_realize(Elm_Genlist_Item *it,
1806               int               in,
1807               Eina_Bool         calc)
1808 {
1809    Elm_Genlist_Item *it2;
1810    const char *treesize;
1811    char buf[1024];
1812    int depth, tsize = 20;
1813    Item_Cache *itc = NULL;
1814
1815    if (it->delete_me) return ;
1816    if (it->realized)
1817      {
1818        if (it->order_num_in != in)
1819          {
1820            it->order_num_in = in;
1821            _elm_genlist_item_odd_even_update(it);
1822            _elm_genlist_item_state_update(it, NULL);
1823          }
1824        return;
1825      }
1826    it->order_num_in = in;
1827
1828    if (it->nocache)
1829      it->nocache = EINA_FALSE;
1830    else
1831      itc = _item_cache_find(it);
1832    if (itc)
1833      {
1834         it->base.view = itc->base_view;
1835         itc->base_view = NULL;
1836         it->spacer = itc->spacer;
1837         itc->spacer = NULL;
1838      }
1839    else
1840      {
1841         const char *stacking_even;
1842         const char *stacking;
1843
1844         it->base.view = edje_object_add(evas_object_evas_get(it->base.widget));
1845         edje_object_scale_set(it->base.view,
1846                               elm_widget_scale_get(it->base.widget) *
1847                               _elm_config->scale);
1848         evas_object_smart_member_add(it->base.view, it->wd->pan_smart);
1849         elm_widget_sub_object_add(it->base.widget, it->base.view);
1850
1851         if (it->flags & ELM_GENLIST_ITEM_SUBITEMS)
1852           strncpy(buf, "tree", sizeof(buf));
1853         else strncpy(buf, "item", sizeof(buf));
1854         if (it->wd->compress)
1855           strncat(buf, "_compress", sizeof(buf) - strlen(buf));
1856
1857         strncat(buf, "/", sizeof(buf) - strlen(buf));
1858         strncat(buf, it->itc->item_style, sizeof(buf) - strlen(buf));
1859
1860         _elm_theme_object_set(it->base.widget, it->base.view, "genlist", buf,
1861                               elm_widget_style_get(it->base.widget));
1862
1863         stacking_even = edje_object_data_get(it->base.view, "stacking_even");
1864         if (!stacking_even) stacking_even = "above";
1865         it->stacking_even = !!strcmp("above", stacking_even);
1866
1867         stacking = edje_object_data_get(it->base.view, "stacking");
1868         if (!stacking) stacking = "yes";
1869         it->nostacking = !!strcmp("yes", stacking);
1870
1871         edje_object_mirrored_set(it->base.view,
1872                                  elm_widget_mirrored_get(it->base.widget));
1873         it->spacer =
1874           evas_object_rectangle_add(evas_object_evas_get(it->base.widget));
1875         evas_object_color_set(it->spacer, 0, 0, 0, 0);
1876         elm_widget_sub_object_add(it->base.widget, it->spacer);
1877      }
1878
1879    _elm_genlist_item_odd_even_update(it);
1880
1881    for (it2 = it, depth = 0; it2->parent; it2 = it2->parent)
1882      {
1883         if (it2->parent->flags != ELM_GENLIST_ITEM_GROUP) depth += 1;
1884      }
1885    it->expanded_depth = depth;
1886    treesize = edje_object_data_get(it->base.view, "treesize");
1887    if (treesize) tsize = atoi(treesize);
1888    evas_object_size_hint_min_set(it->spacer,
1889                                  (depth * tsize) * _elm_config->scale, 1);
1890    edje_object_part_swallow(it->base.view, "elm.swallow.pad", it->spacer);
1891    if (!calc)
1892      {
1893         edje_object_signal_callback_add(it->base.view,
1894                                         "elm,action,expand,toggle",
1895                                         "elm", _signal_expand_toggle, it);
1896         edje_object_signal_callback_add(it->base.view, "elm,action,expand",
1897                                         "elm", _signal_expand, it);
1898         edje_object_signal_callback_add(it->base.view, "elm,action,contract",
1899                                         "elm", _signal_contract, it);
1900         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_DOWN,
1901                                        _mouse_down, it);
1902         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_UP,
1903                                        _mouse_up, it);
1904         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_MOVE,
1905                                        _mouse_move, it);
1906         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_DOWN,
1907                                        _multi_down, it);
1908         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_UP,
1909                                        _multi_up, it);
1910         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_MOVE,
1911                                        _multi_move, it);
1912
1913         _elm_genlist_item_state_update(it, itc);
1914      }
1915
1916    if ((calc) && (it->wd->homogeneous) && ((it->wd->item_width) || ((it->wd->item_width) && (it->wd->group_item_width))))
1917      {
1918         /* homogenous genlist shortcut */
1919         if (!it->mincalcd)
1920           {
1921              if (it->flags & ELM_GENLIST_ITEM_GROUP)
1922                {
1923                   it->w = it->minw = it->wd->group_item_width;
1924                   it->h = it->minh = it->wd->group_item_height;
1925                }
1926              else
1927                {
1928                   it->w = it->minw = it->wd->item_width;
1929                   it->h = it->minh = it->wd->item_height;
1930                }
1931              it->mincalcd = EINA_TRUE;
1932           }
1933      }
1934    else
1935      {
1936         /* FIXME: If you see that assert, please notify us and we 
1937            will clean our mess */
1938         assert(eina_list_count(it->icon_objs) != 0);
1939
1940         _item_label_realize(it, it->base.view, it->labels);
1941         it->icon_objs = _item_icon_realize(it, it->base.view, it->icons);
1942         _item_state_realize(it, it->base.view, it->states);
1943
1944         if (!it->mincalcd)
1945           {
1946              Evas_Coord mw = -1, mh = -1;
1947
1948              if (it->wd->height_for_width) mw = it->wd->w;
1949
1950              if (!it->display_only)
1951                elm_coords_finger_size_adjust(1, &mw, 1, &mh);
1952              if (it->wd->height_for_width) mw = it->wd->prev_viewport_w;
1953              edje_object_size_min_restricted_calc(it->base.view, &mw, &mh, mw,
1954                                                   mh);
1955              if (!it->display_only)
1956                elm_coords_finger_size_adjust(1, &mw, 1, &mh);
1957              it->w = it->minw = mw;
1958              it->h = it->minh = mh;
1959              it->mincalcd = EINA_TRUE;
1960
1961              if ((!it->wd->group_item_width) && (it->flags == ELM_GENLIST_ITEM_GROUP))
1962                {
1963                   it->wd->group_item_width = mw;
1964                   it->wd->group_item_height = mh;
1965                }
1966              else if ((!it->wd->item_width) && (it->flags == ELM_GENLIST_ITEM_NONE))
1967                {
1968                   it->wd->item_width = mw;
1969                   it->wd->item_height = mh;
1970                }
1971           }
1972         if (!calc) evas_object_show(it->base.view);
1973      }
1974
1975    if (it->tooltip.content_cb)
1976      {
1977         elm_widget_item_tooltip_content_cb_set(it,
1978                                                it->tooltip.content_cb,
1979                                                it->tooltip.data, NULL);
1980         elm_widget_item_tooltip_style_set(it, it->tooltip.style);
1981      }
1982
1983    if (it->mouse_cursor)
1984      elm_widget_item_cursor_set(it, it->mouse_cursor);
1985
1986    it->realized = EINA_TRUE;
1987    it->want_unrealize = EINA_FALSE;
1988
1989    if (itc) _item_cache_free(itc);
1990    if (!calc) evas_object_smart_callback_call(it->base.widget, "realized", it);
1991 }
1992
1993 static void
1994 _item_unrealize(Elm_Genlist_Item *it, Eina_Bool calc)
1995 {
1996    Evas_Object *icon;
1997
1998    if (!it->realized) return;
1999    if (!calc) evas_object_smart_callback_call(it->base.widget, "unrealized", it);
2000    if (it->long_timer)
2001      {
2002         ecore_timer_del(it->long_timer);
2003         it->long_timer = NULL;
2004      }
2005    if (it->nocache)
2006      {
2007         evas_object_del(it->base.view);
2008         it->base.view = NULL;
2009         evas_object_del(it->spacer);
2010         it->spacer = NULL;
2011      }
2012    else
2013      {
2014         edje_object_mirrored_set(it->base.view, elm_widget_mirrored_get(it->base.widget));
2015         _item_cache_add(it);
2016      }
2017    elm_widget_stringlist_free(it->labels);
2018    it->labels = NULL;
2019    elm_widget_stringlist_free(it->icons);
2020    it->icons = NULL;
2021    elm_widget_stringlist_free(it->states);
2022
2023    EINA_LIST_FREE(it->icon_objs, icon)
2024      evas_object_del(icon);
2025
2026    _mode_item_unrealize(it);
2027    it->states = NULL;
2028    it->realized = EINA_FALSE;
2029    it->want_unrealize = EINA_FALSE;
2030 }
2031
2032 static Eina_Bool
2033 _item_block_recalc(Item_Block *itb,
2034                    int         in,
2035                    int         qadd,
2036                    int         norender)
2037 {
2038    const Eina_List *l;
2039    Elm_Genlist_Item *it;
2040    Evas_Coord minw = 0, minh = 0;
2041    Eina_Bool showme = EINA_FALSE, changed = EINA_FALSE;
2042    Evas_Coord y = 0;
2043
2044    itb->num = in;
2045    EINA_LIST_FOREACH(itb->items, l, it)
2046      {
2047         if (it->delete_me) continue;
2048         showme |= it->showme;
2049         if (!itb->realized)
2050           {
2051              if (qadd)
2052                {
2053                   if (!it->mincalcd) changed = EINA_TRUE;
2054                   if (changed)
2055                     {
2056                        _item_realize(it, in, EINA_TRUE);
2057                        _item_unrealize(it, EINA_TRUE);
2058                     }
2059                }
2060              else
2061                {
2062                   _item_realize(it, in, EINA_TRUE);
2063                   _item_unrealize(it, EINA_TRUE);
2064                }
2065           }
2066         else
2067           _item_realize(it, in, EINA_FALSE);
2068         minh += it->minh;
2069         if (minw < it->minw) minw = it->minw;
2070         in++;
2071         it->x = 0;
2072         it->y = y;
2073         y += it->h;
2074      }
2075    itb->minw = minw;
2076    itb->minh = minh;
2077    itb->changed = EINA_FALSE;
2078    /* force an evas norender to garbage collect deleted objects */
2079    if (norender) evas_norender(evas_object_evas_get(itb->wd->obj));
2080    return showme;
2081 }
2082
2083 static void
2084 _item_block_realize(Item_Block *itb,
2085                     int         in,
2086                     int         full)
2087 {
2088    const Eina_List *l;
2089    Elm_Genlist_Item *it;
2090
2091    if (itb->realized) return;
2092    EINA_LIST_FOREACH(itb->items, l, it)
2093      {
2094         if (it->delete_me) continue;
2095         if (full) _item_realize(it, in, EINA_FALSE);
2096         in++;
2097      }
2098    itb->realized = EINA_TRUE;
2099    itb->want_unrealize = EINA_FALSE;
2100 }
2101
2102 static void
2103 _item_block_unrealize(Item_Block *itb)
2104 {
2105    const Eina_List *l;
2106    Elm_Genlist_Item *it;
2107    Eina_Bool dragging = EINA_FALSE;
2108
2109    if (!itb->realized) return;
2110    EINA_LIST_FOREACH(itb->items, l, it)
2111      {
2112         if (it->flags != ELM_GENLIST_ITEM_GROUP)
2113           {
2114              if (it->dragging)
2115                {
2116                   dragging = EINA_TRUE;
2117                   it->want_unrealize = EINA_TRUE;
2118                }
2119              else
2120                _item_unrealize(it, EINA_FALSE);
2121           }
2122      }
2123    if (!dragging)
2124      {
2125         itb->realized = EINA_FALSE;
2126         itb->want_unrealize = EINA_TRUE;
2127      }
2128    else
2129      itb->want_unrealize = EINA_FALSE;
2130 }
2131
2132 static void
2133 _item_position(Elm_Genlist_Item *it, Evas_Object *view)
2134 {
2135    if (!it) return;
2136    if (!view) return;
2137
2138    evas_object_resize(view, it->w, it->h);
2139    evas_object_move(view, it->scrl_x, it->scrl_y);
2140    evas_object_show(view);
2141 }
2142
2143 static void
2144 _item_block_position(Item_Block *itb,
2145                      int         in)
2146 {
2147    const Eina_List *l;
2148    Elm_Genlist_Item *it;
2149    Elm_Genlist_Item *git;
2150    Evas_Coord y = 0, ox, oy, ow, oh, cvx, cvy, cvw, cvh;
2151    int vis;
2152
2153    evas_object_geometry_get(itb->wd->pan_smart, &ox, &oy, &ow, &oh);
2154    evas_output_viewport_get(evas_object_evas_get(itb->wd->obj), &cvx, &cvy,
2155                             &cvw, &cvh);
2156    EINA_LIST_FOREACH(itb->items, l, it)
2157      {
2158         if (it->delete_me) continue;
2159         it->x = 0;
2160         it->y = y;
2161         it->w = itb->w;
2162         it->scrl_x = itb->x + it->x - it->wd->pan_x + ox;
2163         it->scrl_y = itb->y + it->y - it->wd->pan_y + oy;
2164
2165         vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
2166                                    cvx, cvy, cvw, cvh));
2167         if (it->flags != ELM_GENLIST_ITEM_GROUP)
2168           {
2169              if ((itb->realized) && (!it->realized))
2170                {
2171                   if (vis) _item_realize(it, in, EINA_FALSE);
2172                }
2173              if (it->realized)
2174                {
2175                   if (vis)
2176                     {
2177                        git = it->group_item;
2178                        if (git)
2179                          {
2180                             if (git->scrl_y < oy)
2181                               git->scrl_y = oy;
2182                             if ((git->scrl_y + git->h) > (it->scrl_y + it->h))
2183                               git->scrl_y = (it->scrl_y + it->h) - git->h;
2184                             git->want_realize = EINA_TRUE;
2185                          }
2186                        if (it->mode_view)
2187                           _item_position(it, it->mode_view);
2188                        else
2189                           _item_position(it, it->base.view);
2190                     }
2191                   else
2192                     {
2193                        if (!it->dragging) _item_unrealize(it, EINA_FALSE);
2194                     }
2195                }
2196              in++;
2197           }
2198         else
2199           {
2200              if (vis) it->want_realize = EINA_TRUE;
2201           }
2202         y += it->h;
2203      }
2204 }
2205
2206 static void
2207 _group_items_recalc(void *data)
2208 {
2209    Widget_Data *wd = data;
2210    Eina_List *l;
2211    Elm_Genlist_Item *git;
2212
2213    EINA_LIST_FOREACH(wd->group_items, l, git)
2214      {
2215         if (git->want_realize)
2216           {
2217              if (!git->realized)
2218                _item_realize(git, 0, EINA_FALSE);
2219              evas_object_resize(git->base.view, wd->minw, git->h);
2220              evas_object_move(git->base.view, git->scrl_x, git->scrl_y);
2221              evas_object_show(git->base.view);
2222              evas_object_raise(git->base.view);
2223           }
2224         else if (!git->want_realize && git->realized)
2225           {
2226              if (!git->dragging)
2227                _item_unrealize(git, EINA_FALSE);
2228           }
2229      }
2230 }
2231
2232 static Eina_Bool
2233 _must_recalc_idler(void *data)
2234 {
2235    Widget_Data *wd = data;
2236    if (wd->calc_job) ecore_job_del(wd->calc_job);
2237    wd->calc_job = ecore_job_add(_calc_job, wd);
2238    wd->must_recalc_idler = NULL;
2239    return ECORE_CALLBACK_CANCEL;
2240 }
2241
2242 static void
2243 _calc_job(void *data)
2244 {
2245    Widget_Data *wd = data;
2246    Item_Block *itb;
2247    Evas_Coord minw = -1, minh = 0, y = 0, ow;
2248    Item_Block *chb = NULL;
2249    int in = 0, minw_change = 0;
2250    Eina_Bool changed = EINA_FALSE;
2251    double t0, t;
2252    Eina_Bool did_must_recalc = EINA_FALSE;
2253    if (!wd) return;
2254
2255    t0 = ecore_time_get();
2256    evas_object_geometry_get(wd->pan_smart, NULL, NULL, &ow, &wd->h);
2257    if (wd->w != ow)
2258      {
2259         wd->w = ow;
2260         //        if (wd->height_for_width) changed = EINA_TRUE;
2261      }
2262
2263    EINA_INLIST_FOREACH(wd->blocks, itb)
2264      {
2265         Eina_Bool showme = EINA_FALSE;
2266
2267         itb->num = in;
2268         showme = itb->showme;
2269         itb->showme = EINA_FALSE;
2270         if (chb)
2271           {
2272              if (itb->realized) _item_block_unrealize(itb);
2273           }
2274         if ((itb->changed) || (changed) ||
2275             ((itb->must_recalc) && (!did_must_recalc)))
2276           {
2277              if ((changed) || (itb->must_recalc))
2278                {
2279                   Eina_List *l;
2280                   Elm_Genlist_Item *it;
2281                   EINA_LIST_FOREACH(itb->items, l, it)
2282                     if (it->mincalcd) it->mincalcd = EINA_FALSE;
2283                   itb->changed = EINA_TRUE;
2284                   if (itb->must_recalc) did_must_recalc = EINA_TRUE;
2285                   itb->must_recalc = EINA_FALSE;
2286                }
2287              if (itb->realized) _item_block_unrealize(itb);
2288              showme = _item_block_recalc(itb, in, 0, 1);
2289              chb = itb;
2290           }
2291         itb->y = y;
2292         itb->x = 0;
2293         minh += itb->minh;
2294         if (minw == -1) minw = itb->minw;
2295         else if ((!itb->must_recalc) && (minw < itb->minw))
2296           {
2297              minw = itb->minw;
2298              minw_change = 1;
2299           }
2300         itb->w = minw;
2301         itb->h = itb->minh;
2302         y += itb->h;
2303         in += itb->count;
2304         if ((showme) && (wd->show_item) && (!wd->show_item->queued))
2305           {
2306              wd->show_item->showme = EINA_FALSE;
2307              if (wd->bring_in)
2308                elm_smart_scroller_region_bring_in(wd->scr,
2309                                                   wd->show_item->x +
2310                                                   wd->show_item->block->x,
2311                                                   wd->show_item->y +
2312                                                   wd->show_item->block->y,
2313                                                   wd->show_item->block->w,
2314                                                   wd->show_item->h);
2315              else
2316                elm_smart_scroller_child_region_show(wd->scr,
2317                                                     wd->show_item->x +
2318                                                     wd->show_item->block->x,
2319                                                     wd->show_item->y +
2320                                                     wd->show_item->block->y,
2321                                                     wd->show_item->block->w,
2322                                                     wd->show_item->h);
2323              wd->show_item = NULL;
2324           }
2325      }
2326    if (minw_change)
2327      {
2328         EINA_INLIST_FOREACH(wd->blocks, itb)
2329           {
2330              itb->minw = minw;
2331              itb->w = itb->minw;
2332           }
2333      }
2334    if ((chb) && (EINA_INLIST_GET(chb)->next))
2335      {
2336         EINA_INLIST_FOREACH(EINA_INLIST_GET(chb)->next, itb)
2337           {
2338              if (itb->realized) _item_block_unrealize(itb);
2339           }
2340      }
2341    wd->realminw = minw;
2342    if (minw < wd->w) minw = wd->w;
2343    if ((minw != wd->minw) || (minh != wd->minh))
2344      {
2345         wd->minw = minw;
2346         wd->minh = minh;
2347         evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
2348         _sizing_eval(wd->obj);
2349         if ((wd->anchor_item) && (wd->anchor_item->block))
2350           {
2351              Elm_Genlist_Item *it;
2352              Evas_Coord it_y;
2353
2354              it = wd->anchor_item;
2355              it_y = wd->anchor_y;
2356              elm_smart_scroller_child_pos_set(wd->scr, wd->pan_x,
2357                                               it->block->y + it->y + it_y);
2358              wd->anchor_item = it;
2359              wd->anchor_y = it_y;
2360           }
2361      }
2362    t = ecore_time_get();
2363    if (did_must_recalc)
2364      {
2365         if (!wd->must_recalc_idler)
2366           wd->must_recalc_idler = ecore_idler_add(_must_recalc_idler, wd);
2367      }
2368    wd->calc_job = NULL;
2369    evas_object_smart_changed(wd->pan_smart);
2370 }
2371
2372 static void
2373 _update_job(void *data)
2374 {
2375    Widget_Data *wd = data;
2376    Eina_List *l2;
2377    Item_Block *itb;
2378    int num, num0, position = 0, recalc = 0;
2379    if (!wd) return;
2380    wd->update_job = NULL;
2381    num = 0;
2382    EINA_INLIST_FOREACH(wd->blocks, itb)
2383      {
2384         Evas_Coord itminw, itminh;
2385         Elm_Genlist_Item *it;
2386
2387         if (!itb->updateme)
2388           {
2389              num += itb->count;
2390              if (position)
2391                _item_block_position(itb, num);
2392              continue;
2393           }
2394         num0 = num;
2395         recalc = 0;
2396         EINA_LIST_FOREACH(itb->items, l2, it)
2397           {
2398              if (it->updateme)
2399                {
2400                   itminw = it->minw;
2401                   itminh = it->minh;
2402
2403                   it->updateme = EINA_FALSE;
2404                   if (it->realized)
2405                     {
2406                        _item_unrealize(it, EINA_FALSE);
2407                        _item_realize(it, num, EINA_FALSE);
2408                        position = 1;
2409                     }
2410                   else
2411                     {
2412                        _item_realize(it, num, EINA_TRUE);
2413                        _item_unrealize(it, EINA_TRUE);
2414                     }
2415                   if ((it->minw != itminw) || (it->minh != itminh))
2416                     recalc = 1;
2417                }
2418              num++;
2419           }
2420         itb->updateme = EINA_FALSE;
2421         if (recalc)
2422           {
2423              position = 1;
2424              itb->changed = EINA_TRUE;
2425              _item_block_recalc(itb, num0, 0, 1);
2426              _item_block_position(itb, num0);
2427           }
2428      }
2429    if (position)
2430      {
2431         if (wd->calc_job) ecore_job_del(wd->calc_job);
2432         wd->calc_job = ecore_job_add(_calc_job, wd);
2433      }
2434 }
2435
2436 static void
2437 _pan_set(Evas_Object *obj,
2438          Evas_Coord   x,
2439          Evas_Coord   y)
2440 {
2441    Pan *sd = evas_object_smart_data_get(obj);
2442    Item_Block *itb;
2443
2444    //   Evas_Coord ow, oh;
2445    //   evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2446    //   ow = sd->wd->minw - ow;
2447    //   if (ow < 0) ow = 0;
2448    //   oh = sd->wd->minh - oh;
2449    //   if (oh < 0) oh = 0;
2450    //   if (x < 0) x = 0;
2451    //   if (y < 0) y = 0;
2452    //   if (x > ow) x = ow;
2453    //   if (y > oh) y = oh;
2454    if ((x == sd->wd->pan_x) && (y == sd->wd->pan_y)) return;
2455    sd->wd->pan_x = x;
2456    sd->wd->pan_y = y;
2457
2458    EINA_INLIST_FOREACH(sd->wd->blocks, itb)
2459      {
2460         if ((itb->y + itb->h) > y)
2461           {
2462              Elm_Genlist_Item *it;
2463              Eina_List *l2;
2464
2465              EINA_LIST_FOREACH(itb->items, l2, it)
2466                {
2467                   if ((itb->y + it->y) >= y)
2468                     {
2469                        sd->wd->anchor_item = it;
2470                        sd->wd->anchor_y = -(itb->y + it->y - y);
2471                        goto done;
2472                     }
2473                }
2474           }
2475      }
2476 done:
2477    evas_object_smart_changed(obj);
2478 }
2479
2480 static void
2481 _pan_get(Evas_Object *obj,
2482          Evas_Coord  *x,
2483          Evas_Coord  *y)
2484 {
2485    Pan *sd = evas_object_smart_data_get(obj);
2486
2487    if (x) *x = sd->wd->pan_x;
2488    if (y) *y = sd->wd->pan_y;
2489 }
2490
2491 static void
2492 _pan_max_get(Evas_Object *obj,
2493              Evas_Coord  *x,
2494              Evas_Coord  *y)
2495 {
2496    Pan *sd = evas_object_smart_data_get(obj);
2497    Evas_Coord ow, oh;
2498
2499    evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2500    ow = sd->wd->minw - ow;
2501    if (ow < 0) ow = 0;
2502    oh = sd->wd->minh - oh;
2503    if (oh < 0) oh = 0;
2504    if (x) *x = ow;
2505    if (y) *y = oh;
2506 }
2507
2508 static void
2509 _pan_min_get(Evas_Object *obj __UNUSED__,
2510              Evas_Coord  *x,
2511              Evas_Coord  *y)
2512 {
2513    if (x) *x = 0;
2514    if (y) *y = 0;
2515 }
2516
2517 static void
2518 _pan_child_size_get(Evas_Object *obj,
2519                     Evas_Coord  *w,
2520                     Evas_Coord  *h)
2521 {
2522    Pan *sd = evas_object_smart_data_get(obj);
2523
2524    if (w) *w = sd->wd->minw;
2525    if (h) *h = sd->wd->minh;
2526 }
2527
2528 static void
2529 _pan_add(Evas_Object *obj)
2530 {
2531    Pan *sd;
2532    Evas_Object_Smart_Clipped_Data *cd;
2533
2534    _pan_sc.add(obj);
2535    cd = evas_object_smart_data_get(obj);
2536    sd = ELM_NEW(Pan);
2537    if (!sd) return;
2538    sd->__clipped_data = *cd;
2539    free(cd);
2540    evas_object_smart_data_set(obj, sd);
2541 }
2542
2543 static void
2544 _pan_del(Evas_Object *obj)
2545 {
2546    Pan *sd = evas_object_smart_data_get(obj);
2547
2548    if (!sd) return;
2549    if (sd->resize_job)
2550      {
2551         ecore_job_del(sd->resize_job);
2552         sd->resize_job = NULL;
2553      }
2554    _pan_sc.del(obj);
2555 }
2556
2557 static void
2558 _pan_resize_job(void *data)
2559 {
2560    Pan *sd = data;
2561    _sizing_eval(sd->wd->obj);
2562    sd->resize_job = NULL;
2563 }
2564
2565 static void
2566 _pan_resize(Evas_Object *obj,
2567             Evas_Coord   w,
2568             Evas_Coord   h)
2569 {
2570    Pan *sd = evas_object_smart_data_get(obj);
2571    Evas_Coord ow, oh;
2572
2573    evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2574    if ((ow == w) && (oh == h)) return;
2575    if ((sd->wd->height_for_width) && (ow != w))
2576      {
2577         if (sd->resize_job) ecore_job_del(sd->resize_job);
2578         sd->resize_job = ecore_job_add(_pan_resize_job, sd);
2579      }
2580    if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
2581    sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
2582 }
2583
2584 static void
2585 _pan_calculate(Evas_Object *obj)
2586 {
2587    Pan *sd = evas_object_smart_data_get(obj);
2588    Item_Block *itb;
2589    Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
2590    int in = 0;
2591    Elm_Genlist_Item *git;
2592    Eina_List *l;
2593
2594    evas_object_geometry_get(obj, &ox, &oy, &ow, &oh);
2595    evas_output_viewport_get(evas_object_evas_get(obj), &cvx, &cvy, &cvw, &cvh);
2596    EINA_LIST_FOREACH(sd->wd->group_items, l, git)
2597      {
2598         git->want_realize = EINA_FALSE;
2599      }
2600    EINA_INLIST_FOREACH(sd->wd->blocks, itb)
2601      {
2602         itb->w = sd->wd->minw;
2603         if (ELM_RECTS_INTERSECT(itb->x - sd->wd->pan_x + ox,
2604                                 itb->y - sd->wd->pan_y + oy,
2605                                 itb->w, itb->h,
2606                                 cvx, cvy, cvw, cvh))
2607           {
2608              if ((!itb->realized) || (itb->changed))
2609                _item_block_realize(itb, in, 0);
2610              _item_block_position(itb, in);
2611           }
2612         else
2613           {
2614              if (itb->realized) _item_block_unrealize(itb);
2615           }
2616         in += itb->count;
2617      }
2618    _group_items_recalc(sd->wd);
2619 }
2620
2621 static void
2622 _pan_move(Evas_Object *obj,
2623           Evas_Coord   x __UNUSED__,
2624           Evas_Coord   y __UNUSED__)
2625 {
2626    Pan *sd = evas_object_smart_data_get(obj);
2627
2628    if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
2629    sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
2630 }
2631
2632 static void
2633 _hold_on(void        *data __UNUSED__,
2634          Evas_Object *obj,
2635          void        *event_info __UNUSED__)
2636 {
2637    Widget_Data *wd = elm_widget_data_get(obj);
2638    if (!wd) return;
2639    elm_smart_scroller_hold_set(wd->scr, 1);
2640 }
2641
2642 static void
2643 _hold_off(void        *data __UNUSED__,
2644           Evas_Object *obj,
2645           void        *event_info __UNUSED__)
2646 {
2647    Widget_Data *wd = elm_widget_data_get(obj);
2648    if (!wd) return;
2649    elm_smart_scroller_hold_set(wd->scr, 0);
2650 }
2651
2652 static void
2653 _freeze_on(void        *data __UNUSED__,
2654            Evas_Object *obj,
2655            void        *event_info __UNUSED__)
2656 {
2657    Widget_Data *wd = elm_widget_data_get(obj);
2658    if (!wd) return;
2659    elm_smart_scroller_freeze_set(wd->scr, 1);
2660 }
2661
2662 static void
2663 _freeze_off(void        *data __UNUSED__,
2664             Evas_Object *obj,
2665             void        *event_info __UNUSED__)
2666 {
2667    Widget_Data *wd = elm_widget_data_get(obj);
2668    if (!wd) return;
2669    elm_smart_scroller_freeze_set(wd->scr, 0);
2670 }
2671
2672 static void
2673 _scroll_edge_left(void        *data,
2674                   Evas_Object *scr __UNUSED__,
2675                   void        *event_info __UNUSED__)
2676 {
2677    Evas_Object *obj = data;
2678    evas_object_smart_callback_call(obj, "scroll,edge,left", NULL);
2679 }
2680
2681 static void
2682 _scroll_edge_right(void        *data,
2683                    Evas_Object *scr __UNUSED__,
2684                    void        *event_info __UNUSED__)
2685 {
2686    Evas_Object *obj = data;
2687    evas_object_smart_callback_call(obj, "scroll,edge,right", NULL);
2688 }
2689
2690 static void
2691 _scroll_edge_top(void        *data,
2692                  Evas_Object *scr __UNUSED__,
2693                  void        *event_info __UNUSED__)
2694 {
2695    Evas_Object *obj = data;
2696    evas_object_smart_callback_call(obj, "scroll,edge,top", NULL);
2697 }
2698
2699 static void
2700 _scroll_edge_bottom(void        *data,
2701                     Evas_Object *scr __UNUSED__,
2702                     void        *event_info __UNUSED__)
2703 {
2704    Evas_Object *obj = data;
2705    evas_object_smart_callback_call(obj, "scroll,edge,bottom", NULL);
2706 }
2707
2708 static void
2709 _mode_item_realize(Elm_Genlist_Item *it)
2710 {
2711    char buf[1024];
2712
2713    if ((it->mode_view) || (it->delete_me)) return;
2714
2715    it->mode_view = edje_object_add(evas_object_evas_get(it->base.widget));
2716    edje_object_scale_set(it->mode_view,
2717                          elm_widget_scale_get(it->base.widget) *
2718                          _elm_config->scale);
2719    evas_object_smart_member_add(it->mode_view, it->wd->pan_smart);
2720    elm_widget_sub_object_add(it->base.widget, it->mode_view);
2721
2722    strncpy(buf, "item", sizeof(buf));
2723    if (it->wd->compress)
2724      strncat(buf, "_compress", sizeof(buf) - strlen(buf));
2725
2726    if (it->order_num_in & 0x1) strncat(buf, "_odd", sizeof(buf) - strlen(buf));
2727    strncat(buf, "/", sizeof(buf) - strlen(buf));
2728    strncat(buf, it->itc->mode_item_style, sizeof(buf) - strlen(buf));
2729
2730    _elm_theme_object_set(it->base.widget, it->mode_view, "genlist", buf,
2731                          elm_widget_style_get(it->base.widget));
2732    edje_object_mirrored_set(it->mode_view,
2733                             elm_widget_mirrored_get(it->base.widget));
2734
2735    /* signal callback add */
2736    evas_object_event_callback_add(it->mode_view, EVAS_CALLBACK_MOUSE_DOWN,
2737                                   _mouse_down, it);
2738    evas_object_event_callback_add(it->mode_view, EVAS_CALLBACK_MOUSE_UP,
2739                                   _mouse_up, it);
2740    evas_object_event_callback_add(it->mode_view, EVAS_CALLBACK_MOUSE_MOVE,
2741                                   _mouse_move, it);
2742
2743    /* label_get, icon_get, state_get */
2744    /* FIXME: If you see that assert, please notify us and we
2745       will clean our mess */
2746    assert(eina_list_count(it->mode_icon_objs) != 0);
2747
2748    _item_label_realize(it, it->mode_view, it->mode_labels);
2749    it->mode_icon_objs = _item_icon_realize(it, it->mode_view, it->mode_icons);
2750    _item_state_realize(it, it->mode_view, it->mode_states);
2751
2752    edje_object_part_swallow(it->mode_view,
2753                             edje_object_data_get(it->mode_view, "mode_part"),
2754                             it->base.view);
2755
2756    it->want_unrealize = EINA_FALSE;
2757 }
2758
2759 static void
2760 _mode_item_unrealize(Elm_Genlist_Item *it)
2761 {
2762    Widget_Data *wd = it->wd;
2763    Evas_Object *icon;
2764    if (!it->mode_view) return;
2765
2766    elm_widget_stringlist_free(it->mode_labels);
2767    it->mode_labels = NULL;
2768    elm_widget_stringlist_free(it->mode_icons);
2769    it->mode_icons = NULL;
2770    elm_widget_stringlist_free(it->mode_states);
2771
2772    EINA_LIST_FREE(it->mode_icon_objs, icon)
2773      evas_object_del(icon);
2774
2775    edje_object_part_unswallow(it->mode_view, it->base.view);
2776    evas_object_smart_member_add(it->base.view, wd->pan_smart);
2777    evas_object_del(it->mode_view);
2778    it->mode_view = NULL;
2779
2780    if (wd->mode_item == it)
2781      wd->mode_item = NULL;
2782 }
2783
2784 static void
2785 _item_mode_set(Elm_Genlist_Item *it)
2786 {
2787    if (!it) return;
2788    Widget_Data *wd = it->wd;
2789    if (!wd) return;
2790    char buf[1024];
2791
2792    wd->mode_item = it;
2793    it->nocache = EINA_TRUE;
2794
2795    if (wd->scr_hold_timer)
2796      {
2797         ecore_timer_del(wd->scr_hold_timer);
2798         wd->scr_hold_timer = NULL;
2799      }
2800    elm_smart_scroller_hold_set(wd->scr, EINA_TRUE);
2801    wd->scr_hold_timer = ecore_timer_add(0.1, _scr_hold_timer_cb, wd);
2802
2803    _mode_item_realize(it);
2804    _item_position(it, it->mode_view);
2805
2806    snprintf(buf, sizeof(buf), "elm,state,%s,active", wd->mode_type);
2807    edje_object_signal_emit(it->mode_view, buf, "elm");
2808 }
2809
2810 static void
2811 _item_mode_unset(Widget_Data *wd)
2812 {
2813    if (!wd) return;
2814    if (!wd->mode_item) return;
2815    char buf[1024], buf2[1024];
2816    Elm_Genlist_Item *it;
2817
2818    it = wd->mode_item;
2819    it->nocache = EINA_TRUE;
2820
2821    snprintf(buf, sizeof(buf), "elm,state,%s,passive", wd->mode_type);
2822    snprintf(buf2, sizeof(buf2), "elm,state,%s,passive,finished", wd->mode_type);
2823
2824    edje_object_signal_emit(it->mode_view, buf, "elm");
2825    edje_object_signal_callback_add(it->mode_view, buf2, "elm", _mode_finished_signal_cb, it);
2826
2827    wd->mode_item = NULL;
2828 }
2829
2830 /**
2831  * Add a new Genlist object
2832  *
2833  * @param parent The parent object
2834  * @return The new object or NULL if it cannot be created
2835  *
2836  * @ingroup Genlist
2837  */
2838 EAPI Evas_Object *
2839 elm_genlist_add(Evas_Object *parent)
2840 {
2841    Evas_Object *obj;
2842    Evas *e;
2843    Widget_Data *wd;
2844    Evas_Coord minw, minh;
2845    static Evas_Smart *smart = NULL;
2846
2847    if (!smart)
2848      {
2849         static Evas_Smart_Class sc;
2850
2851         evas_object_smart_clipped_smart_set(&_pan_sc);
2852         sc = _pan_sc;
2853         sc.name = "elm_genlist_pan";
2854         sc.version = EVAS_SMART_CLASS_VERSION;
2855         sc.add = _pan_add;
2856         sc.del = _pan_del;
2857         sc.resize = _pan_resize;
2858         sc.move = _pan_move;
2859         sc.calculate = _pan_calculate;
2860         if (!(smart = evas_smart_class_new(&sc))) return NULL;
2861      }
2862
2863    ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
2864
2865    ELM_SET_WIDTYPE(widtype, "genlist");
2866    elm_widget_type_set(obj, "genlist");
2867    elm_widget_sub_object_add(parent, obj);
2868    elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
2869    elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
2870    elm_widget_data_set(obj, wd);
2871    elm_widget_del_hook_set(obj, _del_hook);
2872    elm_widget_del_pre_hook_set(obj, _del_pre_hook);
2873    elm_widget_theme_hook_set(obj, _theme_hook);
2874    elm_widget_can_focus_set(obj, EINA_TRUE);
2875    elm_widget_event_hook_set(obj, _event_hook);
2876    elm_widget_on_show_region_hook_set(obj, _show_region_hook, obj);
2877
2878    wd->scr = elm_smart_scroller_add(e);
2879    elm_smart_scroller_widget_set(wd->scr, obj);
2880    elm_smart_scroller_object_theme_set(obj, wd->scr, "genlist", "base",
2881                                        elm_widget_style_get(obj));
2882    elm_smart_scroller_bounce_allow_set(wd->scr, EINA_FALSE,
2883                                        _elm_config->thumbscroll_bounce_enable);
2884    elm_widget_resize_object_set(obj, wd->scr);
2885
2886    evas_object_smart_callback_add(wd->scr, "edge,left", _scroll_edge_left, obj);
2887    evas_object_smart_callback_add(wd->scr, "edge,right", _scroll_edge_right,
2888                                   obj);
2889    evas_object_smart_callback_add(wd->scr, "edge,top", _scroll_edge_top, obj);
2890    evas_object_smart_callback_add(wd->scr, "edge,bottom", _scroll_edge_bottom,
2891                                   obj);
2892
2893    wd->obj = obj;
2894    wd->mode = ELM_LIST_SCROLL;
2895    wd->max_items_per_block = MAX_ITEMS_PER_BLOCK;
2896    wd->item_cache_max = wd->max_items_per_block * 2;
2897    wd->longpress_timeout = _elm_config->longpress_timeout;
2898
2899    evas_object_smart_callback_add(obj, "scroll-hold-on", _hold_on, obj);
2900    evas_object_smart_callback_add(obj, "scroll-hold-off", _hold_off, obj);
2901    evas_object_smart_callback_add(obj, "scroll-freeze-on", _freeze_on, obj);
2902    evas_object_smart_callback_add(obj, "scroll-freeze-off", _freeze_off, obj);
2903
2904    wd->pan_smart = evas_object_smart_add(e, smart);
2905    wd->pan = evas_object_smart_data_get(wd->pan_smart);
2906    wd->pan->wd = wd;
2907
2908    elm_smart_scroller_extern_pan_set(wd->scr, wd->pan_smart,
2909                                      _pan_set, _pan_get, _pan_max_get,
2910                                      _pan_min_get, _pan_child_size_get);
2911
2912    edje_object_size_min_calc(elm_smart_scroller_edje_object_get(wd->scr),
2913                              &minw, &minh);
2914    evas_object_size_hint_min_set(obj, minw, minh);
2915
2916    _mirrored_set(obj, elm_widget_mirrored_get(obj));
2917    _sizing_eval(obj);
2918    return obj;
2919 }
2920
2921 static Elm_Genlist_Item *
2922 _item_new(Widget_Data                  *wd,
2923           const Elm_Genlist_Item_Class *itc,
2924           const void                   *data,
2925           Elm_Genlist_Item             *parent,
2926           Elm_Genlist_Item_Flags        flags,
2927           Evas_Smart_Cb                 func,
2928           const void                   *func_data)
2929 {
2930    Elm_Genlist_Item *it;
2931
2932    it = elm_widget_item_new(wd->obj, Elm_Genlist_Item);
2933    if (!it) return NULL;
2934    it->wd = wd;
2935    it->itc = itc;
2936    it->base.data = data;
2937    it->parent = parent;
2938    it->flags = flags;
2939    it->func.func = func;
2940    it->func.data = func_data;
2941    it->mouse_cursor = NULL;
2942    it->expanded_depth = 0;
2943    return it;
2944 }
2945
2946 static void
2947 _item_block_add(Widget_Data      *wd,
2948                 Elm_Genlist_Item *it)
2949 {
2950    Item_Block *itb = NULL;
2951
2952    if (!it->rel)
2953      {
2954 newblock:
2955         if (it->rel)
2956           {
2957              itb = calloc(1, sizeof(Item_Block));
2958              if (!itb) return;
2959              itb->wd = wd;
2960              if (!it->rel->block)
2961                {
2962                   wd->blocks =
2963                     eina_inlist_append(wd->blocks, EINA_INLIST_GET(itb));
2964                   itb->items = eina_list_append(itb->items, it);
2965                }
2966              else
2967                {
2968                   if (it->before)
2969                     {
2970                        wd->blocks = eina_inlist_prepend_relative
2971                            (wd->blocks, EINA_INLIST_GET(itb),
2972                            EINA_INLIST_GET(it->rel->block));
2973                        itb->items =
2974                          eina_list_prepend_relative(itb->items, it, it->rel);
2975                     }
2976                   else
2977                     {
2978                        wd->blocks = eina_inlist_append_relative
2979                            (wd->blocks, EINA_INLIST_GET(itb),
2980                            EINA_INLIST_GET(it->rel->block));
2981                        itb->items =
2982                          eina_list_append_relative(itb->items, it, it->rel);
2983                     }
2984                }
2985           }
2986         else
2987           {
2988              if (it->before)
2989                {
2990                   if (wd->blocks)
2991                     {
2992                        itb = (Item_Block *)(wd->blocks);
2993                        if (itb->count >= wd->max_items_per_block)
2994                          {
2995                             itb = calloc(1, sizeof(Item_Block));
2996                             if (!itb) return;
2997                             itb->wd = wd;
2998                             wd->blocks =
2999                               eina_inlist_prepend(wd->blocks,
3000                                                   EINA_INLIST_GET(itb));
3001                          }
3002                     }
3003                   else
3004                     {
3005                        itb = calloc(1, sizeof(Item_Block));
3006                        if (!itb) return;
3007                        itb->wd = wd;
3008                        wd->blocks =
3009                          eina_inlist_prepend(wd->blocks, EINA_INLIST_GET(itb));
3010                     }
3011                   itb->items = eina_list_prepend(itb->items, it);
3012                }
3013              else
3014                {
3015                   if (wd->blocks)
3016                     {
3017                        itb = (Item_Block *)(wd->blocks->last);
3018                        if (itb->count >= wd->max_items_per_block)
3019                          {
3020                             itb = calloc(1, sizeof(Item_Block));
3021                             if (!itb) return;
3022                             itb->wd = wd;
3023                             wd->blocks =
3024                               eina_inlist_append(wd->blocks,
3025                                                  EINA_INLIST_GET(itb));
3026                          }
3027                     }
3028                   else
3029                     {
3030                        itb = calloc(1, sizeof(Item_Block));
3031                        if (!itb) return;
3032                        itb->wd = wd;
3033                        wd->blocks =
3034                          eina_inlist_append(wd->blocks, EINA_INLIST_GET(itb));
3035                     }
3036                   itb->items = eina_list_append(itb->items, it);
3037                }
3038           }
3039      }
3040    else
3041      {
3042         itb = it->rel->block;
3043         if (!itb) goto newblock;
3044         if (it->before)
3045           itb->items = eina_list_prepend_relative(itb->items, it, it->rel);
3046         else
3047           itb->items = eina_list_append_relative(itb->items, it, it->rel);
3048      }
3049    itb->count++;
3050    itb->changed = EINA_TRUE;
3051    it->block = itb;
3052    if (itb->wd->calc_job) ecore_job_del(itb->wd->calc_job);
3053    itb->wd->calc_job = ecore_job_add(_calc_job, itb->wd);
3054    if (it->rel)
3055      {
3056         it->rel->relcount--;
3057         if ((it->rel->delete_me) && (!it->rel->relcount))
3058           _item_del(it->rel);
3059         it->rel = NULL;
3060      }
3061    if (itb->count > itb->wd->max_items_per_block)
3062      {
3063         int newc;
3064         Item_Block *itb2;
3065         Elm_Genlist_Item *it2;
3066
3067         newc = itb->count / 2;
3068         itb2 = calloc(1, sizeof(Item_Block));
3069         if (!itb2) return;
3070         itb2->wd = wd;
3071         wd->blocks =
3072           eina_inlist_append_relative(wd->blocks, EINA_INLIST_GET(itb2),
3073                                       EINA_INLIST_GET(itb));
3074         itb2->changed = EINA_TRUE;
3075         while ((itb->count > newc) && (itb->items))
3076           {
3077              Eina_List *l;
3078
3079              l = eina_list_last(itb->items);
3080              it2 = l->data;
3081              itb->items = eina_list_remove_list(itb->items, l);
3082              itb->count--;
3083
3084              itb2->items = eina_list_prepend(itb2->items, it2);
3085              it2->block = itb2;
3086              itb2->count++;
3087           }
3088      }
3089 }
3090
3091 static int
3092 _queue_process(Widget_Data *wd,
3093                int          norender)
3094 {
3095    int n;
3096    Eina_Bool showme = EINA_FALSE;
3097    double t0, t;
3098
3099    t0 = ecore_time_get();
3100    for (n = 0; (wd->queue) && (n < 128); n++)
3101      {
3102         Elm_Genlist_Item *it;
3103
3104         it = wd->queue->data;
3105         wd->queue = eina_list_remove_list(wd->queue, wd->queue);
3106         it->queued = EINA_FALSE;
3107         _item_block_add(wd, it);
3108         t = ecore_time_get();
3109         if (it->block->changed)
3110           {
3111              showme = _item_block_recalc(it->block, it->block->num, 1,
3112                                          norender);
3113              it->block->changed = 0;
3114           }
3115         if (showme) it->block->showme = EINA_TRUE;
3116         if (eina_inlist_count(wd->blocks) > 1)
3117           {
3118              if ((t - t0) > (ecore_animator_frametime_get())) break;
3119           }
3120      }
3121    return n;
3122 }
3123
3124 static Eina_Bool
3125 _item_idler(void *data)
3126 {
3127    Widget_Data *wd = data;
3128
3129    //xxx
3130    //static double q_start = 0.0;
3131    //if (q_start == 0.0) q_start = ecore_time_get();
3132    //xxx
3133
3134    if (_queue_process(wd, 1) > 0)
3135      {
3136         if (wd->calc_job) ecore_job_del(wd->calc_job);
3137         wd->calc_job = ecore_job_add(_calc_job, wd);
3138      }
3139    if (!wd->queue)
3140      {
3141         //xxx
3142         //printf("PROCESS TIME: %3.3f\n", ecore_time_get() - q_start);
3143         //xxx
3144         wd->queue_idler = NULL;
3145         return ECORE_CALLBACK_CANCEL;
3146      }
3147    return ECORE_CALLBACK_RENEW;
3148 }
3149
3150 static void
3151 _item_queue(Widget_Data      *wd,
3152             Elm_Genlist_Item *it)
3153 {
3154    if (it->queued) return;
3155    it->queued = EINA_TRUE;
3156    wd->queue = eina_list_append(wd->queue, it);
3157    while ((wd->queue) && ((!wd->blocks) || (!wd->blocks->next)))
3158      {
3159         if (wd->queue_idler)
3160           {
3161              ecore_idler_del(wd->queue_idler);
3162              wd->queue_idler = NULL;
3163           }
3164         _queue_process(wd, 0);
3165      }
3166    if (!wd->queue_idler) wd->queue_idler = ecore_idler_add(_item_idler, wd);
3167 }
3168
3169 /**
3170  * Append item to the end of the genlist
3171  *
3172  * This appends the given item to the end of the list or the end of
3173  * the children if the parent is given.
3174  *
3175  * @param obj The genlist object
3176  * @param itc The item class for the item
3177  * @param data The item data
3178  * @param parent The parent item, or NULL if none
3179  * @param flags Item flags
3180  * @param func Convenience function called when item selected
3181  * @param func_data Data passed to @p func above.
3182  * @return A handle to the item added or NULL if not possible
3183  *
3184  * @ingroup Genlist
3185  */
3186 EAPI Elm_Genlist_Item *
3187 elm_genlist_item_append(Evas_Object                  *obj,
3188                         const Elm_Genlist_Item_Class *itc,
3189                         const void                   *data,
3190                         Elm_Genlist_Item             *parent,
3191                         Elm_Genlist_Item_Flags        flags,
3192                         Evas_Smart_Cb                 func,
3193                         const void                   *func_data)
3194 {
3195    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3196    Widget_Data *wd = elm_widget_data_get(obj);
3197    if (!wd) return NULL;
3198    Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3199                                     func_data);
3200    if (!it) return NULL;
3201    if (!it->parent)
3202      {
3203         if (flags & ELM_GENLIST_ITEM_GROUP)
3204           wd->group_items = eina_list_append(wd->group_items, it);
3205         wd->items = eina_inlist_append(wd->items, EINA_INLIST_GET(it));
3206         it->rel = NULL;
3207      }
3208    else
3209      {
3210         Elm_Genlist_Item *it2 = NULL;
3211         Eina_List *ll = eina_list_last(it->parent->items);
3212         if (ll) it2 = ll->data;
3213         it->parent->items = eina_list_append(it->parent->items, it);
3214         if (!it2) it2 = it->parent;
3215         wd->items =
3216           eina_inlist_append_relative(wd->items, EINA_INLIST_GET(it),
3217                                       EINA_INLIST_GET(it2));
3218         it->rel = it2;
3219         it->rel->relcount++;
3220
3221         if (it->parent->flags & ELM_GENLIST_ITEM_GROUP)
3222           it->group_item = parent;
3223         else if (it->parent->group_item)
3224           it->group_item = it->parent->group_item;
3225      }
3226    it->before = EINA_FALSE;
3227    _item_queue(wd, it);
3228    return it;
3229 }
3230
3231 /**
3232  * Prepend item at start of the genlist
3233  *
3234  * This adds an item to the beginning of the list or beginning of the
3235  * children of the parent if given.
3236  *
3237  * @param obj The genlist object
3238  * @param itc The item class for the item
3239  * @param data The item data
3240  * @param parent The parent item, or NULL if none
3241  * @param flags Item flags
3242  * @param func Convenience function called when item selected
3243  * @param func_data Data passed to @p func above.
3244  * @return A handle to the item added or NULL if not possible
3245  *
3246  * @ingroup Genlist
3247  */
3248 EAPI Elm_Genlist_Item *
3249 elm_genlist_item_prepend(Evas_Object                  *obj,
3250                          const Elm_Genlist_Item_Class *itc,
3251                          const void                   *data,
3252                          Elm_Genlist_Item             *parent,
3253                          Elm_Genlist_Item_Flags        flags,
3254                          Evas_Smart_Cb                 func,
3255                          const void                   *func_data)
3256 {
3257    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3258    Widget_Data *wd = elm_widget_data_get(obj);
3259    if (!wd) return NULL;
3260    Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3261                                     func_data);
3262    if (!it) return NULL;
3263    if (!it->parent)
3264      {
3265         if (flags & ELM_GENLIST_ITEM_GROUP)
3266           wd->group_items = eina_list_prepend(wd->group_items, it);
3267         wd->items = eina_inlist_prepend(wd->items, EINA_INLIST_GET(it));
3268         it->rel = NULL;
3269      }
3270    else
3271      {
3272         Elm_Genlist_Item *it2 = NULL;
3273         Eina_List *ll = it->parent->items;
3274         if (ll) it2 = ll->data;
3275         it->parent->items = eina_list_prepend(it->parent->items, it);
3276         if (!it2) it2 = it->parent;
3277         wd->items =
3278           eina_inlist_prepend_relative(wd->items, EINA_INLIST_GET(it),
3279                                        EINA_INLIST_GET(it2));
3280         it->rel = it2;
3281         it->rel->relcount++;
3282      }
3283    it->before = EINA_TRUE;
3284    _item_queue(wd, it);
3285    return it;
3286 }
3287
3288 /**
3289  * Insert item before another in the genlist
3290  *
3291  * This inserts an item before another in the list. It will be in the
3292  * same tree level or group as the item it is inseted before.
3293  *
3294  * @param obj The genlist object
3295  * @param itc The item class for the item
3296  * @param data The item data
3297  * @param before The item to insert before
3298  * @param flags Item flags
3299  * @param func Convenience function called when item selected
3300  * @param func_data Data passed to @p func above.
3301  * @return A handle to the item added or NULL if not possible
3302  *
3303  * @ingroup Genlist
3304  */
3305 EAPI Elm_Genlist_Item *
3306 elm_genlist_item_insert_before(Evas_Object                  *obj,
3307                                const Elm_Genlist_Item_Class *itc,
3308                                const void                   *data,
3309                                Elm_Genlist_Item             *parent,
3310                                Elm_Genlist_Item             *before,
3311                                Elm_Genlist_Item_Flags        flags,
3312                                Evas_Smart_Cb                 func,
3313                                const void                   *func_data)
3314 {
3315    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3316    EINA_SAFETY_ON_NULL_RETURN_VAL(before, NULL);
3317    Widget_Data *wd = elm_widget_data_get(obj);
3318    if (!wd) return NULL;
3319    Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3320                                     func_data);
3321    if (!it) return NULL;
3322    if (it->parent)
3323      {
3324         it->parent->items = eina_list_prepend_relative(it->parent->items, it,
3325                                                        before);
3326      }
3327    wd->items = eina_inlist_prepend_relative(wd->items, EINA_INLIST_GET(it),
3328                                             EINA_INLIST_GET(before));
3329    it->rel = before;
3330    it->rel->relcount++;
3331    it->before = EINA_TRUE;
3332    _item_queue(wd, it);
3333    return it;
3334 }
3335
3336 /**
3337  * Insert an item after another in the genlst
3338  *
3339  * This inserts an item after another in the list. It will be in the
3340  * same tree level or group as the item it is inseted after.
3341  *
3342  * @param obj The genlist object
3343  * @param itc The item class for the item
3344  * @param data The item data
3345  * @param after The item to insert after
3346  * @param flags Item flags
3347  * @param func Convenience function called when item selected
3348  * @param func_data Data passed to @p func above.
3349  * @return A handle to the item added or NULL if not possible
3350  *
3351  * @ingroup Genlist
3352  */
3353 EAPI Elm_Genlist_Item *
3354 elm_genlist_item_insert_after(Evas_Object                  *obj,
3355                               const Elm_Genlist_Item_Class *itc,
3356                               const void                   *data,
3357                               Elm_Genlist_Item             *parent,
3358                               Elm_Genlist_Item             *after,
3359                               Elm_Genlist_Item_Flags        flags,
3360                               Evas_Smart_Cb                 func,
3361                               const void                   *func_data)
3362 {
3363    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3364    EINA_SAFETY_ON_NULL_RETURN_VAL(after, NULL);
3365    Widget_Data *wd = elm_widget_data_get(obj);
3366    if (!wd) return NULL;
3367    Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3368                                     func_data);
3369    if (!it) return NULL;
3370    wd->items = eina_inlist_append_relative(wd->items, EINA_INLIST_GET(it),
3371                                            EINA_INLIST_GET(after));
3372    if (it->parent)
3373      {
3374         it->parent->items = eina_list_append_relative(it->parent->items, it,
3375                                                       after);
3376      }
3377    it->rel = after;
3378    it->rel->relcount++;
3379    it->before = EINA_FALSE;
3380    _item_queue(wd, it);
3381    return it;
3382 }
3383
3384 /**
3385  * Clear the genlist
3386  *
3387  * This clears all items in the list, leaving it empty.
3388  *
3389  * @param obj The genlist object
3390  *
3391  * @ingroup Genlist
3392  */
3393 EAPI void
3394 elm_genlist_clear(Evas_Object *obj)
3395 {
3396    ELM_CHECK_WIDTYPE(obj, widtype);
3397    Widget_Data *wd = elm_widget_data_get(obj);
3398    if (!wd) return;
3399    if (wd->walking > 0)
3400      {
3401         Elm_Genlist_Item *it;
3402
3403         wd->clear_me = EINA_TRUE;
3404         EINA_INLIST_FOREACH(wd->items, it)
3405           {
3406              it->delete_me = EINA_TRUE;
3407           }
3408         return;
3409      }
3410    while (wd->items)
3411      {
3412         Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
3413
3414         if (wd->anchor_item == it)
3415           {
3416              wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3417              if (!wd->anchor_item)
3418                wd->anchor_item =
3419                  ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3420           }
3421         wd->items = eina_inlist_remove(wd->items, wd->items);
3422         if (it->flags & ELM_GENLIST_ITEM_GROUP)
3423           it->wd->group_items = eina_list_remove(it->wd->group_items, it);
3424         elm_widget_item_pre_notify_del(it);
3425         if (it->realized) _item_unrealize(it, EINA_FALSE);
3426         if (((wd->clear_me) || (!it->delete_me)) && (it->itc->func.del))
3427           it->itc->func.del((void *)it->base.data, it->base.widget);
3428         if (it->long_timer) ecore_timer_del(it->long_timer);
3429         if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
3430         elm_widget_item_del(it);
3431      }
3432    wd->clear_me = EINA_FALSE;
3433    wd->anchor_item = NULL;
3434    while (wd->blocks)
3435      {
3436         Item_Block *itb = (Item_Block *)(wd->blocks);
3437
3438         wd->blocks = eina_inlist_remove(wd->blocks, wd->blocks);
3439         if (itb->items) eina_list_free(itb->items);
3440         free(itb);
3441      }
3442    if (wd->calc_job)
3443      {
3444         ecore_job_del(wd->calc_job);
3445         wd->calc_job = NULL;
3446      }
3447    if (wd->queue_idler)
3448      {
3449         ecore_idler_del(wd->queue_idler);
3450         wd->queue_idler = NULL;
3451      }
3452    if (wd->must_recalc_idler)
3453      {
3454         ecore_idler_del(wd->must_recalc_idler);
3455         wd->must_recalc_idler = NULL;
3456      }
3457    if (wd->queue)
3458      {
3459         eina_list_free(wd->queue);
3460         wd->queue = NULL;
3461      }
3462    if (wd->selected)
3463      {
3464         eina_list_free(wd->selected);
3465         wd->selected = NULL;
3466      }
3467    wd->show_item = NULL;
3468    wd->pan_x = 0;
3469    wd->pan_y = 0;
3470    wd->minw = 0;
3471    wd->minh = 0;
3472    if (wd->pan_smart)
3473      {
3474         evas_object_size_hint_min_set(wd->pan_smart, wd->minw, wd->minh);
3475         evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
3476      }
3477    _sizing_eval(obj);
3478 }
3479
3480 /**
3481  * Enable or disable multi-select in the genlist
3482  *
3483  * This enables (EINA_TRUE) or disables (EINA_FALSE) multi-select in
3484  * the list. This allows more than 1 item to be selected.
3485  *
3486  * @param obj The genlist object
3487  * @param multi Multi-select enable/disable
3488  *
3489  * @ingroup Genlist
3490  */
3491 EAPI void
3492 elm_genlist_multi_select_set(Evas_Object *obj,
3493                              Eina_Bool    multi)
3494 {
3495    ELM_CHECK_WIDTYPE(obj, widtype);
3496    Widget_Data *wd = elm_widget_data_get(obj);
3497    if (!wd) return;
3498    wd->multi = multi;
3499 }
3500
3501 /**
3502  * Gets if multi-select in genlist is enable or disable
3503  *
3504  * @param obj The genlist object
3505  * @return Multi-select enable/disable
3506  * (EINA_TRUE = enabled/EINA_FALSE = disabled)
3507  *
3508  * @ingroup Genlist
3509  */
3510 EAPI Eina_Bool
3511 elm_genlist_multi_select_get(const Evas_Object *obj)
3512 {
3513    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3514    Widget_Data *wd = elm_widget_data_get(obj);
3515    if (!wd) return EINA_FALSE;
3516    return wd->multi;
3517 }
3518
3519 /**
3520  * Get the selectd item in the genlist
3521  *
3522  * This gets the selected item in the list (if multi-select is enabled
3523  * only the first item in the list is selected - which is not very
3524  * useful, so see elm_genlist_selected_items_get() for when
3525  * multi-select is used).
3526  *
3527  * If no item is selected, NULL is returned.
3528  *
3529  * @param obj The genlist object
3530  * @return The selected item, or NULL if none.
3531  *
3532  * @ingroup Genlist
3533  */
3534 EAPI Elm_Genlist_Item *
3535 elm_genlist_selected_item_get(const Evas_Object *obj)
3536 {
3537    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3538    Widget_Data *wd = elm_widget_data_get(obj);
3539    if (!wd) return NULL;
3540    if (wd->selected) return wd->selected->data;
3541    return NULL;
3542 }
3543
3544 /**
3545  * Get a list of selected items in the genlist
3546  *
3547  * This returns a list of the selected items. This list pointer is
3548  * only valid so long as no items are selected or unselected (or
3549  * unselected implicitly by deletion). The list contains
3550  * Elm_Genlist_Item pointers.
3551  *
3552  * @param obj The genlist object
3553  * @return The list of selected items, nor NULL if none are selected.
3554  *
3555  * @ingroup Genlist
3556  */
3557 EAPI const Eina_List *
3558 elm_genlist_selected_items_get(const Evas_Object *obj)
3559 {
3560    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3561    Widget_Data *wd = elm_widget_data_get(obj);
3562    if (!wd) return NULL;
3563    return wd->selected;
3564 }
3565
3566 /**
3567  * Get a list of realized items in genlist
3568  *
3569  * This returns a list of the realized items in the genlist. The list
3570  * contains Elm_Genlist_Item pointers. The list must be freed by the
3571  * caller when done with eina_list_free(). The item pointers in the
3572  * list are only valid so long as those items are not deleted or the
3573  * genlist is not deleted.
3574  *
3575  * @param obj The genlist object
3576  * @return The list of realized items, nor NULL if none are realized.
3577  *
3578  * @ingroup Genlist
3579  */
3580 EAPI Eina_List *
3581 elm_genlist_realized_items_get(const Evas_Object *obj)
3582 {
3583    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3584    Widget_Data *wd = elm_widget_data_get(obj);
3585    Eina_List *list = NULL;
3586    Item_Block *itb;
3587    Eina_Bool done = EINA_FALSE;
3588    if (!wd) return NULL;
3589    EINA_INLIST_FOREACH(wd->blocks, itb)
3590      {
3591         if (itb->realized)
3592           {
3593              Eina_List *l;
3594              Elm_Genlist_Item *it;
3595
3596              done = 1;
3597              EINA_LIST_FOREACH(itb->items, l, it)
3598                {
3599                   if (it->realized) list = eina_list_append(list, it);
3600                }
3601           }
3602         else
3603           {
3604              if (done) break;
3605           }
3606      }
3607    return list;
3608 }
3609
3610 /**
3611  * Get the item that is at the x, y canvas coords
3612  *
3613  * This returns the item at the given coordinates (which are canvas
3614  * relative not object-relative). If an item is at that coordinate,
3615  * that item handle is returned, and if @p posret is not NULL, the
3616  * integer pointed to is set to a value of -1, 0 or 1, depending if
3617  * the coordinate is on the upper portion of that item (-1), on the
3618  * middle section (0) or on the lower part (1). If NULL is returned as
3619  * an item (no item found there), then posret may indicate -1 or 1
3620  * based if the coordinate is above or below all items respectively in
3621  * the genlist.
3622  *
3623  * @param it The item
3624  * @param x The input x coordinate
3625  * @param y The input y coordinate
3626  * @param posret The position relative to the item returned here
3627  * @return The item at the coordinates or NULL if none
3628  *
3629  * @ingroup Genlist
3630  */
3631 EAPI Elm_Genlist_Item *
3632 elm_genlist_at_xy_item_get(const Evas_Object *obj,
3633                            Evas_Coord         x,
3634                            Evas_Coord         y,
3635                            int               *posret)
3636 {
3637    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3638    Widget_Data *wd = elm_widget_data_get(obj);
3639    Evas_Coord ox, oy, ow, oh;
3640    Item_Block *itb;
3641    Evas_Coord lasty;
3642    if (!wd) return NULL;
3643    evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
3644    lasty = oy;
3645    EINA_INLIST_FOREACH(wd->blocks, itb)
3646      {
3647         Eina_List *l;
3648         Elm_Genlist_Item *it;
3649
3650         if (!ELM_RECTS_INTERSECT(ox + itb->x - itb->wd->pan_x,
3651                                  oy + itb->y - itb->wd->pan_y,
3652                                  itb->w, itb->h, x, y, 1, 1))
3653           continue;
3654         EINA_LIST_FOREACH(itb->items, l, it)
3655           {
3656              Evas_Coord itx, ity;
3657
3658              itx = ox + itb->x + it->x - itb->wd->pan_x;
3659              ity = oy + itb->y + it->y - itb->wd->pan_y;
3660              if (ELM_RECTS_INTERSECT(itx, ity, it->w, it->h, x, y, 1, 1))
3661                {
3662                   if (posret)
3663                     {
3664                        if (y <= (ity + (it->h / 4))) *posret = -1;
3665                        else if (y >= (ity + it->h - (it->h / 4)))
3666                          *posret = 1;
3667                        else *posret = 0;
3668                     }
3669                   return it;
3670                }
3671              lasty = ity + it->h;
3672           }
3673      }
3674    if (posret)
3675      {
3676         if (y > lasty) *posret = 1;
3677         else *posret = -1;
3678      }
3679    return NULL;
3680 }
3681
3682 /**
3683  * Get the first item in the genlist
3684  *
3685  * This returns the first item in the list.
3686  *
3687  * @param obj The genlist object
3688  * @return The first item, or NULL if none
3689  *
3690  * @ingroup Genlist
3691  */
3692 EAPI Elm_Genlist_Item *
3693 elm_genlist_first_item_get(const Evas_Object *obj)
3694 {
3695    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3696    Widget_Data *wd = elm_widget_data_get(obj);
3697    if (!wd) return NULL;
3698    if (!wd->items) return NULL;
3699    Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
3700    while ((it) && (it->delete_me))
3701      it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3702    return it;
3703 }
3704
3705 /**
3706  * Get the last item in the genlist
3707  *
3708  * This returns the last item in the list.
3709  *
3710  * @return The last item, or NULL if none
3711  *
3712  * @ingroup Genlist
3713  */
3714 EAPI Elm_Genlist_Item *
3715 elm_genlist_last_item_get(const Evas_Object *obj)
3716 {
3717    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3718    Widget_Data *wd = elm_widget_data_get(obj);
3719    if (!wd) return NULL;
3720    if (!wd->items) return NULL;
3721    Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items->last);
3722    while ((it) && (it->delete_me))
3723      it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3724    return it;
3725 }
3726
3727 /**
3728  * Get the next item in the genlist
3729  *
3730  * This returns the item after the item @p it.
3731  *
3732  * @param it The item
3733  * @return The item after @p it, or NULL if none
3734  *
3735  * @ingroup Genlist
3736  */
3737 EAPI Elm_Genlist_Item *
3738 elm_genlist_item_next_get(const Elm_Genlist_Item *it)
3739 {
3740    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3741    while (it)
3742      {
3743         it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3744         if ((it) && (!it->delete_me)) break;
3745      }
3746    return (Elm_Genlist_Item *)it;
3747 }
3748
3749 /**
3750  * Get the previous item in the genlist
3751  *
3752  * This returns the item before the item @p it.
3753  *
3754  * @param it The item
3755  * @return The item before @p it, or NULL if none
3756  *
3757  * @ingroup Genlist
3758  */
3759 EAPI Elm_Genlist_Item *
3760 elm_genlist_item_prev_get(const Elm_Genlist_Item *it)
3761 {
3762    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3763    while (it)
3764      {
3765         it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3766         if ((it) && (!it->delete_me)) break;
3767      }
3768    return (Elm_Genlist_Item *)it;
3769 }
3770
3771 /**
3772  * Get the genlist object from an item
3773  *
3774  * This returns the genlist object itself that an item belongs to.
3775  *
3776  * @param it The item
3777  * @return The genlist object
3778  *
3779  * @ingroup Genlist
3780  */
3781 EAPI Evas_Object *
3782 elm_genlist_item_genlist_get(const Elm_Genlist_Item *it)
3783 {
3784    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3785    return it->base.widget;
3786 }
3787
3788 /**
3789  * Get the parent item of the given item
3790  *
3791  * This returns the parent item of the item @p it given.
3792  *
3793  * @param it The item
3794  * @return The parent of the item or NULL if none
3795  *
3796  * @ingroup Genlist
3797  */
3798 EAPI Elm_Genlist_Item *
3799 elm_genlist_item_parent_get(const Elm_Genlist_Item *it)
3800 {
3801    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3802    return it->parent;
3803 }
3804
3805 /**
3806  * Clear all sub-items (children) of the given item
3807  *
3808  * This clears all items that are children (or their descendants) of the
3809  * given item @p it.
3810  *
3811  * @param it The item
3812  *
3813  * @ingroup Genlist
3814  */
3815 EAPI void
3816 elm_genlist_item_subitems_clear(Elm_Genlist_Item *it)
3817 {
3818    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
3819    Eina_List *tl = NULL, *l;
3820    Elm_Genlist_Item *it2;
3821
3822    EINA_LIST_FOREACH(it->items, l, it2)
3823      tl = eina_list_append(tl, it2);
3824    EINA_LIST_FREE(tl, it2)
3825      elm_genlist_item_del(it2);
3826 }
3827
3828 /**
3829  * Set the selected state of an item
3830  *
3831  * This sets the selected state (1 selected, 0 not selected) of the given
3832  * item @p it.
3833  *
3834  * @param it The item
3835  * @param selected The selected state
3836  *
3837  * @ingroup Genlist
3838  */
3839 EAPI void
3840 elm_genlist_item_selected_set(Elm_Genlist_Item *it,
3841                               Eina_Bool         selected)
3842 {
3843    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
3844    Widget_Data *wd = elm_widget_data_get(it->base.widget);
3845    if (!wd) return;
3846    if (it->delete_me) return;
3847    selected = !!selected;
3848    if (it->selected == selected) return;
3849
3850    if (selected)
3851      {
3852         if (!wd->multi)
3853           {
3854              while (wd->selected)
3855                _item_unselect(wd->selected->data);
3856           }
3857         _item_highlight(it);
3858         _item_select(it);
3859      }
3860    else
3861      _item_unselect(it);
3862 }
3863
3864 /**
3865  * Get the selected state of an item
3866  *
3867  * This gets the selected state of an item (1 selected, 0 not selected).
3868  *
3869  * @param it The item
3870  * @return The selected state
3871  *
3872  * @ingroup Genlist
3873  */
3874 EAPI Eina_Bool
3875 elm_genlist_item_selected_get(const Elm_Genlist_Item *it)
3876 {
3877    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
3878    return it->selected;
3879 }
3880
3881 /**
3882  * Sets the expanded state of an item (if it's a parent)
3883  *
3884  * This expands or contracts a parent item (thus showing or hiding the
3885  * children).
3886  *
3887  * @param it The item
3888  * @param expanded The expanded state (1 expanded, 0 not expanded).
3889  *
3890  * @ingroup Genlist
3891  */
3892 EAPI void
3893 elm_genlist_item_expanded_set(Elm_Genlist_Item *it,
3894                               Eina_Bool         expanded)
3895 {
3896    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
3897    if (it->expanded == expanded) return;
3898    it->expanded = expanded;
3899    if (it->expanded)
3900      {
3901         if (it->realized)
3902           edje_object_signal_emit(it->base.view, "elm,state,expanded", "elm");
3903         evas_object_smart_callback_call(it->base.widget, "expanded", it);
3904      }
3905    else
3906      {
3907         if (it->realized)
3908           edje_object_signal_emit(it->base.view, "elm,state,contracted", "elm");
3909         evas_object_smart_callback_call(it->base.widget, "contracted", it);
3910      }
3911 }
3912
3913 /**
3914  * Get the expanded state of an item
3915  *
3916  * This gets the expanded state of an item
3917  *
3918  * @param it The item
3919  * @return Thre expanded state
3920  *
3921  * @ingroup Genlist
3922  */
3923 EAPI Eina_Bool
3924 elm_genlist_item_expanded_get(const Elm_Genlist_Item *it)
3925 {
3926    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
3927    return it->expanded;
3928 }
3929
3930 /**
3931  * Get the depth of expanded item
3932  *
3933  * @param it The genlist item object
3934  * @return The depth of expanded item
3935  *
3936  * @ingroup Genlist
3937  */
3938 EAPI int
3939 elm_genlist_item_expanded_depth_get(const Elm_Genlist_Item *it)
3940 {
3941    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, 0);
3942    return it->expanded_depth;
3943 }
3944
3945 /**
3946  * Sets the disabled state of an item.
3947  *
3948  * A disabled item cannot be selected or unselected. It will also
3949  * change appearance to appear disabled. This sets the disabled state
3950  * (1 disabled, 0 not disabled).
3951  *
3952  * @param it The item
3953  * @param disabled The disabled state
3954  *
3955  * @ingroup Genlist
3956  */
3957 EAPI void
3958 elm_genlist_item_disabled_set(Elm_Genlist_Item *it,
3959                               Eina_Bool         disabled)
3960 {
3961    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
3962    if (it->disabled == disabled) return;
3963    if (it->delete_me) return;
3964    it->disabled = disabled;
3965    if (it->realized)
3966      {
3967         if (it->disabled)
3968           edje_object_signal_emit(it->base.view, "elm,state,disabled", "elm");
3969         else
3970           edje_object_signal_emit(it->base.view, "elm,state,enabled", "elm");
3971      }
3972 }
3973
3974 /**
3975  * Get the disabled state of an item
3976  *
3977  * This gets the disabled state of the given item.
3978  *
3979  * @param it The item
3980  * @return The disabled state
3981  *
3982  * @ingroup Genlist
3983  */
3984 EAPI Eina_Bool
3985 elm_genlist_item_disabled_get(const Elm_Genlist_Item *it)
3986 {
3987    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
3988    if (it->delete_me) return EINA_FALSE;
3989    return it->disabled;
3990 }
3991
3992 /**
3993  * Sets the display only state of an item.
3994  *
3995  * A display only item cannot be selected or unselected. It is for
3996  * display only and not selecting or otherwise clicking, dragging
3997  * etc. by the user, thus finger size rules will not be applied to
3998  * this item.
3999  *
4000  * @param it The item
4001  * @param display_only The display only state
4002  *
4003  * @ingroup Genlist
4004  */
4005 EAPI void
4006 elm_genlist_item_display_only_set(Elm_Genlist_Item *it,
4007                                   Eina_Bool         display_only)
4008 {
4009    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4010    if (it->display_only == display_only) return;
4011    if (it->delete_me) return;
4012    it->display_only = display_only;
4013    it->mincalcd = EINA_FALSE;
4014    it->updateme = EINA_TRUE;
4015    if (it->block) it->block->updateme = EINA_TRUE;
4016    if (it->wd->update_job) ecore_job_del(it->wd->update_job);
4017    it->wd->update_job = ecore_job_add(_update_job, it->wd);
4018 }
4019
4020 /**
4021  * Get the display only state of an item
4022  *
4023  * This gets the display only state of the given item.
4024  *
4025  * @param it The item
4026  * @return The display only state
4027  *
4028  * @ingroup Genlist
4029  */
4030 EAPI Eina_Bool
4031 elm_genlist_item_display_only_get(const Elm_Genlist_Item *it)
4032 {
4033    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4034    if (it->delete_me) return EINA_FALSE;
4035    return it->display_only;
4036 }
4037
4038 /**
4039  * Show the given item
4040  *
4041  * This causes genlist to jump to the given item @p it and show it (by
4042  * scrolling), if it is not fully visible.
4043  *
4044  * @param it The item
4045  *
4046  * @ingroup Genlist
4047  */
4048 EAPI void
4049 elm_genlist_item_show(Elm_Genlist_Item *it)
4050 {
4051    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4052    Evas_Coord gith = 0;
4053    if (it->delete_me) return;
4054    if ((it->queued) || (!it->mincalcd))
4055      {
4056         it->wd->show_item = it;
4057         it->wd->bring_in = EINA_TRUE;
4058         it->showme = EINA_TRUE;
4059         return;
4060      }
4061    if (it->wd->show_item)
4062      {
4063         it->wd->show_item->showme = EINA_FALSE;
4064         it->wd->show_item = NULL;
4065      }
4066    if ((it->group_item) && (it->wd->pan_y > (it->y + it->block->y)))
4067      gith = it->group_item->h;
4068    elm_smart_scroller_child_region_show(it->wd->scr,
4069                                         it->x + it->block->x,
4070                                         it->y + it->block->y - gith,
4071                                         it->block->w, it->h);
4072 }
4073
4074 /**
4075  * Bring in the given item
4076  *
4077  * This causes genlist to jump to the given item @p it and show it (by
4078  * scrolling), if it is not fully visible. This may use animation to
4079  * do so and take a period of time
4080  *
4081  * @param it The item
4082  *
4083  * @ingroup Genlist
4084  */
4085 EAPI void
4086 elm_genlist_item_bring_in(Elm_Genlist_Item *it)
4087 {
4088    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4089    Evas_Coord gith = 0;
4090    if (it->delete_me) return;
4091    if ((it->queued) || (!it->mincalcd))
4092      {
4093         it->wd->show_item = it;
4094         it->wd->bring_in = EINA_TRUE;
4095         it->showme = EINA_TRUE;
4096         return;
4097      }
4098    if (it->wd->show_item)
4099      {
4100         it->wd->show_item->showme = EINA_FALSE;
4101         it->wd->show_item = NULL;
4102      }
4103    if ((it->group_item) && (it->wd->pan_y > (it->y + it->block->y)))
4104      gith = it->group_item->h;
4105    elm_smart_scroller_region_bring_in(it->wd->scr,
4106                                       it->x + it->block->x,
4107                                       it->y + it->block->y - gith,
4108                                       it->block->w, it->h);
4109 }
4110
4111 /**
4112  * Show the given item at the top
4113  *
4114  * This causes genlist to jump to the given item @p it and show it (by
4115  * scrolling), if it is not fully visible.
4116  *
4117  * @param it The item
4118  *
4119  * @ingroup Genlist
4120  */
4121 EAPI void
4122 elm_genlist_item_top_show(Elm_Genlist_Item *it)
4123 {
4124    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4125    Evas_Coord ow, oh;
4126    Evas_Coord gith = 0;
4127
4128    if (it->delete_me) return;
4129    if ((it->queued) || (!it->mincalcd))
4130      {
4131         it->wd->show_item = it;
4132         it->wd->bring_in = EINA_TRUE;
4133         it->showme = EINA_TRUE;
4134         return;
4135      }
4136    if (it->wd->show_item)
4137      {
4138         it->wd->show_item->showme = EINA_FALSE;
4139         it->wd->show_item = NULL;
4140      }
4141    evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4142    if (it->group_item) gith = it->group_item->h;
4143    elm_smart_scroller_child_region_show(it->wd->scr,
4144                                         it->x + it->block->x,
4145                                         it->y + it->block->y - gith,
4146                                         it->block->w, oh);
4147 }
4148
4149 /**
4150  * Bring in the given item at the top
4151  *
4152  * This causes genlist to jump to the given item @p it and show it (by
4153  * scrolling), if it is not fully visible. This may use animation to
4154  * do so and take a period of time
4155  *
4156  * @param it The item
4157  *
4158  * @ingroup Genlist
4159  */
4160 EAPI void
4161 elm_genlist_item_top_bring_in(Elm_Genlist_Item *it)
4162 {
4163    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4164    Evas_Coord ow, oh;
4165    Evas_Coord gith = 0;
4166
4167    if (it->delete_me) return;
4168    if ((it->queued) || (!it->mincalcd))
4169      {
4170         it->wd->show_item = it;
4171         it->wd->bring_in = EINA_TRUE;
4172         it->showme = EINA_TRUE;
4173         return;
4174      }
4175    if (it->wd->show_item)
4176      {
4177         it->wd->show_item->showme = EINA_FALSE;
4178         it->wd->show_item = NULL;
4179      }
4180    evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4181    if (it->group_item) gith = it->group_item->h;
4182    elm_smart_scroller_region_bring_in(it->wd->scr,
4183                                       it->x + it->block->x,
4184                                       it->y + it->block->y - gith,
4185                                       it->block->w, oh);
4186 }
4187
4188 /**
4189  * Show the given item at the middle
4190  *
4191  * This causes genlist to jump to the given item @p it and show it (by
4192  * scrolling), if it is not fully visible.
4193  *
4194  * @param it The item
4195  *
4196  * @ingroup Genlist
4197  */
4198 EAPI void
4199 elm_genlist_item_middle_show(Elm_Genlist_Item *it)
4200 {
4201    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4202    Evas_Coord ow, oh;
4203
4204    if (it->delete_me) return;
4205    if ((it->queued) || (!it->mincalcd))
4206      {
4207         it->wd->show_item = it;
4208         it->wd->bring_in = EINA_TRUE;
4209         it->showme = EINA_TRUE;
4210         return;
4211      }
4212    if (it->wd->show_item)
4213      {
4214         it->wd->show_item->showme = EINA_FALSE;
4215         it->wd->show_item = NULL;
4216      }
4217    evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4218    elm_smart_scroller_child_region_show(it->wd->scr,
4219                                         it->x + it->block->x,
4220                                         it->y + it->block->y - oh / 2 +
4221                                         it->h / 2, it->block->w, oh);
4222 }
4223
4224 /**
4225  * Bring in the given item at the middle
4226  *
4227  * This causes genlist to jump to the given item @p it and show it (by
4228  * scrolling), if it is not fully visible. This may use animation to
4229  * do so and take a period of time
4230  *
4231  * @param it The item
4232  *
4233  * @ingroup Genlist
4234  */
4235 EAPI void
4236 elm_genlist_item_middle_bring_in(Elm_Genlist_Item *it)
4237 {
4238    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4239    Evas_Coord ow, oh;
4240
4241    if (it->delete_me) return;
4242    if ((it->queued) || (!it->mincalcd))
4243      {
4244         it->wd->show_item = it;
4245         it->wd->bring_in = EINA_TRUE;
4246         it->showme = EINA_TRUE;
4247         return;
4248      }
4249    if (it->wd->show_item)
4250      {
4251         it->wd->show_item->showme = EINA_FALSE;
4252         it->wd->show_item = NULL;
4253      }
4254    evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4255    elm_smart_scroller_region_bring_in(it->wd->scr,
4256                                       it->x + it->block->x,
4257                                       it->y + it->block->y - oh / 2 + it->h / 2,
4258                                       it->block->w, oh);
4259 }
4260
4261 /**
4262  * Delete a given item
4263  *
4264  * This deletes the item from genlist and calls the genlist item del
4265  * class callback defined in the item class, if it is set. This clears all
4266  * subitems if it is a tree.
4267  *
4268  * @param it The item
4269  *
4270  * @ingroup Genlist
4271  */
4272 EAPI void
4273 elm_genlist_item_del(Elm_Genlist_Item *it)
4274 {
4275    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4276    if ((it->relcount > 0) || (it->walking > 0))
4277      {
4278         elm_widget_item_pre_notify_del(it);
4279         elm_genlist_item_subitems_clear(it);
4280         it->delete_me = EINA_TRUE;
4281         if (it->wd->show_item == it) it->wd->show_item = NULL;
4282         if (it->selected)
4283           it->wd->selected = eina_list_remove(it->wd->selected,
4284                                               it);
4285         if (it->block)
4286           {
4287              if (it->realized) _item_unrealize(it, EINA_FALSE);
4288              it->block->changed = EINA_TRUE;
4289              if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
4290              it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
4291           }
4292         if (it->itc->func.del)
4293           it->itc->func.del((void *)it->base.data, it->base.widget);
4294         return;
4295      }
4296    _item_del(it);
4297 }
4298
4299 /**
4300  * Set the data item from the genlist item
4301  *
4302  * This set the data value passed on the elm_genlist_item_append() and
4303  * related item addition calls. This function will also call
4304  * elm_genlist_item_update() so the item will be updated to reflect the
4305  * new data.
4306  *
4307  * @param it The item
4308  * @param data The new data pointer to set
4309  *
4310  * @ingroup Genlist
4311  */
4312 EAPI void
4313 elm_genlist_item_data_set(Elm_Genlist_Item *it,
4314                           const void       *data)
4315 {
4316    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4317    elm_widget_item_data_set(it, data);
4318    elm_genlist_item_update(it);
4319 }
4320
4321 /**
4322  * Get the data item from the genlist item
4323  *
4324  * This returns the data value passed on the elm_genlist_item_append()
4325  * and related item addition calls and elm_genlist_item_data_set().
4326  *
4327  * @param it The item
4328  * @return The data pointer provided when created
4329  *
4330  * @ingroup Genlist
4331  */
4332 EAPI void *
4333 elm_genlist_item_data_get(const Elm_Genlist_Item *it)
4334 {
4335    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4336    return elm_widget_item_data_get(it);
4337 }
4338
4339 /**
4340  * Tells genlist to "orphan" icons fetchs by the item class
4341  *
4342  * This instructs genlist to release references to icons in the item,
4343  * meaning that they will no longer be managed by genlist and are
4344  * floating "orphans" that can be re-used elsewhere if the user wants
4345  * to.
4346  *
4347  * @param it The item
4348  *
4349  * @ingroup Genlist
4350  */
4351 EAPI void
4352 elm_genlist_item_icons_orphan(Elm_Genlist_Item *it)
4353 {
4354    Evas_Object *icon;
4355    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4356    EINA_LIST_FREE(it->icon_objs, icon)
4357      {
4358         elm_widget_sub_object_del(it->base.widget, icon);
4359         evas_object_smart_member_del(icon);
4360         evas_object_hide(icon);
4361      }
4362 }
4363
4364 /**
4365  * Get the real evas object of the genlist item
4366  *
4367  * This returns the actual evas object used for the specified genlist
4368  * item. This may be NULL as it may not be created, and may be deleted
4369  * at any time by genlist. Do not modify this object (move, resize,
4370  * show, hide etc.) as genlist is controlling it. This function is for
4371  * querying, emitting custom signals or hooking lower level callbacks
4372  * for events. Do not delete this object under any circumstances.
4373  *
4374  * @param it The item
4375  * @return The object pointer
4376  *
4377  * @ingroup Genlist
4378  */
4379 EAPI const Evas_Object *
4380 elm_genlist_item_object_get(const Elm_Genlist_Item *it)
4381 {
4382    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4383    return it->base.view;
4384 }
4385
4386 /**
4387  * Update the contents of an item
4388  *
4389  * This updates an item by calling all the item class functions again
4390  * to get the icons, labels and states. Use this when the original
4391  * item data has changed and the changes are desired to be reflected.
4392  *
4393  * @param it The item
4394  *
4395  * @ingroup Genlist
4396  */
4397 EAPI void
4398 elm_genlist_item_update(Elm_Genlist_Item *it)
4399 {
4400    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4401    if (!it->block) return;
4402    if (it->delete_me) return;
4403    it->mincalcd = EINA_FALSE;
4404    it->updateme = EINA_TRUE;
4405    it->block->updateme = EINA_TRUE;
4406    if (it->wd->update_job) ecore_job_del(it->wd->update_job);
4407    it->wd->update_job = ecore_job_add(_update_job, it->wd);
4408 }
4409
4410 /**
4411  * Update the item class of an item
4412  *
4413  * @param it The item
4414  * @parem itc The item class for the item
4415  *
4416  * @ingroup Genlist
4417  */
4418 EAPI void
4419 elm_genlist_item_item_class_update(Elm_Genlist_Item             *it,
4420                                    const Elm_Genlist_Item_Class *itc)
4421 {
4422    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4423    if (!it->block) return;
4424    EINA_SAFETY_ON_NULL_RETURN(itc);
4425    if (it->delete_me) return;
4426    it->itc = itc;
4427    it->nocache = EINA_TRUE;
4428    elm_genlist_item_update(it);
4429 }
4430
4431 static Evas_Object *
4432 _elm_genlist_item_label_create(void        *data,
4433                                Evas_Object *obj,
4434                                void        *item __UNUSED__)
4435 {
4436    Evas_Object *label = elm_label_add(obj);
4437    if (!label)
4438      return NULL;
4439    elm_object_style_set(label, "tooltip");
4440    elm_label_label_set(label, data);
4441    return label;
4442 }
4443
4444 static void
4445 _elm_genlist_item_label_del_cb(void        *data,
4446                                Evas_Object *obj __UNUSED__,
4447                                void        *event_info __UNUSED__)
4448 {
4449    eina_stringshare_del(data);
4450 }
4451
4452 /**
4453  * Set the text to be shown in the genlist item.
4454  *
4455  * @param item Target item
4456  * @param text The text to set in the content
4457  *
4458  * Setup the text as tooltip to object. The item can have only one
4459  * tooltip, so any previous tooltip data is removed.
4460  *
4461  * @ingroup Genlist
4462  */
4463 EAPI void
4464 elm_genlist_item_tooltip_text_set(Elm_Genlist_Item *item,
4465                                   const char       *text)
4466 {
4467    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4468    text = eina_stringshare_add(text);
4469    elm_genlist_item_tooltip_content_cb_set(item, _elm_genlist_item_label_create,
4470                                            text,
4471                                            _elm_genlist_item_label_del_cb);
4472 }
4473
4474 /**
4475  * Set the content to be shown in the tooltip item
4476  *
4477  * Setup the tooltip to item. The item can have only one tooltip, so
4478  * any previous tooltip data is removed. @p func(with @p data) will be
4479  * called every time that need to show the tooltip and it should return a
4480  * valid Evas_Object. This object is then managed fully by tooltip
4481  * system and is deleted when the tooltip is gone.
4482  *
4483  * @param item the genlist item being attached by a tooltip.
4484  * @param func the function used to create the tooltip contents.
4485  * @param data what to provide to @a func as callback data/context.
4486  * @param del_cb called when data is not needed anymore, either when
4487  *        another callback replaces @func, the tooltip is unset with
4488  *        elm_genlist_item_tooltip_unset() or the owner @a item
4489  *        dies. This callback receives as the first parameter the
4490  *        given @a data, and @c event_info is the item.
4491  *
4492  * @ingroup Genlist
4493  */
4494 EAPI void
4495 elm_genlist_item_tooltip_content_cb_set(Elm_Genlist_Item           *item,
4496                                         Elm_Tooltip_Item_Content_Cb func,
4497                                         const void                 *data,
4498                                         Evas_Smart_Cb               del_cb)
4499 {
4500    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_GOTO(item, error);
4501
4502    if ((item->tooltip.content_cb == func) && (item->tooltip.data == data))
4503      return;
4504
4505    if (item->tooltip.del_cb)
4506      item->tooltip.del_cb((void *)item->tooltip.data,
4507                           item->base.widget, item);
4508
4509    item->tooltip.content_cb = func;
4510    item->tooltip.data = data;
4511    item->tooltip.del_cb = del_cb;
4512
4513    if (item->base.view)
4514      {
4515         elm_widget_item_tooltip_content_cb_set(item,
4516                                                item->tooltip.content_cb,
4517                                                item->tooltip.data, NULL);
4518         elm_widget_item_tooltip_style_set(item, item->tooltip.style);
4519      }
4520
4521    return;
4522
4523 error:
4524    if (del_cb) del_cb((void *)data, NULL, NULL);
4525 }
4526
4527 /**
4528  * Unset tooltip from item
4529  *
4530  * @param item genlist item to remove previously set tooltip.
4531  *
4532  * Remove tooltip from item. The callback provided as del_cb to
4533  * elm_genlist_item_tooltip_content_cb_set() will be called to notify
4534  * it is not used anymore.
4535  *
4536  * @see elm_genlist_item_tooltip_content_cb_set()
4537  *
4538  * @ingroup Genlist
4539  */
4540 EAPI void
4541 elm_genlist_item_tooltip_unset(Elm_Genlist_Item *item)
4542 {
4543    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4544    if ((item->base.view) && (item->tooltip.content_cb))
4545      elm_widget_item_tooltip_unset(item);
4546
4547    if (item->tooltip.del_cb)
4548      item->tooltip.del_cb((void *)item->tooltip.data, item->base.widget, item);
4549    item->tooltip.del_cb = NULL;
4550    item->tooltip.content_cb = NULL;
4551    item->tooltip.data = NULL;
4552    if (item->tooltip.style)
4553      elm_genlist_item_tooltip_style_set(item, NULL);
4554 }
4555
4556 /**
4557  * Sets a different style for this item tooltip.
4558  *
4559  * @note before you set a style you should define a tooltip with
4560  *       elm_genlist_item_tooltip_content_cb_set() or
4561  *       elm_genlist_item_tooltip_text_set()
4562  *
4563  * @param item genlist item with tooltip already set.
4564  * @param style the theme style to use (default, transparent, ...)
4565  *
4566  * @ingroup Genlist
4567  */
4568 EAPI void
4569 elm_genlist_item_tooltip_style_set(Elm_Genlist_Item *item,
4570                                    const char       *style)
4571 {
4572    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4573    eina_stringshare_replace(&item->tooltip.style, style);
4574    if (item->base.view) elm_widget_item_tooltip_style_set(item, style);
4575 }
4576
4577 /**
4578  * Get the style for this item tooltip.
4579  *
4580  * @param item genlist item with tooltip already set.
4581  * @return style the theme style in use, defaults to "default". If the
4582  *         object does not have a tooltip set, then NULL is returned.
4583  *
4584  * @ingroup Genlist
4585  */
4586 EAPI const char *
4587 elm_genlist_item_tooltip_style_get(const Elm_Genlist_Item *item)
4588 {
4589    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4590    return item->tooltip.style;
4591 }
4592
4593 /**
4594  * Set the cursor to be shown when mouse is over the genlist item
4595  *
4596  * @param item Target item
4597  * @param cursor the cursor name to be used.
4598  *
4599  * @see elm_object_cursor_set()
4600  * @ingroup Genlist
4601  */
4602 EAPI void
4603 elm_genlist_item_cursor_set(Elm_Genlist_Item *item,
4604                             const char       *cursor)
4605 {
4606    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4607    eina_stringshare_replace(&item->mouse_cursor, cursor);
4608    if (item->base.view) elm_widget_item_cursor_set(item, cursor);
4609 }
4610
4611 /**
4612  * Get the cursor to be shown when mouse is over the genlist item
4613  *
4614  * @param item genlist item with cursor already set.
4615  * @return the cursor name.
4616  *
4617  * @ingroup Genlist
4618  */
4619 EAPI const char *
4620 elm_genlist_item_cursor_get(const Elm_Genlist_Item *item)
4621 {
4622    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4623    return elm_widget_item_cursor_get(item);
4624 }
4625
4626 /**
4627  * Unset the cursor to be shown when mouse is over the genlist item
4628  *
4629  * @param item Target item
4630  *
4631  * @see elm_object_cursor_unset()
4632  * @ingroup Genlist
4633  */
4634 EAPI void
4635 elm_genlist_item_cursor_unset(Elm_Genlist_Item *item)
4636 {
4637    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4638    if (!item->mouse_cursor)
4639      return;
4640
4641    if (item->base.view)
4642      elm_widget_item_cursor_unset(item);
4643
4644    eina_stringshare_del(item->mouse_cursor);
4645    item->mouse_cursor = NULL;
4646 }
4647
4648 /**
4649  * Sets a different style for this item cursor.
4650  *
4651  * @note before you set a style you should define a cursor with
4652  *       elm_genlist_item_cursor_set()
4653  *
4654  * @param item genlist item with cursor already set.
4655  * @param style the theme style to use (default, transparent, ...)
4656  *
4657  * @ingroup Genlist
4658  */
4659 EAPI void
4660 elm_genlist_item_cursor_style_set(Elm_Genlist_Item *item,
4661                                   const char       *style)
4662 {
4663    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4664    elm_widget_item_cursor_style_set(item, style);
4665 }
4666
4667 /**
4668  * Get the style for this item cursor.
4669  *
4670  * @param item genlist item with cursor already set.
4671  * @return style the theme style in use, defaults to "default". If the
4672  *         object does not have a cursor set, then NULL is returned.
4673  *
4674  * @ingroup Genlist
4675  */
4676 EAPI const char *
4677 elm_genlist_item_cursor_style_get(const Elm_Genlist_Item *item)
4678 {
4679    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4680    return elm_widget_item_cursor_style_get(item);
4681 }
4682
4683 /**
4684  * Set if the cursor set should be searched on the theme or should use
4685  * the provided by the engine, only.
4686  *
4687  * @note before you set if should look on theme you should define a
4688  * cursor with elm_object_cursor_set(). By default it will only look
4689  * for cursors provided by the engine.
4690  *
4691  * @param item widget item with cursor already set.
4692  * @param engine_only boolean to define it cursors should be looked
4693  * only between the provided by the engine or searched on widget's
4694  * theme as well.
4695  *
4696  * @ingroup Genlist
4697  */
4698 EAPI void
4699 elm_genlist_item_cursor_engine_only_set(Elm_Genlist_Item *item,
4700                                         Eina_Bool         engine_only)
4701 {
4702    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4703    elm_widget_item_cursor_engine_only_set(item, engine_only);
4704 }
4705
4706 /**
4707  * Get the cursor engine only usage for this item cursor.
4708  *
4709  * @param item widget item with cursor already set.
4710  * @return engine_only boolean to define it cursors should be looked
4711  * only between the provided by the engine or searched on widget's
4712  * theme as well. If the object does not have a cursor set, then
4713  * EINA_FALSE is returned.
4714  *
4715  * @ingroup Genlist
4716  */
4717 EAPI Eina_Bool
4718 elm_genlist_item_cursor_engine_only_get(const Elm_Genlist_Item *item)
4719 {
4720    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
4721    return elm_widget_item_cursor_engine_only_get(item);
4722 }
4723
4724 /**
4725  * This sets the horizontal stretching mode
4726  *
4727  * This sets the mode used for sizing items horizontally. Valid modes
4728  * are ELM_LIST_LIMIT and ELM_LIST_SCROLL. The default is
4729  * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
4730  * the scroller will scroll horizontally. Otherwise items are expanded
4731  * to fill the width of the viewport of the scroller. If it is
4732  * ELM_LIST_LIMIT, Items will be expanded to the viewport width and
4733  * limited to that size.
4734  *
4735  * @param obj The genlist object
4736  * @param mode The mode to use
4737  *
4738  * @ingroup Genlist
4739  */
4740 EAPI void
4741 elm_genlist_horizontal_mode_set(Evas_Object  *obj,
4742                                 Elm_List_Mode mode)
4743 {
4744    ELM_CHECK_WIDTYPE(obj, widtype);
4745    Widget_Data *wd = elm_widget_data_get(obj);
4746    if (!wd) return;
4747    if (wd->mode == mode) return;
4748    wd->mode = mode;
4749    _sizing_eval(obj);
4750 }
4751
4752 /**
4753  * Gets the horizontal stretching mode
4754  *
4755  * @param obj The genlist object
4756  * @return The mode to use
4757  * (ELM_LIST_LIMIT, ELM_LIST_SCROLL)
4758  *
4759  * @ingroup Genlist
4760  */
4761 EAPI Elm_List_Mode
4762 elm_genlist_horizontal_mode_get(const Evas_Object *obj)
4763 {
4764    ELM_CHECK_WIDTYPE(obj, widtype) ELM_LIST_LAST;
4765    Widget_Data *wd = elm_widget_data_get(obj);
4766    if (!wd) return ELM_LIST_LAST;
4767    return wd->mode;
4768 }
4769
4770 /**
4771  * Set the always select mode.
4772  *
4773  * Items will only call their selection func and callback when first
4774  * becoming selected. Any further clicks will do nothing, unless you
4775  * enable always select with elm_genlist_always_select_mode_set().
4776  * This means even if selected, every click will make the selected
4777  * callbacks be called.
4778  *
4779  * @param obj The genlist object
4780  * @param always_select The always select mode
4781  * (EINA_TRUE = on, EINA_FALSE = off)
4782  *
4783  * @ingroup Genlist
4784  */
4785 EAPI void
4786 elm_genlist_always_select_mode_set(Evas_Object *obj,
4787                                    Eina_Bool    always_select)
4788 {
4789    ELM_CHECK_WIDTYPE(obj, widtype);
4790    Widget_Data *wd = elm_widget_data_get(obj);
4791    if (!wd) return;
4792    wd->always_select = always_select;
4793 }
4794
4795 /**
4796  * Get the always select mode.
4797  *
4798  * @param obj The genlist object
4799  * @return The always select mode
4800  * (EINA_TRUE = on, EINA_FALSE = off)
4801  *
4802  * @ingroup Genlist
4803  */
4804 EAPI Eina_Bool
4805 elm_genlist_always_select_mode_get(const Evas_Object *obj)
4806 {
4807    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
4808    Widget_Data *wd = elm_widget_data_get(obj);
4809    if (!wd) return EINA_FALSE;
4810    return wd->always_select;
4811 }
4812
4813 /**
4814  * Set no select mode
4815  *
4816  * This will turn off the ability to select items entirely and they
4817  * will neither appear selected nor call selected callback functions.
4818  *
4819  * @param obj The genlist object
4820  * @param no_select The no select mode
4821  * (EINA_TRUE = on, EINA_FALSE = off)
4822  *
4823  * @ingroup Genlist
4824  */
4825 EAPI void
4826 elm_genlist_no_select_mode_set(Evas_Object *obj,
4827                                Eina_Bool    no_select)
4828 {
4829    ELM_CHECK_WIDTYPE(obj, widtype);
4830    Widget_Data *wd = elm_widget_data_get(obj);
4831    if (!wd) return;
4832    wd->no_select = no_select;
4833 }
4834
4835 /**
4836  * Gets no select mode
4837  *
4838  * @param obj The genlist object
4839  * @return The no select mode
4840  * (EINA_TRUE = on, EINA_FALSE = off)
4841  *
4842  * @ingroup Genlist
4843  */
4844 EAPI Eina_Bool
4845 elm_genlist_no_select_mode_get(const Evas_Object *obj)
4846 {
4847    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
4848    Widget_Data *wd = elm_widget_data_get(obj);
4849    if (!wd) return EINA_FALSE;
4850    return wd->no_select;
4851 }
4852
4853 /**
4854  * Set compress mode
4855  *
4856  * This will enable the compress mode where items are "compressed"
4857  * horizontally to fit the genlist scrollable viewport width. This is
4858  * special for genlist.  Do not rely on
4859  * elm_genlist_horizontal_mode_set() being set to ELM_LIST_COMPRESS to
4860  * work as genlist needs to handle it specially.
4861  *
4862  * @param obj The genlist object
4863  * @param compress The compress mode
4864  * (EINA_TRUE = on, EINA_FALSE = off)
4865  *
4866  * @ingroup Genlist
4867  */
4868 EAPI void
4869 elm_genlist_compress_mode_set(Evas_Object *obj,
4870                               Eina_Bool    compress)
4871 {
4872    ELM_CHECK_WIDTYPE(obj, widtype);
4873    Widget_Data *wd = elm_widget_data_get(obj);
4874    if (!wd) return;
4875    wd->compress = compress;
4876 }
4877
4878 /**
4879  * Get the compress mode
4880  *
4881  * @param obj The genlist object
4882  * @return The compress mode
4883  * (EINA_TRUE = on, EINA_FALSE = off)
4884  *
4885  * @ingroup Genlist
4886  */
4887 EAPI Eina_Bool
4888 elm_genlist_compress_mode_get(const Evas_Object *obj)
4889 {
4890    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
4891    Widget_Data *wd = elm_widget_data_get(obj);
4892    if (!wd) return EINA_FALSE;
4893    return wd->compress;
4894 }
4895
4896 /**
4897  * Set height-for-width mode
4898  *
4899  * With height-for-width mode the item width will be fixed (restricted
4900  * to a minimum of) to the list width when calculating its size in
4901  * order to allow the height to be calculated based on it. This allows,
4902  * for instance, text block to wrap lines if the Edje part is
4903  * configured with "text.min: 0 1".
4904  *
4905  * @note This mode will make list resize slower as it will have to
4906  *       recalculate every item height again whenever the list width
4907  *       changes!
4908  *
4909  * @note When height-for-width mode is enabled, it also enables
4910  *       compress mode (see elm_genlist_compress_mode_set()) and
4911  *       disables homogeneous (see elm_genlist_homogeneous_set()).
4912  *
4913  * @param obj The genlist object
4914  * @param setting The height-for-width mode (EINA_TRUE = on,
4915  * EINA_FALSE = off)
4916  *
4917  * @ingroup Genlist
4918  */
4919 EAPI void
4920 elm_genlist_height_for_width_mode_set(Evas_Object *obj,
4921                                       Eina_Bool    height_for_width)
4922 {
4923    ELM_CHECK_WIDTYPE(obj, widtype);
4924    Widget_Data *wd = elm_widget_data_get(obj);
4925    if (!wd) return;
4926    wd->height_for_width = !!height_for_width;
4927    if (wd->height_for_width)
4928      {
4929         elm_genlist_homogeneous_set(obj, EINA_FALSE);
4930         elm_genlist_compress_mode_set(obj, EINA_TRUE);
4931      }
4932 }
4933
4934 /**
4935  * Get the height-for-width mode
4936  *
4937  * @param obj The genlist object
4938  * @return The height-for-width mode (EINA_TRUE = on, EINA_FALSE =
4939  * off)
4940  *
4941  * @ingroup Genlist
4942  */
4943 EAPI Eina_Bool
4944 elm_genlist_height_for_width_mode_get(const Evas_Object *obj)
4945 {
4946    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
4947    Widget_Data *wd = elm_widget_data_get(obj);
4948    if (!wd) return EINA_FALSE;
4949    return wd->height_for_width;
4950 }
4951
4952 /**
4953  * Set bounce mode
4954  *
4955  * This will enable or disable the scroller bounce mode for the
4956  * genlist. See elm_scroller_bounce_set() for details
4957  *
4958  * @param obj The genlist object
4959  * @param h_bounce Allow bounce horizontally
4960  * @param v_bounce Allow bounce vertically
4961  *
4962  * @ingroup Genlist
4963  */
4964 EAPI void
4965 elm_genlist_bounce_set(Evas_Object *obj,
4966                        Eina_Bool    h_bounce,
4967                        Eina_Bool    v_bounce)
4968 {
4969    ELM_CHECK_WIDTYPE(obj, widtype);
4970    Widget_Data *wd = elm_widget_data_get(obj);
4971    if (!wd) return;
4972    elm_smart_scroller_bounce_allow_set(wd->scr, h_bounce, v_bounce);
4973 }
4974
4975 /**
4976  * Get the bounce mode
4977  *
4978  * @param obj The genlist object
4979  * @param h_bounce Allow bounce horizontally
4980  * @param v_bounce Allow bounce vertically
4981  *
4982  * @ingroup Genlist
4983  */
4984 EAPI void
4985 elm_genlist_bounce_get(const Evas_Object *obj,
4986                        Eina_Bool         *h_bounce,
4987                        Eina_Bool         *v_bounce)
4988 {
4989    ELM_CHECK_WIDTYPE(obj, widtype);
4990    Widget_Data *wd = elm_widget_data_get(obj);
4991    if (!wd) return;
4992    elm_smart_scroller_bounce_allow_get(obj, h_bounce, v_bounce);
4993 }
4994
4995 /**
4996  * Set homogenous mode
4997  *
4998  * This will enable the homogeneous mode where items are of the same
4999  * height and width so that genlist may do the lazy-loading at its
5000  * maximum. This implies 'compressed' mode.
5001  *
5002  * @param obj The genlist object
5003  * @param homogeneous Assume the items within the genlist are of the
5004  * same height and width (EINA_TRUE = on, EINA_FALSE = off)
5005  *
5006  * @ingroup Genlist
5007  */
5008 EAPI void
5009 elm_genlist_homogeneous_set(Evas_Object *obj,
5010                             Eina_Bool    homogeneous)
5011 {
5012    ELM_CHECK_WIDTYPE(obj, widtype);
5013    Widget_Data *wd = elm_widget_data_get(obj);
5014    if (!wd) return;
5015    if (homogeneous) elm_genlist_compress_mode_set(obj, EINA_TRUE);
5016    wd->homogeneous = homogeneous;
5017 }
5018
5019 /**
5020  * Get the homogenous mode
5021  *
5022  * @param obj The genlist object
5023  * @return Assume the items within the genlist are of the same height
5024  * and width (EINA_TRUE = on, EINA_FALSE = off)
5025  *
5026  * @ingroup Genlist
5027  */
5028 EAPI Eina_Bool
5029 elm_genlist_homogeneous_get(const Evas_Object *obj)
5030 {
5031    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5032    Widget_Data *wd = elm_widget_data_get(obj);
5033    if (!wd) return EINA_FALSE;
5034    return wd->homogeneous;
5035 }
5036
5037 /**
5038  * Set the maximum number of items within an item block
5039  *
5040  * This will configure the block count to tune to the target with
5041  * particular performance matrix.
5042  *
5043  * @param obj The genlist object
5044  * @param n   Maximum number of items within an item block
5045  *
5046  * @ingroup Genlist
5047  */
5048 EAPI void
5049 elm_genlist_block_count_set(Evas_Object *obj,
5050                             int          n)
5051 {
5052    ELM_CHECK_WIDTYPE(obj, widtype);
5053    Widget_Data *wd = elm_widget_data_get(obj);
5054    if (!wd) return;
5055    wd->max_items_per_block = n;
5056    wd->item_cache_max = wd->max_items_per_block * 2;
5057    _item_cache_clean(wd);
5058 }
5059
5060 /**
5061  * Get the maximum number of items within an item block
5062  *
5063  * @param obj The genlist object
5064  * @return Maximum number of items within an item block
5065  *
5066  * @ingroup Genlist
5067  */
5068 EAPI int
5069 elm_genlist_block_count_get(const Evas_Object *obj)
5070 {
5071    ELM_CHECK_WIDTYPE(obj, widtype) 0;
5072    Widget_Data *wd = elm_widget_data_get(obj);
5073    if (!wd) return 0;
5074    return wd->max_items_per_block;
5075 }
5076
5077 /**
5078  * Set the timeout in seconds for the longpress event
5079  *
5080  * @param obj The genlist object
5081  * @param timeout timeout in seconds
5082  *
5083  * @ingroup Genlist
5084  */
5085 EAPI void
5086 elm_genlist_longpress_timeout_set(Evas_Object *obj,
5087                                   double       timeout)
5088 {
5089    ELM_CHECK_WIDTYPE(obj, widtype);
5090    Widget_Data *wd = elm_widget_data_get(obj);
5091    if (!wd) return;
5092    wd->longpress_timeout = timeout;
5093 }
5094
5095 /**
5096  * Get the timeout in seconds for the longpress event
5097  *
5098  * @param obj The genlist object
5099  * @return timeout in seconds
5100  *
5101  * @ingroup Genlist
5102  */
5103 EAPI double
5104 elm_genlist_longpress_timeout_get(const Evas_Object *obj)
5105 {
5106    ELM_CHECK_WIDTYPE(obj, widtype) 0;
5107    Widget_Data *wd = elm_widget_data_get(obj);
5108    if (!wd) return 0;
5109    return wd->longpress_timeout;
5110 }
5111
5112 /**
5113  * Set the scrollbar policy
5114  *
5115  * This sets the scrollbar visibility policy for the given genlist
5116  * scroller. ELM_SMART_SCROLLER_POLICY_AUTO means the scrollbar is
5117  * made visible if it is needed, and otherwise kept hidden.
5118  * ELM_SMART_SCROLLER_POLICY_ON turns it on all the time, and
5119  * ELM_SMART_SCROLLER_POLICY_OFF always keeps it off. This applies
5120  * respectively for the horizontal and vertical scrollbars.
5121  *
5122  * @param obj The genlist object
5123  * @param policy_h Horizontal scrollbar policy
5124  * @param policy_v Vertical scrollbar policy
5125  *
5126  * @ingroup Genlist
5127  */
5128 EAPI void
5129 elm_genlist_scroller_policy_set(Evas_Object        *obj,
5130                                 Elm_Scroller_Policy policy_h,
5131                                 Elm_Scroller_Policy policy_v)
5132 {
5133    ELM_CHECK_WIDTYPE(obj, widtype);
5134    Widget_Data *wd = elm_widget_data_get(obj);
5135    if (!wd) return;
5136    if ((policy_h >= ELM_SCROLLER_POLICY_LAST) ||
5137        (policy_v >= ELM_SCROLLER_POLICY_LAST))
5138      return;
5139    if (wd->scr)
5140      elm_smart_scroller_policy_set(wd->scr, policy_h, policy_v);
5141 }
5142
5143 /**
5144  * Get the scrollbar policy
5145  *
5146  * @param obj The genlist object
5147  * @param policy_h Horizontal scrollbar policy
5148  * @param policy_v Vertical scrollbar policy
5149  *
5150  * @ingroup Genlist
5151  */
5152 EAPI void
5153 elm_genlist_scroller_policy_get(const Evas_Object   *obj,
5154                                 Elm_Scroller_Policy *policy_h,
5155                                 Elm_Scroller_Policy *policy_v)
5156 {
5157    ELM_CHECK_WIDTYPE(obj, widtype);
5158    Widget_Data *wd = elm_widget_data_get(obj);
5159    Elm_Smart_Scroller_Policy s_policy_h, s_policy_v;
5160    if ((!wd) || (!wd->scr)) return;
5161    elm_smart_scroller_policy_get(wd->scr, &s_policy_h, &s_policy_v);
5162    if (policy_h) *policy_h = (Elm_Scroller_Policy)s_policy_h;
5163    if (policy_v) *policy_v = (Elm_Scroller_Policy)s_policy_v;
5164 }
5165
5166 /**
5167  * Update the contents of all realized items
5168  *
5169  * This updates all realized items by calling all the item class functions again
5170  * to get the icons, labels and states. Use this when the original
5171  * item data has changed and the changes are desired to be reflected.
5172  *
5173  * @param it The item
5174  *
5175  * @ingroup Genlist
5176  */
5177 EAPI void
5178 elm_genlist_realized_items_update(Evas_Object *obj)
5179 {
5180    ELM_CHECK_WIDTYPE(obj, widtype);
5181
5182    Eina_List *list, *l;
5183    Elm_Genlist_Item *it;
5184
5185    list = elm_genlist_realized_items_get(obj);
5186    EINA_LIST_FOREACH(list, l, it)
5187      elm_genlist_item_update(it);
5188 }
5189
5190 /**
5191  * Set genlist item mode
5192  *
5193  * @param item The genlist item
5194  * @param mode Mode name
5195  * @param mode_set Boolean to define set or unset mode.
5196  *
5197  * @ingroup Genlist
5198  */
5199 EAPI void
5200 elm_genlist_item_mode_set(Elm_Genlist_Item *it,
5201                           const char       *mode_type,
5202                           Eina_Bool         mode_set)
5203 {
5204    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
5205    Widget_Data *wd = it->wd;
5206    Eina_List *l;
5207    Elm_Genlist_Item *it2;
5208
5209    if (!wd) return;
5210    if (!mode_type) return;
5211
5212    if ((wd->mode_item == it) &&
5213        (!strcmp(mode_type, wd->mode_type)) &&
5214        (mode_set))
5215       return;
5216    if (!it->itc->mode_item_style) return;
5217
5218    if (wd->multi)
5219      {
5220         EINA_LIST_FOREACH(wd->selected, l, it2)
5221           if (it2->realized)
5222             elm_genlist_item_selected_set(it2, EINA_FALSE);
5223      }
5224    else
5225      {
5226         it2 = elm_genlist_selected_item_get(wd->obj);
5227         if ((it2) && (it2->realized))
5228           elm_genlist_item_selected_set(it2, EINA_FALSE);
5229      }
5230
5231    if (((wd->mode_type) && (strcmp(mode_type, wd->mode_type))) ||
5232        (mode_set) ||
5233        ((it == wd->mode_item) && (!mode_set)))
5234      _item_mode_unset(wd);
5235
5236    eina_stringshare_replace(&wd->mode_type, mode_type);
5237    if (mode_set) _item_mode_set(it);
5238 }
5239
5240 /**
5241  * Get active genlist mode type
5242  *
5243  * @param obj The genlist object
5244  *
5245  * @ingroup Genlist
5246  */
5247 EAPI const char *
5248 elm_genlist_mode_get(const Evas_Object *obj)
5249 {
5250    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
5251    Widget_Data *wd = elm_widget_data_get(obj);
5252    if (!wd) return NULL;
5253    return wd->mode_type;
5254 }
5255
5256 /**
5257  * Get active genlist mode item
5258  *
5259  * @param obj The genlist object
5260  *
5261  * @ingroup Genlist
5262  */
5263 EAPI const Elm_Genlist_Item *
5264 elm_genlist_mode_item_get(const Evas_Object *obj)
5265 {
5266    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
5267    Widget_Data *wd = elm_widget_data_get(obj);
5268    if (!wd) return NULL;
5269    return wd->mode_item;
5270 }