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