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