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