[elm_genlist.c] fix auto scroll problem
[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  * Signals that you can add callbacks for are:
19  *
20  * clicked - This is called when a user has double-clicked an item. The
21  * event_info parameter is the genlist item that was double-clicked.
22  *
23  * selected - This is called when a user has made an item selected. The
24  * event_info parameter is the genlist item that was selected.
25  *
26  * unselected - This is called when a user has made an item unselected. The
27  * event_info parameter is the genlist item that was unselected.
28  *
29  * expanded - This is called when elm_genlist_item_expanded_set() is called
30  * and the item is now meant to be expanded. The event_info parameter is the
31  * genlist item that was indicated to expand. It is the job of this callback
32  * to then fill in the child items.
33  *
34  * contracted - This is called when elm_genlist_item_expanded_set() is called
35  * and the item is now meant to be contracted. The event_info parameter is
36  * the genlist item that was indicated to contract. It is the job of this
37  * callback to then delete the child items.
38  *
39  * expand,request - This is called when a user has indicated they want to
40  * expand a tree branch item. The callback should decide if the item can
41  * expand (has any children) and then call elm_genlist_item_expanded_set()
42  * appropriately to set the state. The event_info parameter is the genlist
43  * item that was indicated to expand.
44  *
45  * contract,request - This is called when a user has indicated they want to
46  * contract a tree branch item. The callback should decide if the item can
47  * contract (has any children) and then call elm_genlist_item_expanded_set()
48  * appropriately to set the state. The event_info parameter is the genlist
49  * item that was indicated to contract.
50  *
51  * realized - This is called when the item in the list is created as a real
52  * evas object. event_info parameter is the genlist item that was created.
53  * The object may be deleted at any time, so it is up to the caller to
54  * not use the object pointer from elm_genlist_item_object_get() in a way
55  * where it may point to freed objects.
56  *
57  * unrealized - This is called just before an item is unrealized. After
58  * this call icon objects provided will be deleted and the item object
59  * itself delete or be put into a floating cache.
60  *
61  * drag,start,up - This is called when the item in the list has been dragged
62  * (not scrolled) up.
63  *
64  * drag,start,down - This is called when the item in the list has been dragged
65  * (not scrolled) down.
66  *
67  * drag,start,left - This is called when the item in the list has been dragged
68  * (not scrolled) left.
69  *
70  * drag,start,right - This is called when the item in the list has been dragged
71  * (not scrolled) right.
72  *
73  * drag,stop - This is called when the item in the list has stopped being
74  * dragged.
75  *
76  * drag - This is called when the item in the list is being dragged.
77  *
78  * longpressed - This is called when the item is pressed for a certain amount
79  * of time. By default it's 1 second.
80  *
81  * scroll,edge,top - This is called when the genlist is scrolled until the top
82  * edge.
83  *
84  * scroll,edge,bottom - This is called when the genlist is scrolled until the
85  * bottom edge.
86  *
87  * scroll,edge,left - This is called when the genlist is scrolled until the
88  * left edge.
89  *
90  * scroll,edge,right - This is called when the genlist is scrolled until the
91  * right edge.
92  *
93  * multi,swipe,left - This is called when the genlist is multi-touch swiped
94  * left.
95  *
96  * multi,swipe,right - This is called when the genlist is multi-touch swiped
97  * right.
98  *
99  * multi,swipe,up - This is called when the genlist is multi-touch swiped
100  * up.
101  *
102  * multi,swipe,down - This is called when the genlist is multi-touch swiped
103  * down.
104  *
105  * multi,pinch,out - This is called when the genlist is multi-touch pinched
106  * out.
107  *
108  * multi,pinch,in - This is called when the genlist is multi-touch pinched
109  * in.
110  *
111  * Genlist has a fairly large API, mostly because it's relatively complex,
112  * trying to be both expansive, powerful and efficient. First we will begin
113  * an overview on the theory behind genlist.
114  *
115  * Evas tracks every object you create. Every time it processes an event
116  * (mouse move, down, up etc.) it needs to walk through objects and find out
117  * what event that affects. Even worse every time it renders display updates,
118  * in order to just calculate what to re-draw, it needs to walk through many
119  * many many objects. Thus, the more objects you keep active, the more
120  * overhead Evas has in just doing its work. It is advisable to keep your
121  * active objects to the minimum working set you need. Also remember that
122  * object creation and deletion carries an overhead, so there is a
123  * middle-ground, which is not easily determined. But don't keep massive lists
124  * of objects you can't see or use. Genlist does this with list objects. It
125  * creates and destroys them dynamically as you scroll around. It groups them
126  * into blocks so it can determine the visibility etc. of a whole block at
127  * once as opposed to having to walk the whole list. This 2-level list allows
128  * for very large numbers of items to be in the list (tests have used up to
129  * 2,000,000 items). Also genlist employs a queue for adding items. As items
130  * may be different sizes, every item added needs to be calculated as to its
131  * size and thus this presents a lot of overhead on populating the list, this
132  * genlist employs a queue. Any item added is queued and spooled off over
133  * time, actually appearing some time later, so if your list has many members
134  * you may find it takes a while for them to all appear, with your process
135  * consuming a lot of CPU while it is busy spooling.
136  *
137  * Genlist also implements a tree structure, but it does so with callbacks to
138  * the application, with the application filling in tree structures when
139  * requested (allowing for efficient building of a very deep tree that could
140  * even be used for file-management). See the above smart signal callbacks for
141  * details.
142  *
143  * An item in the genlist world can have 0 or more text labels (they can be
144  * regular text or textblock ??that's up to the style to determine), 0 or
145  * more icons (which are simply objects swallowed into the genlist item) and
146  * 0 or more boolean states that can be used for check, radio or other
147  * indicators by the edje theme style. An item may be one of several styles
148  * (Elementary provides 4 by default - ?\9cdefault?? ?\9cdouble_label?? "group_index"
149  * and "icon_top_text_bottom", but this can be extended by system or
150  * application custom themes/overlays/extensions).
151  *
152  * In order to implement the ability to add and delete items on the fly,
153  * Genlist implements a class/callback system where the application provides
154  * a structure with information about that type of item (genlist may contain
155  * multiple different items with different classes, states and styles).
156  * Genlist will call the functions in this struct (methods) when an item is
157  * ?\9crealized??(that is created dynamically while scrolling). All objects will
158  * simply be deleted  when no longer needed with evas_object_del(). The
159  * Elm_Genlist_Item_Class structure contains the following members:
160  *
161  * item_style - This is a constant string and simply defines the name of the
162  * item style. It must be specified and the default should be ?\9cdefault??
163  *
164  * func.label_get - This function is called when an actual item object is
165  * created. The data parameter is the data parameter passed to
166  * elm_genlist_item_append() and related item creation functions. The obj
167  * parameter is the genlist object and the part parameter is the string name
168  * of the text part in the edje design that is listed as one of the possible
169  * labels that can be set. This function must return a strudup()'ed string as
170  * the caller will free() it when done.
171  *
172  * func.icon_get - This function is called when an actual item object is
173  * created. The data parameter is the data parameter passed to
174  * elm_genlist_item_append() and related item creation functions. The obj
175  * parameter is the genlist object and the part parameter is the string name
176  * of the icon part in the edje design that is listed as one of the possible
177  * icons that can be set. This must return NULL for no object or a valid
178  * object. The object will be deleted by genlist on shutdown or when the item
179  * is unrealized.
180  *
181  * func.state_get - This function is called when an actual item object is
182  * created. The data parameter is the data parameter passed to
183  * elm_genlist_item_append() and related item creation functions. The obj
184  * parameter is the genlist object and the part parameter is the string name
185  * of the state part in the edje design that is listed as one of the possible
186  * states that can be set. Return 0 for false or 1 for true. Genlist will
187  * emit a signal to the edje object with ?\9celm,state,XXX,active???\9celm??when
188  * true (the default is false), where XXX is the name of the part.
189  *
190  * func.del - This is called when elm_genlist_item_del() is called on an
191  * item, elm_genlist_clear() is called on the genlist, or
192  * elm_genlist_item_subitems_clear() is called to clear sub-items. This is
193  * intended for use when actual genlist items are deleted, so any backing
194  * data attached to the item (e.g. its data parameter on creation) can be
195  * deleted.
196  *
197  * Items can be added by several calls. All of them return a Elm_Genlist_Item
198  * handle that is an internal member inside the genlist. They all take a data
199  * parameter that is meant to be used for a handle to the applications
200  * internal data (eg the struct with the original item data). The parent
201  * parameter is the parent genlist item this belongs to if it is a tree or 
202  * an indexed group, and NULL if there is no parent. The flags can be a bitmask
203  * of ELM_GENLIST_ITEM_NONE, ELM_GENLIST_ITEM_SUBITEMS and
204  * ELM_GENLIST_ITEM_GROUP. If ELM_GENLIST_ITEM_SUBITEMS is set then this item
205  * is displayed as an item that is able to expand and have child items.
206  * If ELM_GENLIST_ITEM_GROUP is set then this item is group idex item that is
207  * displayed at the top until the next group comes. The func parameter is a
208  * convenience callback that is called when the item is selected and the data
209  * parameter will be the func_data parameter, obj be the genlist object and
210  * event_info will be the genlist item.
211  *
212  * elm_genlist_item_append() appends an item to the end of the list, or if
213  * there is a parent, to the end of all the child items of the parent.
214  * elm_genlist_item_prepend() is the same but prepends to the beginning of
215  * the list or children list. elm_genlist_item_insert_before() inserts at
216  * item before another item and elm_genlist_item_insert_after() inserts after
217  * the indicated item.
218  *
219  * The application can clear the list with elm_genlist_clear() which deletes
220  * all the items in the list and elm_genlist_item_del() will delete a specific
221  * item. elm_genlist_item_subitems_clear() will clear all items that are
222  * children of the indicated parent item.
223  *
224  * If the application wants multiple items to be able to be selected,
225  * elm_genlist_multi_select_set() can enable this. If the list is
226  * single-selection only (the default), then elm_genlist_selected_item_get()
227  * will return the selected item, if any, or NULL I none is selected. If the
228  * list is multi-select then elm_genlist_selected_items_get() will return a
229  * list (that is only valid as long as no items are modified (added, deleted,
230  * selected or unselected)).
231  *
232  * To help inspect list items you can jump to the item at the top of the list
233  * with elm_genlist_first_item_get() which will return the item pointer, and
234  * similarly elm_genlist_last_item_get() gets the item at the end of the list.
235  * elm_genlist_item_next_get() and elm_genlist_item_prev_get() get the next
236  * and previous items respectively relative to the indicated item. Using
237  * these calls you can walk the entire item list/tree. Note that as a tree
238  * the items are flattened in the list, so elm_genlist_item_parent_get() will
239  * let you know which item is the parent (and thus know how to skip them if
240  * wanted).
241  *
242  * There are also convenience functions. elm_genlist_item_genlist_get() will
243  * return the genlist object the item belongs to. elm_genlist_item_show()
244  * will make the scroller scroll to show that specific item so its visible.
245  * elm_genlist_item_data_get() returns the data pointer set by the item
246  * creation functions.
247  *
248  * If an item changes (state of boolean changes, label or icons change),
249  * then use elm_genlist_item_update() to have genlist update the item with
250  * the new state. Genlist will re-realize the item thus call the functions
251  * in the _Elm_Genlist_Item_Class for that item.
252  *
253  * To programmatically (un)select an item use elm_genlist_item_selected_set().
254  * To get its selected state use elm_genlist_item_selected_get(). Similarly
255  * to expand/contract an item and get its expanded state, use
256  * elm_genlist_item_expanded_set() and elm_genlist_item_expanded_get(). And
257  * again to make an item disabled (unable to be selected and appear
258  * differently) use elm_genlist_item_disabled_set() to set this and
259  * elm_genlist_item_disabled_get() to get the disabled state.
260  *
261  * In general to indicate how the genlist should expand items horizontally to
262  * fill the list area, use elm_genlist_horizontal_mode_set(). Valid modes are
263  * ELM_LIST_LIMIT and ELM_LIST_SCROLL . The default is ELM_LIST_SCROLL. This
264  * mode means that if items are too wide to fit, the scroller will scroll
265  * horizontally. Otherwise items are expanded to fill the width of the
266  * viewport of the scroller. If it is ELM_LIST_LIMIT, items will be expanded
267  * to the viewport width and limited to that size. This can be combined with
268  * a different style that uses edjes' ellipsis feature (cutting text off like
269  * this: ?\9ctex...??.
270  *
271  * Items will only call their selection func and callback when first becoming
272  * selected. Any further clicks will do nothing, unless you enable always
273  * select with elm_genlist_always_select_mode_set(). This means even if
274  * selected, every click will make the selected callbacks be called.
275  * elm_genlist_no_select_mode_set() will turn off the ability to select
276  * items entirely and they will neither appear selected nor call selected
277  * callback functions.
278  *
279  * Remember that you can create new styles and add your own theme augmentation
280  * per application with elm_theme_extension_add(). If you absolutely must
281  * have a specific style that overrides any theme the user or system sets up
282  * you can use elm_theme_overlay_add() to add such a file.
283  */
284
285 typedef struct _Widget_Data Widget_Data;
286 typedef struct _Item_Block  Item_Block;
287 typedef struct _Pan         Pan;
288 typedef struct _Item_Cache  Item_Cache;
289 typedef struct _Edit_Data Edit_Data;
290
291 typedef enum _Elm_Genlist_Item_Move_effect_Mode
292 {
293    ELM_GENLIST_ITEM_MOVE_EFFECT_NONE         = 0,
294    ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND       = (1 << 0),
295    ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT     = (1 << 1),
296    ELM_GENLIST_ITEM_MOVE_EFFECT_EDIT_MODE    = (1 << 2),
297    ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE       = (1 << 3),
298 } Elm_Genlist_Item_Move_effect_Mode;
299
300 struct _Widget_Data
301 {
302    Evas_Object      *obj, *scr, *pan_smart;
303    Eina_Inlist      *items, *blocks;
304    Eina_List        *group_items;
305    Pan              *pan;
306    Evas_Coord        pan_x, pan_y, w, h, minw, minh, realminw, prev_viewport_w;
307    Ecore_Job        *calc_job, *update_job;
308    Ecore_Idler      *queue_idler;
309    Ecore_Idler      *must_recalc_idler;
310    Eina_List        *queue, *selected;
311    Elm_Genlist_Item *show_item;
312    Elm_Genlist_Item *last_selected_item;
313    Eina_Inlist      *item_cache;
314    Elm_Genlist_Item *anchor_item;
315    Evas_Coord        anchor_y;
316    Elm_List_Mode     mode;
317    Ecore_Timer      *multi_timer;
318    Evas_Coord        prev_x, prev_y, prev_mx, prev_my;
319    Evas_Coord        cur_x, cur_y, cur_mx, cur_my;
320    Eina_Bool         mouse_down : 1;
321    Eina_Bool         multi_down : 1;
322    Eina_Bool         multi_timeout : 1;
323    Eina_Bool         multitouched : 1;
324    Eina_Bool         on_hold : 1;
325    Eina_Bool         multi : 1;
326    Eina_Bool         always_select : 1;
327    Eina_Bool         longpressed : 1;
328    Eina_Bool         wasselected : 1;
329    Eina_Bool         no_select : 1;
330    Eina_Bool         bring_in : 1;
331    Eina_Bool         compress : 1;
332    Eina_Bool         height_for_width : 1;
333    Eina_Bool         homogeneous : 1;
334    Eina_Bool         clear_me : 1;
335    Eina_Bool         swipe : 1;
336    struct
337    {
338       Evas_Coord x, y;
339    } history[SWIPE_MOVES];
340    int               multi_device;
341    int               item_cache_count;
342    int               item_cache_max;
343    int               movements;
344    int               walking;
345    int               item_width;
346    int               item_height;
347    int               max_items_per_block;
348    double            longpress_timeout;
349
350    // TODO : refactoring
351    Eina_Bool         reorder_mode : 1;
352    Eina_Bool         reorder_pan_move : 1;
353    Eina_Bool         reorder_deleted : 1;
354    Eina_Bool         effect_mode : 1;
355    Eina_Bool         select_all_check : 1;
356    Eina_Bool         auto_scrolled : 1;
357    int               edit_mode;
358    Edit_Data        *ed;
359    Eina_List        *edit_field;
360    Elm_Genlist_Item *select_all_item;   
361    Eina_List        *sweeped_items;
362    Ecore_Timer      *scr_hold_timer;
363    int               total_num;
364    int               group_item_width;
365    int               group_item_height;
366    Elm_Genlist_Item *reorder_it, *reorder_rel;
367    Evas_Coord        reorder_start_y;
368    Ecore_Animator   *item_moving_effect_timer;
369    Evas_Object      *alpha_bg;
370    Elm_Genlist_Item *expand_item;
371    Evas_Coord        expand_item_end;
372    Evas_Coord        expand_item_gap;
373    int               move_effect_mode;
374    unsigned int      start_time;
375 };
376
377 struct _Item_Block
378 {
379    EINA_INLIST;
380    int          count;
381    int          num;
382    Widget_Data *wd;
383    Eina_List   *items;
384    Evas_Coord   x, y, w, h, minw, minh;
385    Eina_Bool    want_unrealize : 1;
386    Eina_Bool    realized : 1;
387    Eina_Bool    changed : 1;
388    Eina_Bool    updateme : 1;
389    Eina_Bool    showme : 1;
390    Eina_Bool    must_recalc : 1;
391    int          reorder_offset;
392 };
393
394 struct _Elm_Genlist_Item
395 {
396    Elm_Widget_Item               base;
397    EINA_INLIST;
398    Widget_Data                  *wd;
399    Item_Block                   *block;
400    Eina_List                    *items;
401    Evas_Coord                    x, y, w, h, minw, minh;
402    const Elm_Genlist_Item_Class *itc;
403    Elm_Genlist_Item             *parent;
404    Elm_Genlist_Item             *group_item;
405    Elm_Genlist_Item_Flags        flags;
406    struct
407    {
408       Evas_Smart_Cb func;
409       const void   *data;
410    } func;
411
412    Evas_Object      *spacer;
413    Eina_List        *labels, *icons, *states, *icon_objs;
414    Ecore_Timer      *long_timer;
415    Ecore_Timer      *swipe_timer;
416    Evas_Coord        dx, dy;
417    Evas_Coord        scrl_x, scrl_y;
418
419    Elm_Genlist_Item *rel;
420
421    struct
422    {
423       const void                 *data;
424       Elm_Tooltip_Item_Content_Cb content_cb;
425       Evas_Smart_Cb               del_cb;
426       const char                 *style;
427    } tooltip;
428
429    const char *mouse_cursor;
430
431    int         relcount;
432    int         walking;
433    int         expanded_depth;
434    int         order_num_in;
435
436    Eina_Bool   before : 1;
437
438    Eina_Bool   want_unrealize : 1;
439    Eina_Bool   want_realize : 1;
440    Eina_Bool   realized : 1;
441    Eina_Bool   selected : 1;
442    Eina_Bool   hilighted : 1;
443    Eina_Bool   expanded : 1;
444    Eina_Bool   disabled : 1;
445    Eina_Bool   display_only : 1;
446    Eina_Bool   mincalcd : 1;
447    Eina_Bool   queued : 1;
448    Eina_Bool   showme : 1;
449    Eina_Bool   delete_me : 1;
450    Eina_Bool   down : 1;
451    Eina_Bool   dragging : 1;
452    Eina_Bool   updateme : 1;
453    Eina_Bool   nocache : 1;
454
455    // TODO: refactoring
456    Eina_Bool   move_effect_me : 1;
457    Eina_Bool   effect_done : 1; 
458    Eina_Bool   reordering : 1;
459    Eina_Bool   edit_select_check: 1;
460    Eina_Bool   renamed : 1;   
461    Eina_Bool   effect_item_realized : 1;   
462    Eina_Bool   sweeped : 1;
463    Eina_Bool   wassweeped : 1;
464    Eina_List  *edit_icon_objs;   
465    Evas_Object *edit_obj;
466    Eina_List  *sweep_labels, *sweep_icons, *sweep_icon_objs;
467    int         num;
468    Ecore_Animator *item_moving_effect_timer;
469    Evas_Coord  old_scrl_x, old_scrl_y;
470    Evas_Coord  pad_left, pad_right;
471    int         list_expanded;
472 };
473
474 struct _Item_Cache
475 {
476    EINA_INLIST;
477
478    Evas_Object *base_view, *spacer;
479
480    const char  *item_style; // it->itc->item_style
481    Eina_Bool    tree : 1; // it->flags & ELM_GENLIST_ITEM_SUBITEMS
482    Eina_Bool    compress : 1; // it->wd->compress
483    Eina_Bool    odd : 1; // in & 0x1
484
485    Eina_Bool    selected : 1; // it->selected
486    Eina_Bool    disabled : 1; // it->disabled
487    Eina_Bool    expanded : 1; // it->expanded
488 };
489
490 struct _Edit_Data
491 {
492   Elm_Genlist_Edit_Class  *ec;
493   Elm_Genlist_Item *del_item;
494   Elm_Genlist_Item *reorder_item;
495   Elm_Genlist_Item *reorder_rel;
496   Evas_Object *del_confirm;
497 };
498
499 #define ELM_GENLIST_ITEM_FROM_INLIST(item) \
500   ((item) ? EINA_INLIST_CONTAINER_GET(item, Elm_Genlist_Item) : NULL)
501
502 struct _Pan
503 {
504    Evas_Object_Smart_Clipped_Data __clipped_data;
505    Widget_Data                   *wd;
506    Ecore_Job                     *resize_job;
507 };
508
509 static const char *widtype = NULL;
510 static void      _item_cache_zero(Widget_Data *wd);
511 static void      _del_hook(Evas_Object *obj);
512 static void      _theme_hook(Evas_Object *obj);
513 static void      _show_region_hook(void *data, Evas_Object *obj);
514 static void      _sizing_eval(Evas_Object *obj);
515 static void      _item_unrealize(Elm_Genlist_Item *it);
516 static void      _item_block_unrealize(Item_Block *itb);
517 static void      _calc_job(void *data);
518 static void      _on_focus_hook(void        *data,
519                                 Evas_Object *obj);
520 static Eina_Bool _item_multi_select_up(Widget_Data *wd);
521 static Eina_Bool _item_multi_select_down(Widget_Data *wd);
522 static Eina_Bool _item_single_select_up(Widget_Data *wd);
523 static Eina_Bool _item_single_select_down(Widget_Data *wd);
524 static Eina_Bool _event_hook(Evas_Object       *obj,
525                              Evas_Object       *src,
526                              Evas_Callback_Type type,
527                              void              *event_info);
528 static Eina_Bool _deselect_all_items(Widget_Data *wd);
529 static void      _pan_calculate(Evas_Object *obj);
530 // TODO : refactoring
531 static Evas_Object* _create_tray_alpha_bg(const Evas_Object *obj);
532 static unsigned int current_time_get();
533 static Eina_Bool _item_moving_effect_timer_cb(void *data);
534 static int _item_flip_effect_show(Elm_Genlist_Item *it);
535 static void _effect_item_controls(Elm_Genlist_Item *it, int itx, int ity);
536 static void _effect_item_realize(Elm_Genlist_Item *it, Eina_Bool effect_on);
537 static void _effect_item_unrealize(Elm_Genlist_Item *it);
538 static void _item_slide(Elm_Genlist_Item *it, Eina_Bool slide_to_right);
539 static void _sweep_finish(void *data, Evas_Object *o, const char *emission, const char *source);
540 static void _create_sweep_objs(Elm_Genlist_Item *it);
541 static void _delete_sweep_objs(Elm_Genlist_Item *it);
542 static void _effect_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after);
543 static void _effect_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before);
544 static void _group_items_recalc(void *data);
545 static void _select_all_down_process(Elm_Genlist_Item *select_all_it, Eina_Bool checked, Eina_Bool update_items);
546 static void _checkbox_item_select_process(Elm_Genlist_Item *it);
547 static void _item_auto_scroll(void *data);
548
549 static Evas_Smart_Class _pan_sc = EVAS_SMART_CLASS_INIT_VERSION;
550
551 static Eina_Bool
552 _event_hook(Evas_Object       *obj,
553             Evas_Object *src   __UNUSED__,
554             Evas_Callback_Type type,
555             void              *event_info)
556 {
557    if (type != EVAS_CALLBACK_KEY_DOWN) return EINA_FALSE;
558    Evas_Event_Key_Down *ev = event_info;
559    Widget_Data *wd = elm_widget_data_get(obj);
560    if (!wd) return EINA_FALSE;
561    if (!wd->items) return EINA_FALSE;
562    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return EINA_FALSE;
563    if (elm_widget_disabled_get(obj)) return EINA_FALSE;
564
565    Elm_Genlist_Item *it = NULL;
566    Evas_Coord x = 0;
567    Evas_Coord y = 0;
568    Evas_Coord step_x = 0;
569    Evas_Coord step_y = 0;
570    Evas_Coord v_w = 0;
571    Evas_Coord v_h = 0;
572    Evas_Coord page_x = 0;
573    Evas_Coord page_y = 0;
574
575    elm_smart_scroller_child_pos_get(wd->scr, &x, &y);
576    elm_smart_scroller_step_size_get(wd->scr, &step_x, &step_y);
577    elm_smart_scroller_page_size_get(wd->scr, &page_x, &page_y);
578    elm_smart_scroller_child_viewport_size_get(wd->scr, &v_w, &v_h);
579
580    if ((!strcmp(ev->keyname, "Left")) || (!strcmp(ev->keyname, "KP_Left")))
581      {
582         x -= step_x;
583      }
584    else if ((!strcmp(ev->keyname, "Right")) ||
585             (!strcmp(ev->keyname, "KP_Right")))
586      {
587         x += step_x;
588      }
589    else if ((!strcmp(ev->keyname, "Up")) || (!strcmp(ev->keyname, "KP_Up")))
590      {
591         if (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
592              (_item_multi_select_up(wd)))
593             || (_item_single_select_up(wd)))
594           {
595              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
596              return EINA_TRUE;
597           }
598         else
599           y -= step_y;
600      }
601    else if ((!strcmp(ev->keyname, "Down")) || (!strcmp(ev->keyname, "KP_Down")))
602      {
603         if (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
604              (_item_multi_select_down(wd)))
605             || (_item_single_select_down(wd)))
606           {
607              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
608              return EINA_TRUE;
609           }
610         else
611           y += step_y;
612      }
613    else if ((!strcmp(ev->keyname, "Home")) ||
614             (!strcmp(ev->keyname, "KP_Home")))
615      {
616         it = elm_genlist_first_item_get(obj);
617         elm_genlist_item_bring_in(it);
618         ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
619         return EINA_TRUE;
620      }
621    else if ((!strcmp(ev->keyname, "End")) ||
622             (!strcmp(ev->keyname, "KP_End")))
623      {
624         it = elm_genlist_last_item_get(obj);
625         elm_genlist_item_bring_in(it);
626         ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
627         return EINA_TRUE;
628      }
629    else if ((!strcmp(ev->keyname, "Prior")) ||
630             (!strcmp(ev->keyname, "KP_Prior")))
631      {
632         if (page_y < 0)
633           y -= -(page_y * v_h) / 100;
634         else
635           y -= page_y;
636      }
637    else if ((!strcmp(ev->keyname, "Next")) ||
638             (!strcmp(ev->keyname, "KP_Next")))
639      {
640         if (page_y < 0)
641           y += -(page_y * v_h) / 100;
642         else
643           y += page_y;
644      }
645    else if(((!strcmp(ev->keyname, "Return")) ||
646             (!strcmp(ev->keyname, "KP_Enter")) ||
647             (!strcmp(ev->keyname, "space")))
648            && (!wd->multi) && (wd->selected))
649      {
650         Elm_Genlist_Item *it = elm_genlist_selected_item_get(obj);
651         elm_genlist_item_expanded_set(it,
652                                       !elm_genlist_item_expanded_get(it));
653      }
654    else if (!strcmp(ev->keyname, "Escape"))
655      {
656         if (!_deselect_all_items(wd)) return EINA_FALSE;
657         ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
658         return EINA_TRUE;
659      }
660    else return EINA_FALSE;
661
662    ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
663    elm_smart_scroller_child_pos_set(wd->scr, x, y);
664    return EINA_TRUE;
665 }
666
667 static Eina_Bool
668 _deselect_all_items(Widget_Data *wd)
669 {
670    if (!wd->selected) return EINA_FALSE;
671    while(wd->selected)
672      elm_genlist_item_selected_set(wd->selected->data, EINA_FALSE);
673
674    return EINA_TRUE;
675 }
676
677 static Eina_Bool
678 _item_multi_select_up(Widget_Data *wd)
679 {
680    if (!wd->selected) return EINA_FALSE;
681    if (!wd->multi) return EINA_FALSE;
682
683    Elm_Genlist_Item *prev = elm_genlist_item_prev_get(wd->last_selected_item);
684    if (!prev) return EINA_TRUE;
685
686    if (elm_genlist_item_selected_get(prev))
687      {
688         elm_genlist_item_selected_set(wd->last_selected_item, EINA_FALSE);
689         wd->last_selected_item = prev;
690         elm_genlist_item_show(wd->last_selected_item);
691      }
692    else
693      {
694         elm_genlist_item_selected_set(prev, EINA_TRUE);
695         elm_genlist_item_show(prev);
696      }
697    return EINA_TRUE;
698 }
699
700 static Eina_Bool
701 _item_multi_select_down(Widget_Data *wd)
702 {
703    if (!wd->selected) return EINA_FALSE;
704    if (!wd->multi) return EINA_FALSE;
705
706    Elm_Genlist_Item *next = elm_genlist_item_next_get(wd->last_selected_item);
707    if (!next) return EINA_TRUE;
708
709    if (elm_genlist_item_selected_get(next))
710      {
711         elm_genlist_item_selected_set(wd->last_selected_item, EINA_FALSE);
712         wd->last_selected_item = next;
713         elm_genlist_item_show(wd->last_selected_item);
714      }
715    else
716      {
717         elm_genlist_item_selected_set(next, EINA_TRUE);
718         elm_genlist_item_show(next);
719      }
720    return EINA_TRUE;
721 }
722
723 static Eina_Bool
724 _item_single_select_up(Widget_Data *wd)
725 {
726    Elm_Genlist_Item *prev;
727    if (!wd->selected)
728      {
729         prev = ELM_GENLIST_ITEM_FROM_INLIST(wd->items->last);
730         while ((prev) && (prev->delete_me))
731           prev = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(prev)->prev);
732      }
733    else prev = elm_genlist_item_prev_get(wd->last_selected_item);
734
735    if (!prev) return EINA_FALSE;
736
737    _deselect_all_items(wd);
738
739    elm_genlist_item_selected_set(prev, EINA_TRUE);
740    elm_genlist_item_show(prev);
741    return EINA_TRUE;
742 }
743
744 static Eina_Bool
745 _item_single_select_down(Widget_Data *wd)
746 {
747    Elm_Genlist_Item *next;
748    if (!wd->selected)
749      {
750         next = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
751         while ((next) && (next->delete_me))
752           next = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(next)->next);
753      }
754    else next = elm_genlist_item_next_get(wd->last_selected_item);
755
756    if (!next) return EINA_FALSE;
757
758    _deselect_all_items(wd);
759
760    elm_genlist_item_selected_set(next, EINA_TRUE);
761    elm_genlist_item_show(next);
762    return EINA_TRUE;
763 }
764
765 static void
766 _on_focus_hook(void *data   __UNUSED__,
767                Evas_Object *obj)
768 {
769    Widget_Data *wd = elm_widget_data_get(obj);
770    if (!wd) return;
771    if (elm_widget_focus_get(obj))
772      {
773         edje_object_signal_emit(wd->obj, "elm,action,focus", "elm");
774         evas_object_focus_set(wd->obj, EINA_TRUE);
775         if ((wd->selected) && (!wd->last_selected_item))
776           wd->last_selected_item = eina_list_data_get(wd->selected);
777      }
778    else
779      {
780         edje_object_signal_emit(wd->obj, "elm,action,unfocus", "elm");
781         evas_object_focus_set(wd->obj, EINA_FALSE);
782      }
783 }
784
785 static void
786 _del_hook(Evas_Object *obj)
787 {
788    Widget_Data *wd = elm_widget_data_get(obj);
789    if (!wd) return;
790    _item_cache_zero(wd);
791    if (wd->calc_job) ecore_job_del(wd->calc_job);
792    if (wd->update_job) ecore_job_del(wd->update_job);
793    if (wd->must_recalc_idler) ecore_idler_del(wd->must_recalc_idler);
794    if (wd->multi_timer) ecore_timer_del(wd->multi_timer);
795    if (wd->scr_hold_timer) ecore_timer_del(wd->scr_hold_timer);
796    free(wd);
797 }
798
799 static void
800 _del_pre_hook(Evas_Object *obj)
801 {
802    Widget_Data *wd = elm_widget_data_get(obj);
803    if (!wd) return;
804    evas_object_del(wd->pan_smart);
805    wd->pan_smart = NULL;
806    elm_genlist_clear(obj);
807 }
808
809 static void
810 _theme_hook(Evas_Object *obj)
811 {
812    Widget_Data *wd = elm_widget_data_get(obj);
813    Item_Block *itb;
814    if (!wd) return;
815    _item_cache_zero(wd);
816    elm_smart_scroller_object_theme_set(obj, wd->scr, "genlist", "base",
817                                        elm_widget_style_get(obj));
818 //   edje_object_scale_set(wd->scr, elm_widget_scale_get(obj) * _elm_config->scale);
819    wd->item_width = wd->item_height = 0;
820    wd->minw = wd->minh = wd->realminw = 0;
821    EINA_INLIST_FOREACH(wd->blocks, itb)
822    {
823       Eina_List *l;
824       Elm_Genlist_Item *it;
825
826       if (itb->realized) _item_block_unrealize(itb);
827       EINA_LIST_FOREACH(itb->items, l, it)
828         it->mincalcd = EINA_FALSE;
829
830       itb->changed = EINA_TRUE;
831    }
832    if (wd->calc_job) ecore_job_del(wd->calc_job);
833    wd->calc_job = ecore_job_add(_calc_job, wd);
834    _sizing_eval(obj);
835 }
836
837 static void
838 _show_region_hook(void *data, Evas_Object *obj)
839 {
840    Widget_Data *wd = elm_widget_data_get(data);
841    Evas_Coord x, y, w, h;
842    if (!wd) return;
843    elm_widget_show_region_get(obj, &x, &y, &w, &h);
844    x += wd->pan_x;
845    y += wd->pan_y;
846    if (y > 0) elm_smart_scroller_child_region_show(wd->scr, x, y, w, h);
847 }
848
849 static void
850 _sizing_eval(Evas_Object *obj)
851 {
852    Widget_Data *wd = elm_widget_data_get(obj);
853    Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
854    if (!wd) return;
855    evas_object_size_hint_min_get(wd->scr, &minw, &minh);
856    evas_object_size_hint_max_get(wd->scr, &maxw, &maxh);
857    minh = -1;
858    if (wd->height_for_width)
859      {
860         Evas_Coord vw, vh;
861
862         elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
863         if ((vw != 0) && (vw != wd->prev_viewport_w))
864           {
865              Item_Block *itb;
866
867              wd->prev_viewport_w = vw;
868              EINA_INLIST_FOREACH(wd->blocks, itb)
869              {
870                 itb->must_recalc = EINA_TRUE;
871              }
872              if (wd->calc_job) ecore_job_del(wd->calc_job);
873              wd->calc_job = ecore_job_add(_calc_job, wd);
874           }
875      }
876    if (wd->mode == ELM_LIST_LIMIT)
877      {
878         Evas_Coord vmw, vmh, vw, vh;
879
880         minw = wd->realminw;
881         maxw = -1;
882         elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
883         if ((minw > 0) && (vw < minw)) vw = minw;
884         else if ((maxw > 0) && (vw > maxw))
885           vw = maxw;
886         edje_object_size_min_calc
887           (elm_smart_scroller_edje_object_get(wd->scr), &vmw, &vmh);
888         minw = vmw + minw;
889      }
890    else
891      {
892         Evas_Coord vmw, vmh;
893
894         edje_object_size_min_calc
895           (elm_smart_scroller_edje_object_get(wd->scr), &vmw, &vmh);
896         minw = vmw;
897         minh = vmh;
898      }
899    evas_object_size_hint_min_set(obj, minw, minh);
900    evas_object_size_hint_max_set(obj, maxw, maxh);
901 }
902
903 static void
904 _item_hilight(Elm_Genlist_Item *it)
905 {
906    const char *selectraise;
907    if ((it->wd->no_select) || (it->delete_me) || (it->hilighted) ||
908        (it->disabled)) return;
909    if ((!it->sweeped) && (!it->wd->edit_mode))
910       edje_object_signal_emit(it->base.view, "elm,state,selected", "elm");
911    selectraise = edje_object_data_get(it->base.view, "selectraise");
912    if ((selectraise) && (!strcmp(selectraise, "on")))
913      {
914         if (!it->wd->edit_mode) evas_object_raise(it->base.view);
915         if ((it->group_item) && (it->group_item->realized))
916            evas_object_raise(it->group_item->base.view);
917      }
918    it->hilighted = EINA_TRUE;
919    if (it->wd->select_all_item) evas_object_raise(it->wd->select_all_item->base.view);   
920 }
921
922 static void
923 _item_block_del(Elm_Genlist_Item *it)
924 {
925    Eina_Inlist *il;
926    Item_Block *itb = it->block;
927
928    itb->items = eina_list_remove(itb->items, it);
929    itb->count--;
930    itb->changed = EINA_TRUE;
931    if (!it->wd->reorder_deleted)
932      {
933         if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
934         it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
935      }
936    if (itb->count < 1)
937      {
938         il = EINA_INLIST_GET(itb);
939         Item_Block *itbn = (Item_Block *)(il->next);
940         if (it->parent)
941           it->parent->items = eina_list_remove(it->parent->items, it);
942         else
943           it->wd->blocks = eina_inlist_remove(it->wd->blocks, il);
944         free(itb);
945         if (itbn) itbn->changed = EINA_TRUE;
946      }
947    else
948      {
949         if (itb->count < itb->wd->max_items_per_block/2)
950           {
951              il = EINA_INLIST_GET(itb);
952              Item_Block *itbp = (Item_Block *)(il->prev);
953              Item_Block *itbn = (Item_Block *)(il->next);
954              if ((itbp) && ((itbp->count + itb->count) < itb->wd->max_items_per_block + itb->wd->max_items_per_block/2))
955                {
956                   Elm_Genlist_Item *it2;
957
958                   EINA_LIST_FREE(itb->items, it2)
959                     {
960                        it2->block = itbp;
961                        itbp->items = eina_list_append(itbp->items, it2);
962                        itbp->count++;
963                        itbp->changed = EINA_TRUE;
964                     }
965                   it->wd->blocks = eina_inlist_remove(it->wd->blocks,
966                                                       EINA_INLIST_GET(itb));
967                   free(itb);
968                }
969              else if ((itbn) && ((itbn->count + itb->count) < itb->wd->max_items_per_block + itb->wd->max_items_per_block/2))
970                {
971                   while (itb->items)
972                     {
973                        Eina_List *last = eina_list_last(itb->items);
974                        Elm_Genlist_Item *it2 = last->data;
975
976                        it2->block = itbn;
977                        itb->items = eina_list_remove_list(itb->items, last);
978                        itbn->items = eina_list_prepend(itbn->items, it2);
979                        itbn->count++;
980                        itbn->changed = EINA_TRUE;
981                     }
982                   it->wd->blocks =
983                     eina_inlist_remove(it->wd->blocks, EINA_INLIST_GET(itb));
984                   free(itb);
985                }
986           }
987      }
988 }
989
990 static void
991 _item_subitems_clear(Elm_Genlist_Item *it)
992 {
993    if (!it) return;
994    Eina_List *tl = NULL, *l;
995    Elm_Genlist_Item *it2;
996    
997    EINA_LIST_FOREACH(it->items, l, it2)
998       tl = eina_list_append(tl, it2);
999
1000    EINA_LIST_FREE(tl, it2)
1001      elm_genlist_item_del(it2);
1002 }
1003
1004 static void
1005 _item_del(Elm_Genlist_Item *it)
1006 {
1007    elm_widget_item_pre_notify_del(it);
1008    elm_genlist_item_subitems_clear(it);
1009    it->wd->walking -= it->walking;
1010    if (it->wd->show_item == it) it->wd->show_item = NULL;
1011    if (it->selected) it->wd->selected = eina_list_remove(it->wd->selected, it);
1012    if (it->realized) _item_unrealize(it);
1013    if (it->effect_item_realized) _effect_item_unrealize(it);
1014    if (it->block) _item_block_del(it);
1015    if ((!it->delete_me) && (it->itc->func.del))
1016      it->itc->func.del((void *)it->base.data, it->base.widget);
1017    it->delete_me = EINA_TRUE;
1018    if (it->queued)
1019      it->wd->queue = eina_list_remove(it->wd->queue, it);
1020 #ifdef ANCHOR_ITEM
1021    if (it->wd->anchor_item == it)
1022      {
1023         it->wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
1024         if (!it->wd->anchor_item)
1025           it->wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
1026      }
1027 #endif
1028    it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
1029    if (it->parent)
1030      it->parent->items = eina_list_remove(it->parent->items, it);
1031    if (it->flags & ELM_GENLIST_ITEM_GROUP)
1032      it->wd->group_items = eina_list_remove(it->wd->group_items, it);
1033    if (it->long_timer) ecore_timer_del(it->long_timer);
1034    if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
1035
1036    if (it->tooltip.del_cb)
1037      it->tooltip.del_cb((void *)it->tooltip.data, it->base.widget, it);
1038
1039    elm_widget_item_del(it);
1040    it->wd->total_num--;  // todo : remove
1041 }
1042
1043 static void
1044 _item_select(Elm_Genlist_Item *it)
1045 {
1046    if ((it->wd->no_select) || (it->delete_me)) return;
1047    if (it == it->wd->select_all_item) 
1048      { 
1049         if(it->wd->select_all_check)
1050           _select_all_down_process(it->wd->select_all_item, EINA_FALSE, EINA_TRUE);
1051         else
1052           _select_all_down_process(it->wd->select_all_item, EINA_TRUE, EINA_TRUE);                      
1053         return;
1054      }
1055    if (it->selected)
1056      {
1057         if (it->wd->always_select) goto call;
1058         return;
1059      }
1060    it->selected = EINA_TRUE;
1061    it->wd->selected = eina_list_append(it->wd->selected, it);
1062 call:
1063    it->walking++;
1064    it->wd->walking++;
1065    if (it->func.func) it->func.func((void *)it->func.data, it->base.widget, it);
1066    if (!it->delete_me)
1067      evas_object_smart_callback_call(it->base.widget, "selected", it);
1068    it->walking--;
1069    it->wd->walking--;
1070    if ((it->wd->clear_me) && (!it->wd->walking))
1071      elm_genlist_clear(it->base.widget);
1072    else
1073      {
1074         if ((!it->walking) && (it->delete_me))
1075           {
1076              if (!it->relcount) _item_del(it);
1077           }
1078      }
1079    it->wd->last_selected_item = it;
1080 }
1081
1082 static void
1083 _item_unselect(Elm_Genlist_Item *it)
1084 {
1085    const char *stacking, *selectraise;
1086    
1087    if (it == it->wd->select_all_item) return;
1088    if ((it->delete_me) || (!it->hilighted)) return;
1089    if (!it->sweeped)
1090       edje_object_signal_emit(it->base.view, "elm,state,unselected", "elm");
1091    stacking = edje_object_data_get(it->base.view, "stacking");
1092    selectraise = edje_object_data_get(it->base.view, "selectraise");
1093    if ((selectraise) && (!strcmp(selectraise, "on")))
1094      {
1095         if ((stacking) && (!strcmp(stacking, "below")))
1096           evas_object_lower(it->base.view);
1097      }
1098    it->hilighted = EINA_FALSE;
1099    if (it->selected)
1100      {
1101         it->selected = EINA_FALSE;
1102         it->wd->selected = eina_list_remove(it->wd->selected, it);
1103         evas_object_smart_callback_call(it->base.widget, "unselected", it);
1104      }
1105 }
1106
1107 static void
1108 _mouse_move(void        *data,
1109             Evas *evas   __UNUSED__,
1110             Evas_Object *obj,
1111             void        *event_info)
1112 {
1113    Elm_Genlist_Item *it = data;
1114    Evas_Event_Mouse_Move *ev = event_info;
1115    Evas_Coord minw = 0, minh = 0, x, y, dx, dy, adx, ady;
1116
1117    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1118      {
1119         if (!it->wd->on_hold)
1120           {
1121              it->wd->on_hold = EINA_TRUE;
1122              if (!it->wd->wasselected)
1123                _item_unselect(it);
1124           }
1125      }
1126    if (it->wd->multitouched)
1127      {
1128         it->wd->cur_x = ev->cur.canvas.x;
1129         it->wd->cur_y = ev->cur.canvas.y;
1130         return;
1131      }
1132    if ((it->dragging) && (it->down))
1133      {
1134         if (it->wd->movements == SWIPE_MOVES) it->wd->swipe = EINA_TRUE;
1135         else
1136           {
1137              it->wd->history[it->wd->movements].x = ev->cur.canvas.x;
1138              it->wd->history[it->wd->movements].y = ev->cur.canvas.y;
1139              if (abs((it->wd->history[it->wd->movements].x -
1140                       it->wd->history[0].x)) > 40)
1141                it->wd->swipe = EINA_TRUE;
1142              else
1143                it->wd->movements++;
1144           }
1145         if (it->long_timer)
1146           {
1147              ecore_timer_del(it->long_timer);
1148              it->long_timer = NULL;
1149           }
1150         evas_object_smart_callback_call(it->base.widget, "drag", it);
1151         return;
1152      }
1153    if ((!it->down) /* || (it->wd->on_hold)*/ || (it->wd->longpressed))
1154      {
1155         if (it->long_timer)
1156           {
1157              ecore_timer_del(it->long_timer);
1158              it->long_timer = NULL;
1159           }
1160         if (it->wd->reorder_mode && it->wd->reorder_it)
1161           {
1162              Evas_Coord ox,oy,oh,ow, sel_all_h = 0;
1163              evas_object_geometry_get(it->wd->pan_smart, &ox, &oy, &ow, &oh);
1164              int it_y = ev->cur.canvas.y - it->wd->reorder_it->dy;
1165              if (!it->wd->reorder_start_y) it->wd->reorder_start_y = it->block->y + it->y;
1166
1167              evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
1168              if (it->wd->select_all_item)
1169                 sel_all_h = it->wd->select_all_item->h; 
1170              if (it_y < oy + sel_all_h) _effect_item_controls(it, it->scrl_x, oy + sel_all_h);
1171              else if (it_y + it->wd->reorder_it->h > oy+oh) _effect_item_controls(it, it->scrl_x, oy + oh - it->wd->reorder_it->h);
1172              else _effect_item_controls(it, it->scrl_x, it_y);
1173
1174              if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
1175              it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
1176           }
1177         return;
1178      }
1179    if (!it->display_only)
1180      elm_coords_finger_size_adjust(1, &minw, 1, &minh);
1181    evas_object_geometry_get(obj, &x, &y, NULL, NULL);
1182    x = ev->cur.canvas.x - x;
1183    y = ev->cur.canvas.y - y;
1184    dx = x - it->dx;
1185    adx = dx;
1186    if (adx < 0) adx = -dx;
1187    dy = y - it->dy;
1188    ady = dy;
1189    if (ady < 0) ady = -dy;
1190    minw /= 2;
1191    minh /= 2;
1192    if ((adx > minw) || (ady > minh))
1193      {
1194         it->dragging = EINA_TRUE;
1195         if (it->long_timer)
1196           {
1197              ecore_timer_del(it->long_timer);
1198              it->long_timer = NULL;
1199           }
1200         if (!it->wd->wasselected)
1201           _item_unselect(it);
1202         if (dy < 0)
1203           {
1204              if (ady > adx)
1205                evas_object_smart_callback_call(it->base.widget,
1206                                                "drag,start,up", it);
1207              else
1208                {
1209                   if (dx < 0)
1210                     {
1211                        evas_object_smart_callback_call(it->base.widget,
1212                                                        "drag,start,left", it);
1213                        _item_slide(it, EINA_FALSE);
1214                     }
1215                   else
1216                     {
1217                        evas_object_smart_callback_call(it->base.widget,
1218                                                        "drag,start,right", it);
1219                        _item_slide(it, EINA_TRUE);
1220                     }
1221                }
1222           }
1223         else
1224           {
1225              if (ady > adx)
1226                evas_object_smart_callback_call(it->base.widget,
1227                                                "drag,start,down", it);
1228              else
1229                {
1230                   if (dx < 0)
1231                     {
1232                        evas_object_smart_callback_call(it->base.widget,
1233                                                        "drag,start,left", it);
1234                        _item_slide(it, EINA_FALSE);
1235                     }
1236                   else
1237                     {
1238                        evas_object_smart_callback_call(it->base.widget,
1239                                                        "drag,start,right", it);
1240                        _item_slide(it, EINA_TRUE);
1241                     }
1242                }
1243           }
1244      }
1245 }
1246
1247 static Eina_Bool
1248 _long_press(void *data)
1249 {
1250    Elm_Genlist_Item *it = data;
1251    Elm_Genlist_Item *it_tmp;
1252    static Eina_Bool done = EINA_FALSE;
1253    //static Eina_Bool contracted = EINA_FALSE;
1254    Eina_List *l;   
1255    Item_Block *itb;   
1256
1257    it->long_timer = NULL;
1258    if ((it->disabled) || (it->dragging) || (it->display_only))
1259       return ECORE_CALLBACK_CANCEL;
1260    it->wd->longpressed = EINA_TRUE;
1261    evas_object_smart_callback_call(it->base.widget, "longpressed", it);
1262    if ((it->wd->reorder_mode) && (it != it->wd->select_all_item) && (it->flags != ELM_GENLIST_ITEM_GROUP))
1263      {
1264         it->wd->reorder_it = it;
1265         it->wd->reorder_start_y = 0;
1266         evas_object_raise(it->edit_obj);
1267         elm_smart_scroller_hold_set(it->wd->scr, EINA_TRUE);
1268         edje_object_signal_emit(it->edit_obj, "elm,action,item,reorder_start", "elm");
1269
1270         EINA_INLIST_FOREACH(it->wd->blocks, itb)
1271           {
1272              if (itb->realized)
1273                {
1274                   done = 1;
1275                   EINA_LIST_FOREACH(itb->items, l, it_tmp)
1276                     {
1277                        if (it_tmp->flags != ELM_GENLIST_ITEM_GROUP && it_tmp->realized)
1278                          {
1279                             _item_unselect(it_tmp);
1280                          }
1281                     }
1282                }
1283              else
1284                {
1285                   if (done) break;
1286                }
1287           }
1288
1289         if (it->items)
1290           {
1291              EINA_LIST_FOREACH(it->items, l, it_tmp)
1292                {
1293                   if (elm_genlist_item_expanded_get(it_tmp)) 
1294                     {
1295                        elm_genlist_item_expanded_set(it_tmp, EINA_FALSE);
1296                        return ECORE_CALLBACK_RENEW;
1297                     } 
1298                }
1299           }
1300         if (elm_genlist_item_expanded_get(it)) {
1301              elm_genlist_item_expanded_set(it, EINA_FALSE);
1302              return ECORE_CALLBACK_RENEW;
1303         }
1304         if (it->wd->edit_field && it->renamed)
1305            elm_genlist_item_rename_mode_set(it, EINA_FALSE);        
1306      }
1307
1308    return ECORE_CALLBACK_CANCEL;
1309 }
1310
1311 static void
1312 _swipe(Elm_Genlist_Item *it)
1313 {
1314    int i, sum = 0;
1315
1316    if (!it) return;
1317    it->wd->swipe = EINA_FALSE;
1318    for (i = 0; i < it->wd->movements; i++)
1319      {
1320         sum += it->wd->history[i].x;
1321         if (abs(it->wd->history[0].y - it->wd->history[i].y) > 10) return;
1322      }
1323
1324    sum /= it->wd->movements;
1325    if (abs(sum - it->wd->history[0].x) <= 10) return;
1326    evas_object_smart_callback_call(it->base.widget, "swipe", it);
1327 }
1328
1329 static Eina_Bool
1330 _swipe_cancel(void *data)
1331 {
1332    Elm_Genlist_Item *it = data;
1333
1334    if (!it) return ECORE_CALLBACK_CANCEL;
1335    it->wd->swipe = EINA_FALSE;
1336    it->wd->movements = 0;
1337    return ECORE_CALLBACK_RENEW;
1338 }
1339
1340 static Eina_Bool
1341 _multi_cancel(void *data)
1342 {
1343    Widget_Data *wd = data;
1344
1345    if (!wd) return ECORE_CALLBACK_CANCEL;
1346    wd->multi_timeout = EINA_TRUE;
1347    return ECORE_CALLBACK_RENEW;
1348 }
1349
1350 static void
1351 _multi_touch_gesture_eval(void *data)
1352 {
1353    Elm_Genlist_Item *it = data;
1354
1355    it->wd->multitouched = EINA_FALSE;
1356    if (it->wd->multi_timer)
1357      {
1358         ecore_timer_del(it->wd->multi_timer);
1359         it->wd->multi_timer = NULL;
1360      }
1361    if (it->wd->multi_timeout)
1362      {
1363          it->wd->multi_timeout = EINA_FALSE;
1364          return;
1365      }
1366
1367    Evas_Coord minw = 0, minh = 0;
1368    Evas_Coord off_x, off_y, off_mx, off_my;
1369
1370    elm_coords_finger_size_adjust(1, &minw, 1, &minh);
1371    off_x = abs(it->wd->cur_x - it->wd->prev_x);
1372    off_y = abs(it->wd->cur_y - it->wd->prev_y);
1373    off_mx = abs(it->wd->cur_mx - it->wd->prev_mx);
1374    off_my = abs(it->wd->cur_my - it->wd->prev_my);
1375
1376    if (((off_x > minw) || (off_y > minh)) && ((off_mx > minw) || (off_my > minh)))
1377      {
1378         if ((off_x + off_mx) > (off_y + off_my))
1379           {
1380              if ((it->wd->cur_x > it->wd->prev_x) && (it->wd->cur_mx > it->wd->prev_mx))
1381                evas_object_smart_callback_call(it->base.widget,
1382                                                "multi,swipe,right", it);
1383              else if ((it->wd->cur_x < it->wd->prev_x) && (it->wd->cur_mx < it->wd->prev_mx))
1384                evas_object_smart_callback_call(it->base.widget,
1385                                                "multi,swipe,left", it);
1386              else if (abs(it->wd->cur_x - it->wd->cur_mx) > abs(it->wd->prev_x - it->wd->prev_mx))
1387                evas_object_smart_callback_call(it->base.widget,
1388                                                "multi,pinch,out", it);
1389              else
1390                evas_object_smart_callback_call(it->base.widget,
1391                                                "multi,pinch,in", it);
1392           }
1393         else
1394           {
1395              if ((it->wd->cur_y > it->wd->prev_y) && (it->wd->cur_my > it->wd->prev_my))
1396                evas_object_smart_callback_call(it->base.widget,
1397                                                "multi,swipe,down", it);
1398              else if ((it->wd->cur_y < it->wd->prev_y) && (it->wd->cur_my < it->wd->prev_my))
1399                evas_object_smart_callback_call(it->base.widget,
1400                                                "multi,swipe,up", it);
1401              else if (abs(it->wd->cur_y - it->wd->cur_my) > abs(it->wd->prev_y - it->wd->prev_my))
1402                evas_object_smart_callback_call(it->base.widget,
1403                                                "multi,pinch,out", it);
1404              else
1405                evas_object_smart_callback_call(it->base.widget,
1406                                                "multi,pinch,in", it);
1407           }
1408      }
1409      it->wd->multi_timeout = EINA_FALSE;
1410 }
1411
1412 static void
1413 _multi_down(void        *data,
1414             Evas *evas  __UNUSED__,
1415             Evas_Object *obj __UNUSED__,
1416             void        *event_info)
1417 {
1418    Elm_Genlist_Item *it = data;
1419    Evas_Event_Multi_Down *ev = event_info;
1420
1421    if ((it->wd->multi_device != 0) || (it->wd->multitouched) || (it->wd->multi_timeout)) return;
1422    it->wd->multi_device = ev->device;
1423    it->wd->multi_down = EINA_TRUE;
1424    it->wd->multitouched = EINA_TRUE;
1425    it->wd->prev_mx = ev->canvas.x;
1426    it->wd->prev_my = ev->canvas.y;
1427    if (!it->wd->wasselected) _item_unselect(it);
1428    it->wd->wasselected = EINA_FALSE;
1429    it->wd->longpressed = EINA_FALSE;
1430    if (it->long_timer)
1431      {
1432         ecore_timer_del(it->long_timer);
1433         it->long_timer = NULL;
1434      }
1435    if (it->dragging)
1436      {
1437         it->dragging = EINA_FALSE;
1438         evas_object_smart_callback_call(it->base.widget, "drag,stop", it);
1439      }
1440    if (it->swipe_timer)
1441      {
1442         ecore_timer_del(it->swipe_timer);
1443         it->swipe_timer = NULL;
1444      }
1445    if (it->wd->on_hold)
1446      {
1447         it->wd->swipe = EINA_FALSE;
1448         it->wd->movements = 0;
1449         it->wd->on_hold = EINA_FALSE;
1450      }
1451 }
1452
1453 static void
1454 _multi_up(void        *data,
1455           Evas *evas  __UNUSED__,
1456           Evas_Object *obj __UNUSED__,
1457           void        *event_info)
1458 {
1459    Elm_Genlist_Item *it = data;
1460    Evas_Event_Multi_Up *ev = event_info;
1461
1462    if (it->wd->multi_device != ev->device) return;
1463    it->wd->multi_device = 0;
1464    it->wd->multi_down = EINA_FALSE;
1465    if (it->wd->mouse_down) return;
1466    _multi_touch_gesture_eval(data);
1467 }
1468
1469 static void
1470 _multi_move(void        *data,
1471             Evas *evas  __UNUSED__,
1472             Evas_Object *obj __UNUSED__,
1473             void        *event_info)
1474 {
1475    Elm_Genlist_Item *it = data;
1476    Evas_Event_Multi_Move *ev = event_info;
1477
1478    if (it->wd->multi_device != ev->device) return;
1479    it->wd->cur_mx = ev->cur.canvas.x;
1480    it->wd->cur_my = ev->cur.canvas.y;
1481 }
1482
1483 static void
1484 _mouse_down(void        *data,
1485             Evas *evas   __UNUSED__,
1486             Evas_Object *obj,
1487             void        *event_info)
1488 {
1489    Elm_Genlist_Item *it = data;
1490    Evas_Event_Mouse_Down *ev = event_info;
1491    Evas_Coord x, y;
1492
1493    if (ev->button != 1) return;
1494    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1495      {
1496         it->wd->on_hold = EINA_TRUE;
1497      }
1498
1499    if (it->wd->edit_field && !it->renamed)
1500       elm_genlist_item_rename_mode_set(it, EINA_FALSE);
1501    it->down = EINA_TRUE;
1502    it->dragging = EINA_FALSE;
1503    evas_object_geometry_get(obj, &x, &y, NULL, NULL);
1504    it->dx = ev->canvas.x - x;
1505    it->dy = ev->canvas.y - y;
1506    it->wd->mouse_down = EINA_TRUE;
1507    if (!it->wd->multitouched)
1508      {
1509         it->wd->prev_x = ev->canvas.x;
1510         it->wd->prev_y = ev->canvas.y;
1511         it->wd->multi_timeout = EINA_FALSE;
1512         if (it->wd->multi_timer) ecore_timer_del(it->wd->multi_timer);
1513         it->wd->multi_timer = ecore_timer_add(1, _multi_cancel, it->wd);
1514      }
1515    it->wd->longpressed = EINA_FALSE;
1516    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) it->wd->on_hold = EINA_TRUE;
1517    else it->wd->on_hold = EINA_FALSE;
1518    if (it->wd->on_hold) return;
1519    it->wd->wasselected = it->selected;
1520    _item_hilight(it);
1521    if (ev->flags & EVAS_BUTTON_DOUBLE_CLICK)
1522      evas_object_smart_callback_call(it->base.widget, "clicked", it);
1523    if (it->long_timer) ecore_timer_del(it->long_timer);
1524    if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
1525    it->swipe_timer = ecore_timer_add(0.4, _swipe_cancel, it);
1526    if (it->realized)
1527      it->long_timer = ecore_timer_add(it->wd->longpress_timeout, _long_press,
1528                                       it);
1529    else
1530      it->long_timer = NULL;
1531    it->wd->swipe = EINA_FALSE;
1532    it->wd->movements = 0;
1533 }
1534
1535 static void
1536 _mouse_up(void            *data,
1537           Evas *evas       __UNUSED__,
1538           Evas_Object *obj __UNUSED__,
1539           void            *event_info)
1540 {
1541    Elm_Genlist_Item *it = data;
1542    Evas_Event_Mouse_Up *ev = event_info;
1543    Eina_Bool dragged = EINA_FALSE;
1544
1545    if (ev->button != 1) return;
1546    it->down = EINA_FALSE;
1547    it->wd->mouse_down = EINA_FALSE;
1548    if (it->wd->multitouched)
1549      {
1550         if (it->wd->multi_down) return;
1551         _multi_touch_gesture_eval(data);
1552         return;
1553      }
1554    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) it->wd->on_hold = EINA_TRUE;
1555    else it->wd->on_hold = EINA_FALSE;
1556    if (it->long_timer)
1557      {
1558         ecore_timer_del(it->long_timer);
1559         it->long_timer = NULL;
1560      }
1561    if (it->dragging)
1562      {
1563         it->dragging = EINA_FALSE;
1564         evas_object_smart_callback_call(it->base.widget, "drag,stop", it);
1565         dragged = 1;
1566      }
1567    if (it->swipe_timer)
1568      {
1569         ecore_timer_del(it->swipe_timer);
1570         it->swipe_timer = NULL;
1571      }
1572    if (it->wd->multi_timer)
1573      {
1574         ecore_timer_del(it->wd->multi_timer);
1575         it->wd->multi_timer = NULL;
1576         it->wd->multi_timeout = EINA_FALSE;
1577      }
1578    if (it->wd->on_hold)
1579      {
1580         if (it->wd->swipe) _swipe(data);
1581         it->wd->longpressed = EINA_FALSE;
1582         it->wd->on_hold = EINA_FALSE;
1583         return;
1584      }
1585    if (it->wd->reorder_mode)
1586      {
1587         Evas_Coord rox, roy, row, roh, sel_all_h = 0;
1588         Elm_Genlist_Item *reorder_it = it->wd->reorder_it;
1589         if (reorder_it)
1590           {
1591              Evas_Coord ox,oy,oh,ow;
1592              evas_object_geometry_get(it->wd->pan_smart, &ox, &oy, &ow, &oh);
1593              evas_object_geometry_get(it->wd->reorder_it->base.view, &rox, &roy, &row, &roh);
1594              if (it->wd->select_all_item) sel_all_h = it->wd->select_all_item->h; 
1595              if (it->wd->reorder_rel)
1596                { 
1597                   if (it->wd->reorder_it->parent == it->wd->reorder_rel->parent)  // todo : refactoring
1598                     {
1599                        if (roy + oy - sel_all_h <= it->wd->reorder_rel->scrl_y)
1600                           _effect_item_move_before(it->wd->reorder_it, it->wd->reorder_rel);
1601                        else
1602                           _effect_item_move_after(it->wd->reorder_it, it->wd->reorder_rel);
1603                     }
1604                }
1605             it->wd->reorder_deleted = EINA_FALSE;
1606             it->wd->reorder_it = it->wd->reorder_rel = NULL;
1607             elm_smart_scroller_hold_set(it->wd->scr, EINA_FALSE);
1608             edje_object_signal_emit(it->edit_obj, "elm,action,item,reorder_end", "elm");
1609          }
1610       }
1611    if (it->wd->longpressed)
1612      {
1613         it->wd->longpressed = EINA_FALSE;
1614         if (!it->wd->wasselected)
1615           _item_unselect(it);
1616         it->wd->wasselected = EINA_FALSE;
1617         return;
1618      }
1619    if (dragged)
1620      {
1621         if (it->want_unrealize)
1622           {
1623              _item_unrealize(it);
1624              if (it->block->want_unrealize)
1625                _item_block_unrealize(it->block);
1626           }
1627      }
1628    if ((it->disabled) || (dragged) || (it->display_only)) return;
1629    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
1630    if (it->wd->multi)
1631      {
1632         if ((!it->selected) && (!it->sweeped))
1633           {
1634              _item_hilight(it);
1635              _item_select(it);
1636           }
1637         else _item_unselect(it);
1638      }
1639    else
1640      {
1641         if (!it->selected)
1642           {
1643              Widget_Data *wd = it->wd;
1644              if (wd)
1645                {
1646                   while (wd->selected) _item_unselect(wd->selected->data);
1647                }
1648           }
1649         else
1650           {
1651              const Eina_List *l, *l_next;
1652              Elm_Genlist_Item *it2;
1653
1654              EINA_LIST_FOREACH_SAFE(it->wd->selected, l, l_next, it2)
1655                if (it2 != it) _item_unselect(it2);
1656              //_item_hilight(it);
1657              //_item_select(it);
1658           }
1659         if (!it->sweeped)
1660           {
1661              _item_hilight(it);
1662              _item_select(it);
1663           }
1664      }
1665 }
1666
1667 static void
1668 _signal_expand_toggle(void                *data,
1669                       Evas_Object *obj     __UNUSED__,
1670                       const char *emission __UNUSED__,
1671                       const char *source   __UNUSED__)
1672 {
1673    Elm_Genlist_Item *it = data;
1674
1675    if (it->expanded)
1676      evas_object_smart_callback_call(it->base.widget, "contract,request", it);
1677    else
1678      evas_object_smart_callback_call(it->base.widget, "expand,request", it);
1679 }
1680
1681 static void
1682 _signal_expand(void                *data,
1683                Evas_Object *obj     __UNUSED__,
1684                const char *emission __UNUSED__,
1685                const char *source   __UNUSED__)
1686 {
1687    Elm_Genlist_Item *it = data;
1688
1689    if (!it->expanded)
1690      evas_object_smart_callback_call(it->base.widget, "expand,request", it);
1691 }
1692
1693 static void
1694 _signal_contract(void                *data,
1695                  Evas_Object *obj     __UNUSED__,
1696                  const char *emission __UNUSED__,
1697                  const char *source   __UNUSED__)
1698 {
1699    Elm_Genlist_Item *it = data;
1700
1701    if (it->expanded)
1702      evas_object_smart_callback_call(it->base.widget, "contract,request", it);
1703 }
1704
1705 static void
1706 _item_cache_clean(Widget_Data *wd)
1707 {
1708    while ((wd->item_cache) && (wd->item_cache_count > wd->item_cache_max))
1709      {
1710         Item_Cache *itc;
1711
1712         itc = EINA_INLIST_CONTAINER_GET(wd->item_cache->last, Item_Cache);
1713         wd->item_cache = eina_inlist_remove(wd->item_cache,
1714                                             wd->item_cache->last);
1715         wd->item_cache_count--;
1716         if (itc->spacer) evas_object_del(itc->spacer);
1717         if (itc->base_view) evas_object_del(itc->base_view);
1718         if (itc->item_style) eina_stringshare_del(itc->item_style);
1719         free(itc);
1720      }
1721 }
1722
1723 static void
1724 _item_cache_zero(Widget_Data *wd)
1725 {
1726    int pmax = wd->item_cache_max;
1727    wd->item_cache_max = 0;
1728    _item_cache_clean(wd);
1729    wd->item_cache_max = pmax;
1730 }
1731
1732 static void
1733 _item_cache_add(Elm_Genlist_Item *it)
1734 {
1735    Item_Cache *itc;
1736
1737    if (it->wd->item_cache_max <= 0)
1738      {
1739         evas_object_del(it->base.view);
1740         it->base.view = NULL;
1741         evas_object_del(it->spacer);
1742         it->spacer = NULL;
1743         return;
1744      }
1745
1746    it->wd->item_cache_count++;
1747    itc = calloc(1, sizeof(Item_Cache));
1748    if (!itc) return;
1749    it->wd->item_cache = eina_inlist_prepend(it->wd->item_cache,
1750                                             EINA_INLIST_GET(itc));
1751    itc->spacer = it->spacer;
1752    it->spacer = NULL;
1753    itc->base_view = it->base.view;
1754    it->base.view = NULL;
1755    evas_object_hide(itc->base_view);
1756    evas_object_move(itc->base_view, -9999, -9999);
1757    itc->item_style = eina_stringshare_add(it->itc->item_style);
1758    if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) itc->tree = 1;
1759    itc->compress = (it->wd->compress);
1760    itc->odd = (it->order_num_in & 0x1);
1761    itc->selected = it->selected;
1762    itc->disabled = it->disabled;
1763    itc->expanded = it->expanded;
1764    if (it->long_timer)
1765      {
1766         ecore_timer_del(it->long_timer);
1767         it->long_timer = NULL;
1768      }
1769    if (it->swipe_timer)
1770      {
1771         ecore_timer_del(it->swipe_timer);
1772         it->swipe_timer = NULL;
1773      }
1774    // FIXME: other callbacks?
1775    edje_object_signal_callback_del_full(itc->base_view,
1776                                         "elm,action,expand,toggle",
1777                                         "elm", _signal_expand_toggle, it);
1778    edje_object_signal_callback_del_full(itc->base_view, "elm,action,expand",
1779                                         "elm",
1780                                         _signal_expand, it);
1781    edje_object_signal_callback_del_full(itc->base_view, "elm,action,contract",
1782                                         "elm", _signal_contract, it);
1783    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_DOWN,
1784                                        _mouse_down, it);
1785    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_UP,
1786                                        _mouse_up, it);
1787    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_MOVE,
1788                                        _mouse_move, it);
1789    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_DOWN,
1790                                        _multi_down, it);
1791    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_UP,
1792                                        _multi_up, it);
1793    evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_MOVE,
1794                                        _multi_move, it);
1795    _item_cache_clean(it->wd);
1796 }
1797
1798 static Item_Cache *
1799 _item_cache_find(Elm_Genlist_Item *it)
1800 {
1801    Item_Cache *itc;
1802    Eina_Bool tree = 0, odd;
1803
1804    if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) tree = 1;
1805    odd = (it->order_num_in & 0x1);
1806    EINA_INLIST_FOREACH(it->wd->item_cache, itc)
1807    {
1808       if ((itc->selected) || (itc->disabled) || (itc->expanded))
1809         continue;
1810       if ((itc->tree == tree) &&
1811           (itc->odd == odd) &&
1812           (itc->compress == it->wd->compress) &&
1813           (!strcmp(it->itc->item_style, itc->item_style)))
1814         {
1815            it->wd->item_cache = eina_inlist_remove(it->wd->item_cache,
1816                                                    EINA_INLIST_GET(itc));
1817            it->wd->item_cache_count--;
1818            return itc;
1819         }
1820    }
1821    return NULL;
1822 }
1823
1824 static void
1825 _item_cache_free(Item_Cache *itc)
1826 {
1827    if (itc->spacer) evas_object_del(itc->spacer);
1828    if (itc->base_view) evas_object_del(itc->base_view);
1829    if (itc->item_style) eina_stringshare_del(itc->item_style);
1830    free(itc);
1831 }
1832
1833 static void
1834 _item_realize(Elm_Genlist_Item *it,
1835               int               in,
1836               int               calc)
1837 {
1838    Elm_Genlist_Item *it2;
1839    const char *stacking;
1840    const char *treesize;
1841    char buf[1024];
1842    int depth, tsize = 20;
1843    Item_Cache *itc = NULL;
1844
1845    if ((it->realized) || (it->delete_me)) return;
1846    it->order_num_in = in;
1847    if (it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE) calc = EINA_FALSE;
1848    if (it->nocache)
1849       it->nocache = EINA_FALSE;
1850    else
1851       itc = _item_cache_find(it);
1852    if ((!it->wd->effect_mode) && (itc))
1853      {
1854         it->base.view = itc->base_view;
1855         itc->base_view = NULL;
1856         it->spacer = itc->spacer;
1857         itc->spacer = NULL;
1858      }
1859    else
1860      {
1861         it->base.view = edje_object_add(evas_object_evas_get(it->base.widget));
1862         edje_object_scale_set(it->base.view,
1863                               elm_widget_scale_get(it->base.widget) *
1864                               _elm_config->scale);
1865         evas_object_smart_member_add(it->base.view, it->wd->pan_smart);
1866         elm_widget_sub_object_add(it->base.widget, it->base.view);
1867
1868         if (it->flags & ELM_GENLIST_ITEM_SUBITEMS)
1869           strncpy(buf, "tree", sizeof(buf));
1870         else strncpy(buf, "item", sizeof(buf));
1871         if (it->wd->compress)
1872           strncat(buf, "_compress", sizeof(buf) - strlen(buf));
1873
1874         if (in & 0x1) strncat(buf, "_odd", sizeof(buf) - strlen(buf));
1875         strncat(buf, "/", sizeof(buf) - strlen(buf));
1876         strncat(buf, it->itc->item_style, sizeof(buf) - strlen(buf));
1877
1878         _elm_theme_object_set(it->base.widget, it->base.view, "genlist", buf,
1879                               elm_widget_style_get(it->base.widget));
1880         it->spacer =
1881           evas_object_rectangle_add(evas_object_evas_get(it->base.widget));
1882         evas_object_color_set(it->spacer, 0, 0, 0, 0);
1883         elm_widget_sub_object_add(it->base.widget, it->spacer);
1884      }
1885    for (it2 = it, depth = 0; it2->parent; it2 = it2->parent)
1886      {
1887         if (it2->parent->flags != ELM_GENLIST_ITEM_GROUP) depth += 1;
1888      }
1889    it->expanded_depth = depth;
1890    treesize = edje_object_data_get(it->base.view, "treesize");
1891    if (treesize) tsize = atoi(treesize);
1892    evas_object_size_hint_min_set(it->spacer,
1893                                  (depth * tsize) * _elm_config->scale, 1);
1894    edje_object_part_swallow(it->base.view, "elm.swallow.pad", it->spacer);
1895    if (!calc)
1896      {
1897         edje_object_signal_callback_add(it->base.view,
1898                                         "elm,action,expand,toggle",
1899                                         "elm", _signal_expand_toggle, it);
1900         edje_object_signal_callback_add(it->base.view, "elm,action,expand",
1901                                         "elm", _signal_expand, it);
1902         edje_object_signal_callback_add(it->base.view, "elm,action,contract",
1903                                         "elm", _signal_contract, it);
1904         stacking = edje_object_data_get(it->base.view, "stacking");
1905         if (stacking)
1906           {
1907              if (!strcmp(stacking, "below")) evas_object_lower(it->base.view);
1908              else if (!strcmp(stacking, "above"))
1909                evas_object_raise(it->base.view);
1910           }
1911         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_DOWN,
1912                                        _mouse_down, it);
1913         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_UP,
1914                                        _mouse_up, it);
1915         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_MOVE,
1916                                        _mouse_move, it);
1917         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_DOWN,
1918                                        _multi_down, it);
1919         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_UP,
1920                                        _multi_up, it);
1921         evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_MOVE,
1922                                        _multi_move, it);
1923         if (itc)
1924           {
1925              if (it->selected != itc->selected)
1926                {
1927                   if ((it->selected) && (!it->sweeped) && (!it->wd->edit_mode))
1928                     edje_object_signal_emit(it->base.view,
1929                                             "elm,state,selected", "elm");
1930                }
1931              if (it->disabled != itc->disabled)
1932                {
1933                   if (it->disabled)
1934                     edje_object_signal_emit(it->base.view,
1935                                             "elm,state,disabled", "elm");
1936                }
1937              if (it->expanded != itc->expanded)
1938                {
1939                   if (it->expanded)
1940                     edje_object_signal_emit(it->base.view,
1941                                             "elm,state,expanded", "elm");
1942                }
1943           }
1944         else
1945           {
1946              if ((it->selected) && (!it->sweeped) && (!it->wd->edit_mode))
1947                 edje_object_signal_emit(it->base.view,
1948                                         "elm,state,selected", "elm");
1949              if (it->disabled)
1950                edje_object_signal_emit(it->base.view,
1951                                        "elm,state,disabled", "elm");
1952              if (it->expanded)
1953                edje_object_signal_emit(it->base.view,
1954                                        "elm,state,expanded", "elm");
1955           }
1956      }
1957
1958    if ((calc) && (it->wd->homogeneous) && (it->wd->item_width) && it->wd->group_item_width )
1959      {
1960         /* homogenous genlist shortcut */
1961          if ((it->flags & ELM_GENLIST_ITEM_GROUP) && (!it->mincalcd))
1962            {
1963               it->w = it->minw = it->wd->group_item_width;
1964               it->h = it->minh = it->wd->group_item_height;
1965               it->mincalcd = EINA_TRUE;
1966            }
1967          else if (!it->mincalcd)
1968            {
1969               it->w = it->minw = it->wd->item_width;
1970               it->h = it->minh = it->wd->item_height;
1971               it->mincalcd = EINA_TRUE;
1972            }
1973      }
1974    else
1975      {
1976         if (it->itc->func.label_get)
1977           {
1978              const Eina_List *l;
1979              const char *key;
1980
1981              it->labels =
1982                elm_widget_stringlist_get(edje_object_data_get(it->base.view,
1983                                                               "labels"));
1984              EINA_LIST_FOREACH(it->labels, l, key)
1985                {
1986                   char *s = it->itc->func.label_get
1987                       ((void *)it->base.data, it->base.widget, l->data);
1988
1989                   if (s)
1990                     {
1991                        edje_object_part_text_set(it->base.view, l->data, s);
1992                        free(s);
1993                     }
1994                   else if (itc)
1995                     edje_object_part_text_set(it->base.view, l->data, "");
1996                }
1997           }
1998         if (it->itc->func.icon_get)
1999           {
2000              const Eina_List *l;
2001              const char *key;
2002
2003              it->icons =
2004                elm_widget_stringlist_get(edje_object_data_get(it->base.view,
2005                                                               "icons"));
2006              EINA_LIST_FOREACH(it->icons, l, key)
2007                {
2008                   Evas_Object *ic = it->itc->func.icon_get
2009                       ((void *)it->base.data, it->base.widget, l->data);
2010
2011                   if (ic)
2012                     {
2013                        it->icon_objs = eina_list_append(it->icon_objs, ic);
2014                        edje_object_part_swallow(it->base.view, key, ic);
2015                        evas_object_show(ic);
2016                        elm_widget_sub_object_add(it->base.widget, ic);
2017                     }
2018                }
2019           }
2020         if (it->itc->func.state_get)
2021           {
2022              const Eina_List *l;
2023              const char *key;
2024
2025              it->states =
2026                elm_widget_stringlist_get(edje_object_data_get(it->base.view,
2027                                                               "states"));
2028              EINA_LIST_FOREACH(it->states, l, key)
2029                {
2030                   Eina_Bool on = it->itc->func.state_get
2031                       ((void *)it->base.data, it->base.widget, l->data);
2032
2033                   if (on)
2034                     {
2035                        snprintf(buf, sizeof(buf), "elm,state,%s,active", key);
2036                        edje_object_signal_emit(it->base.view, buf, "elm");
2037                     }
2038                   else if (itc)
2039                     {
2040                        snprintf(buf, sizeof(buf), "elm,state,%s,passive", key);
2041                        edje_object_signal_emit(it->base.view, buf, "elm");
2042                     }
2043                }
2044           }
2045         if (it->sweeped)
2046            _create_sweep_objs(it);
2047         if (!it->mincalcd)
2048           {
2049              Evas_Coord mw = -1, mh = -1;
2050
2051              if (it->wd->height_for_width) mw = it->wd->w;
2052
2053              if (!it->display_only)
2054                elm_coords_finger_size_adjust(1, &mw, 1, &mh);
2055              if (it->wd->height_for_width) mw = it->wd->prev_viewport_w;
2056              edje_object_size_min_restricted_calc(it->base.view, &mw, &mh, mw,
2057                                                   mh);
2058              if (!it->display_only)
2059                elm_coords_finger_size_adjust(1, &mw, 1, &mh);
2060              it->w = it->minw = mw;
2061              it->h = it->minh = mh;
2062              it->mincalcd = EINA_TRUE;
2063
2064              if ((it->wd->homogeneous) && (it->flags & ELM_GENLIST_ITEM_GROUP))
2065                 {
2066                    it->wd->group_item_width = mw;
2067                    it->wd->group_item_height = mh;
2068                 }
2069              else  if ((it->wd->homogeneous))
2070           //   if ((!in) && (it->wd->homogeneous))
2071                {
2072                   it->wd->item_width = mw;
2073                   it->wd->item_height = mh;
2074                }
2075              if ((!in) && (it->wd->homogeneous) && (!it->wd->group_item_width))
2076                 {
2077                    if (it->flags & ELM_GENLIST_ITEM_GROUP)
2078                         {
2079                             it->wd->group_item_width = mw;
2080                             it->wd->group_item_height = mh;
2081                          }
2082                 }
2083           }
2084         if (!calc) evas_object_show(it->base.view);
2085      }
2086
2087    if (it->tooltip.content_cb)
2088      {
2089         elm_widget_item_tooltip_content_cb_set(it,
2090                                                it->tooltip.content_cb,
2091                                                it->tooltip.data, NULL);
2092         elm_widget_item_tooltip_style_set(it, it->tooltip.style);
2093      }
2094
2095    if (it->mouse_cursor)
2096      elm_widget_item_cursor_set(it, it->mouse_cursor);
2097
2098    it->realized = EINA_TRUE;
2099    it->want_unrealize = EINA_FALSE;
2100
2101    if (itc) _item_cache_free(itc);
2102    evas_object_smart_callback_call(it->base.widget, "realized", it);
2103    if ((it->wd->edit_mode) && (it->flags != ELM_GENLIST_ITEM_GROUP) && ((!it->wd->select_all_item) || ((it->wd->select_all_item) && (it != it->wd->select_all_item))))
2104      {
2105          _effect_item_realize(it, EINA_FALSE);
2106          edje_object_message_signal_process(it->edit_obj);
2107      }
2108 }
2109
2110 static void
2111 _item_unrealize(Elm_Genlist_Item *it)
2112 {
2113    Evas_Object *icon;
2114
2115    if (!it->realized) return;
2116    if (it->wd->reorder_it && it->wd->reorder_it == it) return;
2117    if (!it->wd->edit_mode && it->hilighted) return;
2118    evas_object_smart_callback_call(it->base.widget, "unrealized", it);
2119    if (it->long_timer)
2120      {
2121         ecore_timer_del(it->long_timer);
2122         it->long_timer = NULL;
2123      }
2124    if ((it->sweeped) || (it->wassweeped) || (it->nocache))
2125      {
2126         it->sweeped = EINA_FALSE;
2127         it->wassweeped = EINA_FALSE;
2128         it->wd->sweeped_items = eina_list_remove(it->wd->sweeped_items, it);
2129         _delete_sweep_objs(it);
2130         evas_object_del(it->base.view);
2131         it->base.view = NULL;
2132         evas_object_del(it->spacer);
2133         it->spacer = NULL;
2134      }
2135    else
2136       _item_cache_add(it);
2137    elm_widget_stringlist_free(it->labels);
2138    it->labels = NULL;
2139    elm_widget_stringlist_free(it->icons);
2140    it->icons = NULL;
2141    elm_widget_stringlist_free(it->states);
2142
2143    EINA_LIST_FREE(it->icon_objs, icon)
2144      evas_object_del(icon);
2145
2146    it->states = NULL;
2147    it->realized = EINA_FALSE;
2148    it->want_unrealize = EINA_FALSE;
2149    if (it->wd->edit_mode != ELM_GENLIST_EDIT_MODE_NONE) _effect_item_unrealize(it);
2150 }
2151
2152 static Eina_Bool 
2153 _item_block_recalc(Item_Block *itb,
2154                    int         in,
2155                    int         qadd,
2156                    int         norender)
2157 {
2158    const Eina_List *l;
2159    Elm_Genlist_Item *it;
2160    Evas_Coord minw = 0, minh = 0;
2161    Eina_Bool showme = EINA_FALSE, changed = EINA_FALSE;
2162    Evas_Coord y = 0;
2163
2164    itb->num = in;
2165    EINA_LIST_FOREACH(itb->items, l, it)
2166      {
2167         if (it->delete_me) continue;
2168         showme |= it->showme;
2169         if (!itb->realized)
2170           {
2171              if (qadd)
2172                {
2173                   if (!it->mincalcd) changed = EINA_TRUE;
2174                   if (changed)
2175                     {
2176                        _item_realize(it, in, 1);
2177                        _item_unrealize(it);
2178                     }
2179                }
2180              else
2181                {
2182                   _item_realize(it, in, 1);
2183                   _item_unrealize(it);
2184                }
2185           }
2186         else
2187           _item_realize(it, in, 0);
2188         minh += it->minh;
2189         if (minw < it->minw) minw = it->minw;
2190         in++;
2191         it->x = 0;
2192         it->y = y;
2193         y += it->h;
2194      }
2195    itb->minw = minw;
2196    itb->minh = minh;
2197    itb->changed = EINA_FALSE;
2198    /* force an evas norender to garbage collect deleted objects */
2199    if (norender) evas_norender(evas_object_evas_get(itb->wd->obj));
2200    return showme;
2201 }
2202
2203 static void
2204 _item_block_realize(Item_Block *itb,
2205                     int         in,
2206                     int         full)
2207 {
2208    const Eina_List *l;
2209    Elm_Genlist_Item *it;
2210
2211    if (itb->realized) return;
2212    EINA_LIST_FOREACH(itb->items, l, it)
2213      {
2214         if (it->delete_me) continue;
2215         if (full) _item_realize(it, in, 0);
2216         in++;
2217      }
2218    itb->realized = EINA_TRUE;
2219    itb->want_unrealize = EINA_FALSE;
2220 }
2221
2222 static void
2223 _item_block_unrealize(Item_Block *itb)
2224 {
2225    const Eina_List *l;
2226    Elm_Genlist_Item *it;
2227    Eina_Bool dragging = EINA_FALSE;
2228
2229    if (!itb->realized) return;
2230    EINA_LIST_FOREACH(itb->items, l, it)
2231      {
2232         if (it->flags != ELM_GENLIST_ITEM_GROUP)
2233           {
2234              if (it->dragging)
2235                {
2236                   dragging = EINA_TRUE;
2237                   it->want_unrealize = EINA_TRUE;
2238                }
2239              else
2240                 _item_unrealize(it);
2241           }
2242      }
2243    if (!dragging)
2244      {
2245         itb->realized = EINA_FALSE;
2246         itb->want_unrealize = EINA_TRUE;
2247      }
2248    else
2249      itb->want_unrealize = EINA_FALSE;
2250 }
2251
2252 static int
2253 _get_space_for_reorder_item(Elm_Genlist_Item *it)
2254 {
2255    Evas_Coord rox, roy, row, roh;
2256    Eina_Bool top = EINA_FALSE;
2257    Elm_Genlist_Item *reorder_it = it->wd->reorder_it;
2258    if (!reorder_it) return 0;
2259
2260    Evas_Coord   ox,oy,oh,ow;
2261    evas_object_geometry_get(it->wd->pan_smart, &ox, &oy, &ow, &oh);
2262    evas_object_geometry_get(it->wd->reorder_it->base.view, &rox, &roy, &row, &roh);
2263
2264    if ((it->wd->reorder_start_y < it->block->y) && (roy - oy + roh/2 >= it->block->y -  it->wd->pan_y))
2265      {
2266         it->block->reorder_offset = it->wd->reorder_it->h * -1;
2267         if (it->block->count == 1)
2268            it->wd->reorder_rel = it;
2269      }
2270    else if ((it->wd->reorder_start_y >= it->block->y) && (roy - oy + roh/2  <=  it->block->y -  it->wd->pan_y))
2271      {
2272         it->block->reorder_offset = it->wd->reorder_it->h;
2273      }
2274    else 
2275      it->block->reorder_offset = 0;
2276
2277    it->scrl_y += it->block->reorder_offset;
2278    
2279    top = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
2280                                             rox, roy+roh/2, row, 1));
2281    if (top)
2282      {
2283         it->wd->reorder_rel = it;
2284         it->scrl_y+=it->wd->reorder_it->h;
2285         return it->wd->reorder_it->h;
2286      }
2287    else
2288      return 0;
2289 }
2290
2291 static Eina_Bool
2292 _reorder_item_moving_effect_timer_cb(void *data)
2293 {
2294    Elm_Genlist_Item *it = data;
2295           Eina_Bool down = EINA_FALSE;
2296    double time = 0.4, t;
2297    int y, dy = 4;
2298    t = ((0.0 > (t = current_time_get() -  it->wd->start_time)) ? 0.0 : t) / 1000;
2299   
2300    if (t <= time)
2301       y = (1 * sin((t / time) * (M_PI / 2)) * dy);
2302    else
2303       y = dy;
2304
2305    if (it->old_scrl_y < it->scrl_y)
2306      {
2307         it->old_scrl_y += y;
2308         down = EINA_TRUE;
2309      }
2310    else if (it->old_scrl_y > it->scrl_y) 
2311      {
2312         it->old_scrl_y -= y;
2313         down = EINA_FALSE;
2314          }
2315
2316    _effect_item_controls(it,  it->scrl_x, it->old_scrl_y);
2317
2318    _group_items_recalc(it->wd);
2319    if (!it->wd->reorder_it || it->wd->reorder_pan_move)
2320      {
2321         it->old_scrl_y = it->scrl_y;
2322         it->move_effect_me = EINA_FALSE;
2323         it->wd->item_moving_effect_timer = NULL;
2324         return ECORE_CALLBACK_CANCEL;
2325      }
2326    if ((down && it->old_scrl_y >= it->scrl_y) || (!down && it->old_scrl_y <= it->scrl_y))
2327      {
2328         it->old_scrl_y = it->scrl_y;
2329         it->move_effect_me = EINA_FALSE;
2330         it->wd->item_moving_effect_timer = NULL;
2331         return ECORE_CALLBACK_CANCEL;
2332      }
2333    return ECORE_CALLBACK_RENEW;
2334 }
2335
2336 static void
2337 _item_block_position(Item_Block *itb,
2338                      int         in)
2339 {
2340    const Eina_List *l;
2341    Elm_Genlist_Item *it;
2342    Elm_Genlist_Item *git;
2343    Evas_Coord y = 0, ox, oy, ow, oh, cvx, cvy, cvw, cvh;
2344    int vis = 0;
2345    int sel_all_h = 0;
2346    Elm_Genlist_Item *select_all_item = NULL;
2347
2348    evas_object_geometry_get(itb->wd->pan_smart, &ox, &oy, &ow, &oh);
2349    evas_output_viewport_get(evas_object_evas_get(itb->wd->obj), &cvx, &cvy,
2350                             &cvw, &cvh);
2351
2352    if (itb->wd->select_all_item && 
2353        (itb->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECT || itb->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECTALL)) 
2354      {
2355         if (itb->wd->select_all_check)
2356            edje_object_signal_emit(itb->wd->select_all_item->base.view, "elm,state,sel_check", "elm");
2357         else
2358            edje_object_signal_emit(itb->wd->select_all_item->base.view, "elm,state,sel_uncheck", "elm");
2359
2360         select_all_item = itb->wd->select_all_item;
2361
2362         evas_object_resize(select_all_item->base.view, itb->w, select_all_item->h);  
2363         evas_object_move(select_all_item->base.view, ox, oy);
2364         evas_object_raise(select_all_item->base.view);
2365
2366         y = select_all_item->h;
2367         sel_all_h = select_all_item->h;
2368      }
2369
2370    EINA_LIST_FOREACH(itb->items, l, it)
2371      {
2372         if (it->delete_me) continue;
2373         else if (it->wd->reorder_it && it->wd->reorder_it == it) continue;
2374
2375         it->x = 0;
2376         it->y = y;
2377         it->w = itb->w;
2378         it->scrl_x = itb->x + it->x - it->wd->pan_x + ox;
2379         it->scrl_y = itb->y + it->y - it->wd->pan_y + oy;
2380
2381         vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
2382                                    cvx, cvy, cvw, cvh));
2383         if (it->flags != ELM_GENLIST_ITEM_GROUP || (it->wd->reorder_it ))
2384           {
2385              if ((itb->realized) && (!it->realized))
2386                {
2387                   if (vis) _item_realize(it, in, 0);
2388                }
2389              if (it->realized)
2390                {
2391                   if (vis)
2392                     {
2393                        if(it->wd->reorder_mode)
2394                           y += _get_space_for_reorder_item(it);
2395                        git = it->group_item;
2396                        if (git)
2397                          {
2398                             git->scrl_x = it->scrl_x;
2399                             if (git->scrl_y < oy + sel_all_h)
2400                                git->scrl_y = oy + sel_all_h;
2401                             if ((git->scrl_y + git->h) > (it->scrl_y + it->h))
2402                                git->scrl_y = (it->scrl_y + it->h) - git->h;
2403                             git->want_realize = EINA_TRUE;
2404                          }
2405                        if (it->wd->reorder_it && !it->wd->reorder_pan_move && it->old_scrl_y && it->old_scrl_y != it->scrl_y)
2406                          {
2407                             if (!it->move_effect_me)
2408                               {
2409                                  it->move_effect_me = EINA_TRUE;
2410                                  it->item_moving_effect_timer = ecore_animator_add(_reorder_item_moving_effect_timer_cb, it);
2411                               }
2412
2413                          }
2414                        if (!it->move_effect_me )
2415                             if (!it->wd->effect_mode || it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_NONE || ((it->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE) && it->parent == it->wd->expand_item))
2416                             {
2417                               if (it->wd->edit_mode != ELM_GENLIST_EDIT_MODE_NONE)
2418                                 { 
2419                                   _effect_item_controls(it,  it->scrl_x, it->scrl_y);
2420                                 }
2421                               else
2422                                {
2423                                   evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
2424                                   evas_object_move(it->base.view, it->scrl_x+it->pad_left, it->scrl_y);
2425                                   if((!it->wd->effect_mode || it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_NONE) || ((it->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_NONE) && (it->old_scrl_y == it->scrl_y)))
2426                                      evas_object_show(it->base.view);
2427                                   else
2428                                      evas_object_hide(it->base.view);
2429                                }
2430                                it->old_scrl_x = it->scrl_x;
2431                                it->old_scrl_y = it->scrl_y;
2432                             }
2433                     }
2434                   else
2435                     {
2436                        if (!it->dragging) _item_unrealize(it);
2437                     }
2438                }
2439              in++;
2440           }
2441         else
2442           {
2443              if (vis) it->want_realize = EINA_TRUE;
2444           }
2445         y += it->h;
2446      }
2447 }
2448
2449 static void
2450 _group_items_recalc(void *data)
2451 {
2452    Widget_Data *wd = data;
2453    Eina_List *l;
2454    Elm_Genlist_Item *git;
2455
2456    EINA_LIST_FOREACH(wd->group_items, l, git)
2457      {
2458         if (git->want_realize) 
2459           {
2460              if (!git->realized)
2461                 _item_realize(git, 0, 0);
2462              evas_object_resize(git->base.view, wd->minw, git->h);
2463              evas_object_move(git->base.view, git->scrl_x, git->scrl_y);
2464              evas_object_show(git->base.view);
2465              evas_object_raise(git->base.view);
2466           }
2467         else if (!git->want_realize && git->realized)
2468           {
2469              if (!git->dragging) 
2470                 _item_unrealize(git);
2471           }
2472      }
2473 }
2474
2475 static Eina_Bool
2476 _must_recalc_idler(void *data)
2477 {
2478    Widget_Data *wd = data;
2479    if (wd->calc_job) ecore_job_del(wd->calc_job);
2480    wd->calc_job = ecore_job_add(_calc_job, wd);
2481    wd->must_recalc_idler = NULL;
2482    return ECORE_CALLBACK_CANCEL;
2483 }
2484
2485 static void
2486 _calc_job(void *data)
2487 {
2488    Widget_Data *wd = data;
2489    Item_Block *itb;
2490    Evas_Coord minw = -1, minh = 0, y = 0, ow;
2491    Item_Block *chb = NULL;
2492    int in = 0, minw_change = 0;
2493    Eina_Bool changed = EINA_FALSE;
2494    double t0, t;
2495    Eina_Bool did_must_recalc = EINA_FALSE;
2496    if (!wd) return;
2497
2498    t0 = ecore_time_get();
2499    evas_object_geometry_get(wd->pan_smart, NULL, NULL, &ow, &wd->h);
2500    if (wd->w != ow)
2501      {
2502         wd->w = ow;
2503 //        if (wd->height_for_width) changed = EINA_TRUE;
2504      }
2505
2506    EINA_INLIST_FOREACH(wd->blocks, itb)
2507    {
2508       Eina_Bool showme = EINA_FALSE;
2509
2510       itb->num = in;
2511       showme = itb->showme;
2512       itb->showme = EINA_FALSE;
2513       if (chb)
2514         {
2515            if (itb->realized) _item_block_unrealize(itb);
2516         }
2517       if ((itb->changed) || (changed) ||
2518           ((itb->must_recalc) && (!did_must_recalc)))
2519         {
2520            if ((changed) || (itb->must_recalc))
2521              {
2522                 Eina_List *l;
2523                 Elm_Genlist_Item *it;
2524                 EINA_LIST_FOREACH(itb->items, l, it)
2525                   if (it->mincalcd) it->mincalcd = EINA_FALSE;
2526                 itb->changed = EINA_TRUE;
2527                 if (itb->must_recalc) did_must_recalc = EINA_TRUE;
2528                 itb->must_recalc = EINA_FALSE;
2529              }
2530            if (itb->realized) _item_block_unrealize(itb);
2531            showme = _item_block_recalc(itb, in, 0, 1);
2532            chb = itb;
2533         }
2534       itb->y = y;
2535       itb->x = 0;
2536       minh += itb->minh;
2537       if (minw == -1) minw = itb->minw;
2538       else if ((!itb->must_recalc) && (minw < itb->minw))
2539         {
2540            minw = itb->minw;
2541            minw_change = 1;
2542         }
2543       itb->w = minw;
2544       itb->h = itb->minh;
2545       y += itb->h;
2546       in += itb->count;
2547       if ((showme) && (wd->show_item) && (!wd->show_item->queued))
2548         {
2549            wd->show_item->showme = EINA_FALSE;
2550            if (wd->bring_in)
2551              elm_smart_scroller_region_bring_in(wd->scr,
2552                                                 wd->show_item->x +
2553                                                 wd->show_item->block->x,
2554                                                 wd->show_item->y +
2555                                                 wd->show_item->block->y,
2556                                                 wd->show_item->block->w,
2557                                                 wd->show_item->h);
2558            else
2559              elm_smart_scroller_child_region_show(wd->scr,
2560                                                   wd->show_item->x +
2561                                                   wd->show_item->block->x,
2562                                                   wd->show_item->y +
2563                                                   wd->show_item->block->y,
2564                                                   wd->show_item->block->w,
2565                                                   wd->show_item->h);
2566            wd->show_item = NULL;
2567         }
2568    }
2569    if (minw_change)
2570      {
2571         EINA_INLIST_FOREACH(wd->blocks, itb)
2572         {
2573            itb->minw = minw;
2574            itb->w = itb->minw;
2575         }
2576      }
2577    if ((chb) && (EINA_INLIST_GET(chb)->next))
2578      {
2579         EINA_INLIST_FOREACH(EINA_INLIST_GET(chb)->next, itb)
2580         {
2581            if (itb->realized) _item_block_unrealize(itb);
2582         }
2583      }
2584    wd->realminw = minw;
2585    if (minw < wd->w) minw = wd->w;
2586    if ((minw != wd->minw) || (minh != wd->minh) || (wd->select_all_item))
2587      {
2588         wd->minw = minw;
2589         wd->minh = minh;
2590         if (wd->select_all_item)
2591            wd->minh += wd->select_all_item->h;        
2592         if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
2593            evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
2594         _sizing_eval(wd->obj);
2595 #ifdef ANCHOR_ITEM
2596         if ((wd->anchor_item) && (wd->anchor_item->block) && (!wd->auto_scrolled))
2597           {
2598              Elm_Genlist_Item *it;
2599              Evas_Coord it_y;
2600
2601              it = wd->anchor_item;
2602              it_y = wd->anchor_y;
2603              elm_smart_scroller_child_pos_set(wd->scr, wd->pan_x,
2604                                               it->block->y + it->y + it_y);
2605              wd->anchor_item = it;
2606              wd->anchor_y = it_y;
2607           }
2608 #endif
2609      }
2610    t = ecore_time_get();
2611    if (did_must_recalc)
2612      {
2613         if (!wd->must_recalc_idler)
2614           wd->must_recalc_idler = ecore_idler_add(_must_recalc_idler, wd);
2615      }
2616    wd->calc_job = NULL;
2617    evas_object_smart_changed(wd->pan_smart);
2618 }
2619
2620 static void
2621 _update_job(void *data)
2622 {
2623    Widget_Data *wd = data;
2624    Eina_List *l2;
2625    Item_Block *itb;
2626    int num, num0, position = 0, recalc = 0;
2627    if (!wd) return;
2628    wd->update_job = NULL;
2629    num = 0;
2630    EINA_INLIST_FOREACH(wd->blocks, itb)
2631    {
2632       Evas_Coord itminw, itminh;
2633       Elm_Genlist_Item *it;
2634
2635       if (!itb->updateme)
2636         {
2637            num += itb->count;
2638            if (position)
2639              _item_block_position(itb, num);
2640            continue;
2641         }
2642       num0 = num;
2643       recalc = 0;
2644       EINA_LIST_FOREACH(itb->items, l2, it)
2645         {
2646            if (it->updateme)
2647              {
2648                 itminw = it->w;
2649                 itminh = it->h;
2650
2651                 it->updateme = EINA_FALSE;
2652                 if (it->realized)
2653                   {
2654                      _item_unrealize(it);
2655                      _item_realize(it, num, 0);
2656                      position = 1;
2657                   }
2658                 else
2659                   {
2660                      _item_realize(it, num, 1);
2661                      _item_unrealize(it);
2662                   }
2663                 if ((it->minw != itminw) || (it->minh != itminh))
2664                   recalc = 1;
2665              }
2666            num++;
2667         }
2668       itb->updateme = EINA_FALSE;
2669       if (recalc)
2670         {
2671            position = 1;
2672            itb->changed = EINA_TRUE;
2673            _item_block_recalc(itb, num0, 0, 1);
2674            _item_block_position(itb, num0);
2675         }
2676    }
2677    if (position)
2678      {
2679         if (wd->calc_job) ecore_job_del(wd->calc_job);
2680         wd->calc_job = ecore_job_add(_calc_job, wd);
2681      }
2682 }
2683
2684 static void
2685 _pan_set(Evas_Object *obj,
2686          Evas_Coord   x,
2687          Evas_Coord   y)
2688 {
2689    Pan *sd = evas_object_smart_data_get(obj);
2690    //Item_Block *itb;
2691
2692 //   Evas_Coord ow, oh;
2693 //   evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2694 //   ow = sd->wd->minw - ow;
2695 //   if (ow < 0) ow = 0;
2696 //   oh = sd->wd->minh - oh;
2697 //   if (oh < 0) oh = 0;
2698 //   if (x < 0) x = 0;
2699 //   if (y < 0) y = 0;
2700 //   if (x > ow) x = ow;
2701 //   if (y > oh) y = oh;
2702    if ((x == sd->wd->pan_x) && (y == sd->wd->pan_y)) return;
2703    sd->wd->pan_x = x;
2704    sd->wd->pan_y = y;
2705
2706 #ifdef ANCHOR_ITEM
2707    EINA_INLIST_FOREACH(sd->wd->blocks, itb)
2708    {
2709       if ((itb->y + itb->h) > y)
2710         {
2711            Elm_Genlist_Item *it;
2712            Eina_List *l2;
2713
2714            EINA_LIST_FOREACH(itb->items, l2, it)
2715              {
2716                 if ((itb->y + it->y) >= y)
2717                   {
2718                      sd->wd->anchor_item = it;
2719                      sd->wd->anchor_y = -(itb->y + it->y - y);
2720                      goto done;
2721                   }
2722              }
2723         }
2724    }
2725 done:
2726 #endif      
2727    if(!sd->wd->item_moving_effect_timer) evas_object_smart_changed(obj);
2728 }
2729
2730 static void
2731 _pan_get(Evas_Object *obj,
2732          Evas_Coord  *x,
2733          Evas_Coord  *y)
2734 {
2735    Pan *sd = evas_object_smart_data_get(obj);
2736
2737    if (x) *x = sd->wd->pan_x;
2738    if (y) *y = sd->wd->pan_y;
2739 }
2740
2741 static void
2742 _pan_max_get(Evas_Object *obj,
2743              Evas_Coord  *x,
2744              Evas_Coord  *y)
2745 {
2746    Pan *sd = evas_object_smart_data_get(obj);
2747    Evas_Coord ow, oh;
2748
2749    evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2750    ow = sd->wd->minw - ow;
2751    if (ow < 0) ow = 0;
2752    oh = sd->wd->minh - oh;
2753    if (oh < 0) oh = 0;
2754    if (x) *x = ow;
2755    if (y) *y = oh;
2756 }
2757
2758 static void
2759 _pan_min_get(Evas_Object *obj __UNUSED__,
2760              Evas_Coord      *x,
2761              Evas_Coord      *y)
2762 {
2763    if (x) *x = 0;
2764    if (y) *y = 0;
2765 }
2766
2767 static void
2768 _pan_child_size_get(Evas_Object *obj,
2769                     Evas_Coord  *w,
2770                     Evas_Coord  *h)
2771 {
2772    Pan *sd = evas_object_smart_data_get(obj);
2773
2774    if (w) *w = sd->wd->minw;
2775    if (h) *h = sd->wd->minh;
2776 }
2777
2778 static void
2779 _pan_add(Evas_Object *obj)
2780 {
2781    Pan *sd;
2782    Evas_Object_Smart_Clipped_Data *cd;
2783
2784    _pan_sc.add(obj);
2785    cd = evas_object_smart_data_get(obj);
2786    sd = ELM_NEW(Pan);
2787    if (!sd) return;
2788    sd->__clipped_data = *cd;
2789    free(cd);
2790    evas_object_smart_data_set(obj, sd);
2791 }
2792
2793 static void
2794 _pan_del(Evas_Object *obj)
2795 {
2796    Pan *sd = evas_object_smart_data_get(obj);
2797
2798    if (!sd) return;
2799    if (sd->resize_job)
2800      {
2801         ecore_job_del(sd->resize_job);
2802         sd->resize_job = NULL;
2803      }
2804    _pan_sc.del(obj);
2805 }
2806
2807 static void
2808 _pan_resize_job(void *data)
2809 {
2810    Pan *sd = data;
2811    _sizing_eval(sd->wd->obj);
2812    sd->resize_job = NULL;
2813 }
2814
2815 static void
2816 _pan_resize(Evas_Object *obj,
2817             Evas_Coord   w,
2818             Evas_Coord   h)
2819 {
2820    Pan *sd = evas_object_smart_data_get(obj);
2821    Evas_Coord ow, oh;
2822
2823    evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2824    if ((ow == w) && (oh == h)) return;
2825    if ((sd->wd->height_for_width) && (ow != w))
2826      {
2827         if (sd->resize_job) ecore_job_del(sd->resize_job);
2828         sd->resize_job = ecore_job_add(_pan_resize_job, sd);
2829      }
2830    if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
2831    sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
2832 }
2833
2834 static void
2835 _pan_calculate(Evas_Object *obj)
2836 {
2837    Pan *sd = evas_object_smart_data_get(obj);
2838    Item_Block *itb;
2839    Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
2840    static Evas_Coord old_pan_y = 0;
2841    int in = 0;
2842    Elm_Genlist_Item *git;
2843    Eina_List *l;
2844
2845    evas_object_geometry_get(obj, &ox, &oy, &ow, &oh);
2846    evas_output_viewport_get(evas_object_evas_get(obj), &cvx, &cvy, &cvw, &cvh);
2847    EINA_LIST_FOREACH(sd->wd->group_items, l, git)
2848      {
2849         git->want_realize = EINA_FALSE;
2850      }
2851    EINA_INLIST_FOREACH(sd->wd->blocks, itb)
2852    {
2853       itb->w = sd->wd->minw;
2854       if (ELM_RECTS_INTERSECT(itb->x - sd->wd->pan_x + ox,
2855                               itb->y - sd->wd->pan_y + oy,
2856                               itb->w, itb->h,
2857                               cvx, cvy, cvw, cvh))
2858         {
2859            if ((!itb->realized) || (itb->changed))
2860              _item_block_realize(itb, in, 0);
2861            _item_block_position(itb, in);
2862         }
2863       else
2864         {
2865            if (itb->realized) _item_block_unrealize(itb);
2866         }
2867       in += itb->count;
2868    }
2869    if (!sd->wd->reorder_it || sd->wd->reorder_pan_move)
2870       _group_items_recalc(sd->wd);
2871
2872    if (sd->wd->reorder_mode && sd->wd->reorder_it)
2873      {
2874         if (sd->wd->pan_y != old_pan_y) sd->wd->reorder_pan_move = EINA_TRUE;
2875         else sd->wd->reorder_pan_move = EINA_FALSE;
2876         evas_object_raise(sd->wd->reorder_it->edit_obj);
2877         old_pan_y = sd->wd->pan_y;
2878      }
2879
2880       if (sd->wd->effect_mode && 
2881           ((sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND) ||
2882            (sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT) ||
2883            (sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)))
2884         {
2885            if (!sd->wd->item_moving_effect_timer)
2886              {
2887                 if (sd->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
2888                    _item_flip_effect_show(sd->wd->expand_item);
2889
2890                 evas_object_raise(sd->wd->alpha_bg);
2891                 evas_object_show(sd->wd->alpha_bg);
2892                 elm_smart_scroller_bounce_animator_disabled_set(sd->wd->scr, EINA_TRUE);
2893                 sd->wd->start_time = current_time_get();
2894                 sd->wd->item_moving_effect_timer = ecore_animator_add(_item_moving_effect_timer_cb, sd->wd);
2895              }
2896         }
2897       else _item_auto_scroll(sd->wd);
2898    if (sd->wd->select_all_item) evas_object_raise(sd->wd->select_all_item->base.view);         
2899  }
2900
2901 static void
2902 _pan_move(Evas_Object *obj,
2903           Evas_Coord x __UNUSED__,
2904           Evas_Coord y __UNUSED__)
2905 {
2906    Pan *sd = evas_object_smart_data_get(obj);
2907
2908    if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
2909    sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
2910 }
2911
2912 static void
2913 _hold_on(void *data       __UNUSED__,
2914          Evas_Object     *obj,
2915          void *event_info __UNUSED__)
2916 {
2917    Widget_Data *wd = elm_widget_data_get(obj);
2918    if (!wd) return;
2919    elm_smart_scroller_hold_set(wd->scr, 1);
2920 }
2921
2922 static void
2923 _hold_off(void *data       __UNUSED__,
2924           Evas_Object     *obj,
2925           void *event_info __UNUSED__)
2926 {
2927    Widget_Data *wd = elm_widget_data_get(obj);
2928    if (!wd) return;
2929    elm_smart_scroller_hold_set(wd->scr, 0);
2930 }
2931
2932 static void
2933 _freeze_on(void *data       __UNUSED__,
2934            Evas_Object     *obj,
2935            void *event_info __UNUSED__)
2936 {
2937    Widget_Data *wd = elm_widget_data_get(obj);
2938    if (!wd) return;
2939    elm_smart_scroller_freeze_set(wd->scr, 1);
2940 }
2941
2942 static void
2943 _freeze_off(void *data       __UNUSED__,
2944             Evas_Object     *obj,
2945             void *event_info __UNUSED__)
2946 {
2947    Widget_Data *wd = elm_widget_data_get(obj);
2948    if (!wd) return;
2949    elm_smart_scroller_freeze_set(wd->scr, 0);
2950 }
2951
2952 static void
2953 _scroll_edge_left(void            *data,
2954                   Evas_Object *scr __UNUSED__,
2955                   void *event_info __UNUSED__)
2956 {
2957    Evas_Object *obj = data;
2958    evas_object_smart_callback_call(obj, "scroll,edge,left", NULL);
2959 }
2960
2961 static void
2962 _scroll_edge_right(void            *data,
2963                    Evas_Object *scr __UNUSED__,
2964                    void *event_info __UNUSED__)
2965 {
2966    Evas_Object *obj = data;
2967    evas_object_smart_callback_call(obj, "scroll,edge,right", NULL);
2968 }
2969
2970 static void
2971 _scroll_edge_top(void            *data,
2972                  Evas_Object *scr __UNUSED__,
2973                  void *event_info __UNUSED__)
2974 {
2975    Evas_Object *obj = data;
2976    evas_object_smart_callback_call(obj, "scroll,edge,top", NULL);
2977 }
2978
2979 static void
2980 _scroll_edge_bottom(void            *data,
2981                     Evas_Object *scr __UNUSED__,
2982                     void *event_info __UNUSED__)
2983 {
2984    Evas_Object *obj = data;
2985    evas_object_smart_callback_call(obj, "scroll,edge,bottom", NULL);
2986 }
2987
2988 /**
2989  * Add a new Genlist object
2990  *
2991  * @param parent The parent object
2992  * @return The new object or NULL if it cannot be created
2993  *
2994  * @ingroup Genlist
2995  */
2996 EAPI Evas_Object *
2997 elm_genlist_add(Evas_Object *parent)
2998 {
2999    Evas_Object *obj;
3000    Evas *e;
3001    Widget_Data *wd;
3002    Evas_Coord minw, minh;
3003    static Evas_Smart *smart = NULL;
3004
3005    EINA_SAFETY_ON_NULL_RETURN_VAL(parent, NULL);
3006
3007    if (!smart)
3008      {
3009         static Evas_Smart_Class sc;
3010
3011         evas_object_smart_clipped_smart_set(&_pan_sc);
3012         sc = _pan_sc;
3013         sc.name = "elm_genlist_pan";
3014         sc.version = EVAS_SMART_CLASS_VERSION;
3015         sc.add = _pan_add;
3016         sc.del = _pan_del;
3017         sc.resize = _pan_resize;
3018         sc.move = _pan_move;
3019         sc.calculate = _pan_calculate;
3020         if (!(smart = evas_smart_class_new(&sc))) return NULL;
3021      }
3022    wd = ELM_NEW(Widget_Data);
3023    e = evas_object_evas_get(parent);
3024    if (!e) return NULL;
3025    obj = elm_widget_add(e);
3026    ELM_SET_WIDTYPE(widtype, "genlist");
3027    elm_widget_type_set(obj, "genlist");
3028    elm_widget_sub_object_add(parent, obj);
3029    elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
3030    elm_widget_data_set(obj, wd);
3031    elm_widget_del_hook_set(obj, _del_hook);
3032    elm_widget_del_pre_hook_set(obj, _del_pre_hook);
3033    elm_widget_theme_hook_set(obj, _theme_hook);
3034    elm_widget_can_focus_set(obj, EINA_TRUE);
3035    elm_widget_event_hook_set(obj, _event_hook);
3036    elm_widget_on_show_region_hook_set(obj, _show_region_hook, obj);
3037
3038    wd->scr = elm_smart_scroller_add(e);
3039    elm_smart_scroller_widget_set(wd->scr, obj);
3040    elm_smart_scroller_object_theme_set(obj, wd->scr, "genlist", "base",
3041                                        elm_widget_style_get(obj));
3042    elm_smart_scroller_bounce_allow_set(wd->scr, EINA_FALSE,
3043                                        _elm_config->thumbscroll_bounce_enable);
3044    elm_widget_resize_object_set(obj, wd->scr);
3045
3046    evas_object_smart_callback_add(wd->scr, "edge,left", _scroll_edge_left, obj);
3047    evas_object_smart_callback_add(wd->scr, "edge,right", _scroll_edge_right,
3048                                   obj);
3049    evas_object_smart_callback_add(wd->scr, "edge,top", _scroll_edge_top, obj);
3050    evas_object_smart_callback_add(wd->scr, "edge,bottom", _scroll_edge_bottom,
3051                                   obj);
3052
3053    wd->obj = obj;
3054    wd->mode = ELM_LIST_SCROLL;
3055    wd->max_items_per_block = MAX_ITEMS_PER_BLOCK;
3056    wd->item_cache_max = wd->max_items_per_block * 2;
3057    wd->longpress_timeout = _elm_config->longpress_timeout;
3058    //wd->effect_mode = _elm_config->effect_enable;
3059 //   wd->effect_mode = EINA_TRUE;
3060
3061    evas_object_smart_callback_add(obj, "scroll-hold-on", _hold_on, obj);
3062    evas_object_smart_callback_add(obj, "scroll-hold-off", _hold_off, obj);
3063    evas_object_smart_callback_add(obj, "scroll-freeze-on", _freeze_on, obj);
3064    evas_object_smart_callback_add(obj, "scroll-freeze-off", _freeze_off, obj);
3065
3066    wd->pan_smart = evas_object_smart_add(e, smart);
3067    wd->pan = evas_object_smart_data_get(wd->pan_smart);
3068    wd->pan->wd = wd;
3069
3070    elm_smart_scroller_extern_pan_set(wd->scr, wd->pan_smart,
3071                                      _pan_set, _pan_get, _pan_max_get,
3072                                      _pan_min_get, _pan_child_size_get);
3073
3074    edje_object_size_min_calc(elm_smart_scroller_edje_object_get(wd->scr),
3075                              &minw, &minh);
3076    evas_object_size_hint_min_set(obj, minw, minh);
3077
3078    _sizing_eval(obj);
3079    return obj;
3080 }
3081
3082 static Elm_Genlist_Item *
3083 _item_new(Widget_Data                  *wd,
3084           const Elm_Genlist_Item_Class *itc,
3085           const void                   *data,
3086           Elm_Genlist_Item             *parent,
3087           Elm_Genlist_Item_Flags        flags,
3088           Evas_Smart_Cb                 func,
3089           const void                   *func_data)
3090 {
3091    Elm_Genlist_Item *it;
3092
3093    it = elm_widget_item_new(wd->obj, Elm_Genlist_Item);
3094    if (!it) return NULL;
3095    it->wd = wd;
3096    it->itc = itc;
3097    it->base.data = data;
3098    it->parent = parent;
3099    it->flags = flags;
3100    it->func.func = func;
3101    it->func.data = func_data;
3102    it->mouse_cursor = NULL;
3103    it->expanded_depth = 0;
3104    if ((it->parent) && (it->parent->edit_select_check)) it->edit_select_check = EINA_TRUE;   
3105    if ((!it->parent) && (it->wd->select_all_item))
3106          _select_all_down_process(it->wd->select_all_item, EINA_FALSE, EINA_FALSE); 
3107    it->num = ++wd->total_num;   // todo : remov
3108    return it;
3109 }
3110
3111 static void
3112 _item_block_add(Widget_Data      *wd,
3113                 Elm_Genlist_Item *it)
3114 {
3115    Item_Block *itb = NULL;
3116
3117    if (!it->rel)
3118      {
3119 newblock:
3120         if (it->rel)
3121           {
3122              itb = calloc(1, sizeof(Item_Block));
3123              if (!itb) return;
3124              itb->wd = wd;
3125              if (!it->rel->block)
3126                {
3127                   wd->blocks =
3128                     eina_inlist_append(wd->blocks, EINA_INLIST_GET(itb));
3129                   itb->items = eina_list_append(itb->items, it);
3130                }
3131              else
3132                {
3133                   if (it->before)
3134                     {
3135                        wd->blocks = eina_inlist_prepend_relative
3136                            (wd->blocks, EINA_INLIST_GET(itb),
3137                            EINA_INLIST_GET(it->rel->block));
3138                        itb->items =
3139                          eina_list_prepend_relative(itb->items, it, it->rel);
3140                     }
3141                   else
3142                     {
3143                        wd->blocks = eina_inlist_append_relative
3144                            (wd->blocks, EINA_INLIST_GET(itb),
3145                            EINA_INLIST_GET(it->rel->block));
3146                        itb->items =
3147                          eina_list_append_relative(itb->items, it, it->rel);
3148                     }
3149                }
3150           }
3151         else
3152           {
3153              if (it->before)
3154                {
3155                   if (wd->blocks)
3156                     {
3157                        itb = (Item_Block *)(wd->blocks);
3158                        if (itb->count >= wd->max_items_per_block)
3159                          {
3160                             itb = calloc(1, sizeof(Item_Block));
3161                             if (!itb) return;
3162                             itb->wd = wd;
3163                             wd->blocks =
3164                               eina_inlist_prepend(wd->blocks,
3165                                                   EINA_INLIST_GET(itb));
3166                          }
3167                     }
3168                   else
3169                     {
3170                        itb = calloc(1, sizeof(Item_Block));
3171                        if (!itb) return;
3172                        itb->wd = wd;
3173                        wd->blocks =
3174                          eina_inlist_prepend(wd->blocks, EINA_INLIST_GET(itb));
3175                     }
3176                   itb->items = eina_list_prepend(itb->items, it);
3177                }
3178              else
3179                {
3180                   if (wd->blocks)
3181                     {
3182                        itb = (Item_Block *)(wd->blocks->last);
3183                        if (itb->count >= wd->max_items_per_block)
3184                          {
3185                             itb = calloc(1, sizeof(Item_Block));
3186                             if (!itb) return;
3187                             itb->wd = wd;
3188                             wd->blocks =
3189                               eina_inlist_append(wd->blocks,
3190                                                  EINA_INLIST_GET(itb));
3191                          }
3192                     }
3193                   else
3194                     {
3195                        itb = calloc(1, sizeof(Item_Block));
3196                        if (!itb) return;
3197                        itb->wd = wd;
3198                        wd->blocks =
3199                          eina_inlist_append(wd->blocks, EINA_INLIST_GET(itb));
3200                     }
3201                   itb->items = eina_list_append(itb->items, it);
3202                }
3203           }
3204      }
3205    else
3206      {
3207         itb = it->rel->block;
3208         if (!itb) goto newblock;
3209         if (it->before)
3210           itb->items = eina_list_prepend_relative(itb->items, it, it->rel);
3211         else
3212           itb->items = eina_list_append_relative(itb->items, it, it->rel);
3213      }
3214    itb->count++;
3215    itb->changed = EINA_TRUE;
3216    it->block = itb;
3217    if (itb->wd->calc_job) ecore_job_del(itb->wd->calc_job);
3218    itb->wd->calc_job = ecore_job_add(_calc_job, itb->wd);
3219    if (it->rel)
3220      {
3221         it->rel->relcount--;
3222         if ((it->rel->delete_me) && (!it->rel->relcount))
3223           _item_del(it->rel);
3224         it->rel = NULL;
3225      }
3226    if (itb->count > itb->wd->max_items_per_block)
3227      {
3228         int newc;
3229         Item_Block *itb2;
3230         Elm_Genlist_Item *it2;
3231
3232         newc = itb->count / 2;
3233         itb2 = calloc(1, sizeof(Item_Block));
3234         if (!itb2) return;
3235         itb2->wd = wd;
3236         wd->blocks =
3237           eina_inlist_append_relative(wd->blocks, EINA_INLIST_GET(itb2),
3238                                       EINA_INLIST_GET(itb));
3239         itb2->changed = EINA_TRUE;
3240         while ((itb->count > newc) && (itb->items))
3241           {
3242              Eina_List *l;
3243
3244              l = eina_list_last(itb->items);
3245              it2 = l->data;
3246              itb->items = eina_list_remove_list(itb->items, l);
3247              itb->count--;
3248
3249              itb2->items = eina_list_prepend(itb2->items, it2);
3250              it2->block = itb2;
3251              itb2->count++;
3252           }
3253      }
3254 }
3255
3256 static int
3257 _queue_proecess(Widget_Data *wd,
3258                 int          norender)
3259 {
3260    int n;
3261    Eina_Bool showme = EINA_FALSE;
3262    double t0, t;
3263
3264    t0 = ecore_time_get();
3265    for (n = 0; (wd->queue) && (n < 128); n++)
3266      {
3267         Elm_Genlist_Item *it;
3268
3269         it = wd->queue->data;
3270         wd->queue = eina_list_remove_list(wd->queue, wd->queue);
3271         it->queued = EINA_FALSE;
3272         _item_block_add(wd, it);
3273         t = ecore_time_get();
3274         if (it->block->changed)
3275           {
3276              showme = _item_block_recalc(it->block, it->block->num, 1,
3277                                          norender);
3278              it->block->changed = 0;
3279           }
3280         if (showme) it->block->showme = EINA_TRUE;
3281         if (eina_inlist_count(wd->blocks) > 1)
3282           {
3283              if ((t - t0) > (ecore_animator_frametime_get())) break;
3284           }
3285      }
3286    return n;
3287 }
3288
3289 static Eina_Bool
3290 _item_idler(void *data)
3291 {
3292    Widget_Data *wd = data;
3293
3294    //xxx
3295    //static double q_start = 0.0;
3296    //if (q_start == 0.0) q_start = ecore_time_get();
3297    //xxx
3298
3299    if (_queue_proecess(wd, 1) > 0)
3300      {
3301         if (wd->calc_job) ecore_job_del(wd->calc_job);
3302         wd->calc_job = ecore_job_add(_calc_job, wd);
3303      }
3304    if (!wd->queue)
3305      {
3306         //xxx
3307         //printf("PROCESS TIME: %3.3f\n", ecore_time_get() - q_start);
3308         //xxx
3309         wd->queue_idler = NULL;
3310         return ECORE_CALLBACK_CANCEL;
3311      }
3312    return ECORE_CALLBACK_RENEW;
3313 }
3314
3315 static void
3316 _item_queue(Widget_Data      *wd,
3317             Elm_Genlist_Item *it)
3318 {
3319    if (it->queued) return;
3320    it->queued = EINA_TRUE;
3321    wd->queue = eina_list_append(wd->queue, it);
3322    while ((wd->queue) && ((!wd->blocks) || (!wd->blocks->next)))
3323      {
3324         if (wd->queue_idler)
3325           {
3326              ecore_idler_del(wd->queue_idler);
3327              wd->queue_idler = NULL;
3328           }
3329         _queue_proecess(wd, 0);
3330      }
3331    if (!wd->queue_idler) wd->queue_idler = ecore_idler_add(_item_idler, wd);
3332 }
3333
3334 /**
3335  * Append item to the end of the genlist
3336  *
3337  * This appends the given item to the end of the list or the end of
3338  * the children if the parent is given.
3339  *
3340  * @param obj The genlist object
3341  * @param itc The item class for the item
3342  * @param data The item data
3343  * @param parent The parent item, or NULL if none
3344  * @param flags Item flags
3345  * @param func Convenience function called when item selected
3346  * @param func_data Data passed to @p func above.
3347  * @return A handle to the item added or NULL if not possible
3348  *
3349  * @ingroup Genlist
3350  */
3351 EAPI Elm_Genlist_Item *
3352 elm_genlist_item_append(Evas_Object                  *obj,
3353                         const Elm_Genlist_Item_Class *itc,
3354                         const void                   *data,
3355                         Elm_Genlist_Item             *parent,
3356                         Elm_Genlist_Item_Flags        flags,
3357                         Evas_Smart_Cb                 func,
3358                         const void                   *func_data)
3359 {
3360    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3361    Widget_Data *wd = elm_widget_data_get(obj);
3362    Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3363                                     func_data);
3364    if (!wd) return NULL;
3365    if (!it) return NULL;
3366    if (!it->parent)
3367      {
3368         if (flags & ELM_GENLIST_ITEM_GROUP)
3369            wd->group_items = eina_list_append(wd->group_items, it);
3370         wd->items = eina_inlist_append(wd->items, EINA_INLIST_GET(it));
3371         it->rel = NULL;
3372      }
3373    else
3374      {
3375         Elm_Genlist_Item *it2 = NULL;
3376         Eina_List *ll = eina_list_last(it->parent->items);
3377         if (ll) it2 = ll->data;
3378         it->parent->items = eina_list_append(it->parent->items, it);
3379         if (!it2) it2 = it->parent;
3380         wd->items =
3381           eina_inlist_append_relative(wd->items, EINA_INLIST_GET(it),
3382                                       EINA_INLIST_GET(it2));
3383         it->rel = it2;
3384         it->rel->relcount++;
3385
3386         if (it->parent->flags & ELM_GENLIST_ITEM_GROUP) 
3387            it->group_item = parent;
3388         else if (it->parent->group_item)
3389            it->group_item = it->parent->group_item;
3390      }
3391    it->before = EINA_FALSE;
3392    _item_queue(wd, it);
3393    return it;
3394 }
3395
3396 /**
3397  * Prepend item at start of the genlist
3398  *
3399  * This adds an item to the beginning of the list or beginning of the
3400  * children of the parent if given.
3401  *
3402  * @param obj The genlist object
3403  * @param itc The item class for the item
3404  * @param data The item data
3405  * @param parent The parent item, or NULL if none
3406  * @param flags Item flags
3407  * @param func Convenience function called when item selected
3408  * @param func_data Data passed to @p func above.
3409  * @return A handle to the item added or NULL if not possible
3410  *
3411  * @ingroup Genlist
3412  */
3413 EAPI Elm_Genlist_Item *
3414 elm_genlist_item_prepend(Evas_Object                  *obj,
3415                          const Elm_Genlist_Item_Class *itc,
3416                          const void                   *data,
3417                          Elm_Genlist_Item             *parent,
3418                          Elm_Genlist_Item_Flags        flags,
3419                          Evas_Smart_Cb                 func,
3420                          const void                   *func_data)
3421 {
3422    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3423    Widget_Data *wd = elm_widget_data_get(obj);
3424    Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3425                                     func_data);
3426    if (!wd) return NULL;
3427    if (!it) return NULL;
3428    if (!it->parent)
3429      {
3430         if (flags & ELM_GENLIST_ITEM_GROUP)
3431            wd->group_items = eina_list_prepend(wd->group_items, it);
3432         wd->items = eina_inlist_prepend(wd->items, EINA_INLIST_GET(it));
3433         it->rel = NULL;
3434      }
3435    else
3436      {
3437         Elm_Genlist_Item *it2 = NULL;
3438         Eina_List *ll = it->parent->items;
3439         if (ll) it2 = ll->data;
3440         it->parent->items = eina_list_prepend(it->parent->items, it);
3441         if (!it2) it2 = it->parent;
3442         wd->items =
3443            eina_inlist_prepend_relative(wd->items, EINA_INLIST_GET(it),
3444                                         EINA_INLIST_GET(it2));
3445         it->rel = it2;
3446         it->rel->relcount++;
3447      }
3448    it->before = EINA_TRUE;
3449    _item_queue(wd, it);
3450    return it;
3451 }
3452
3453 /**
3454  * Insert item before another in the genlist
3455  *
3456  * This inserts an item before another in the list. It will be in the
3457  * same tree level or group as the item it is inseted before.
3458  *
3459  * @param obj The genlist object
3460  * @param itc The item class for the item
3461  * @param data The item data
3462  * @param before The item to insert before
3463  * @param flags Item flags
3464  * @param func Convenience function called when item selected
3465  * @param func_data Data passed to @p func above.
3466  * @return A handle to the item added or NULL if not possible
3467  *
3468  * @ingroup Genlist
3469  */
3470 EAPI Elm_Genlist_Item *
3471 elm_genlist_item_insert_before(Evas_Object                  *obj,
3472                                const Elm_Genlist_Item_Class *itc,
3473                                const void                   *data,
3474                                Elm_Genlist_Item             *parent,
3475                                Elm_Genlist_Item             *before,
3476                                Elm_Genlist_Item_Flags        flags,
3477                                Evas_Smart_Cb                 func,
3478                                const void                   *func_data)
3479 {
3480    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3481    EINA_SAFETY_ON_NULL_RETURN_VAL(before, NULL);
3482    Widget_Data *wd = elm_widget_data_get(obj);
3483    Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3484                                     func_data);
3485    if (!wd) return NULL;
3486    if (!it) return NULL;
3487    if (it->parent)
3488      {
3489         it->parent->items = eina_list_prepend_relative(it->parent->items, it,
3490                                                        before);
3491      }
3492    wd->items = eina_inlist_prepend_relative(wd->items, EINA_INLIST_GET(it),
3493                                             EINA_INLIST_GET(before));
3494    it->rel = before;
3495    it->rel->relcount++;
3496    it->before = EINA_TRUE;
3497    _item_queue(wd, it);
3498    return it;
3499 }
3500
3501 /**
3502  * Insert an item after another in the genlst
3503  *
3504  * This inserts an item after another in the list. It will be in the
3505  * same tree level or group as the item it is inseted after.
3506  *
3507  * @param obj The genlist object
3508  * @param itc The item class for the item
3509  * @param data The item data
3510  * @param after The item to insert after
3511  * @param flags Item flags
3512  * @param func Convenience function called when item selected
3513  * @param func_data Data passed to @p func above.
3514  * @return A handle to the item added or NULL if not possible
3515  *
3516  * @ingroup Genlist
3517  */
3518 EAPI Elm_Genlist_Item *
3519 elm_genlist_item_insert_after(Evas_Object                  *obj,
3520                               const Elm_Genlist_Item_Class *itc,
3521                               const void                   *data,
3522                               Elm_Genlist_Item             *parent,
3523                               Elm_Genlist_Item             *after,
3524                               Elm_Genlist_Item_Flags        flags,
3525                               Evas_Smart_Cb                 func,
3526                               const void                   *func_data)
3527 {
3528    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3529    EINA_SAFETY_ON_NULL_RETURN_VAL(after, NULL);
3530    Widget_Data *wd = elm_widget_data_get(obj);
3531    Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3532                                     func_data);
3533    if (!wd) return NULL;
3534    if (!it) return NULL;
3535    wd->items = eina_inlist_append_relative(wd->items, EINA_INLIST_GET(it),
3536                                            EINA_INLIST_GET(after));
3537    if (it->parent)
3538      {
3539         it->parent->items = eina_list_append_relative(it->parent->items, it,
3540                                                       after);
3541      }
3542    it->rel = after;
3543    it->rel->relcount++;
3544    it->before = EINA_FALSE;
3545    _item_queue(wd, it);
3546    return it;
3547 }
3548
3549 /**
3550  * Clear the genlist
3551  *
3552  * This clears all items in the list, leaving it empty.
3553  *
3554  * @param obj The genlist object
3555  *
3556  * @ingroup Genlist
3557  */
3558 EAPI void
3559 elm_genlist_clear(Evas_Object *obj)
3560 {
3561    ELM_CHECK_WIDTYPE(obj, widtype);
3562    Widget_Data *wd = elm_widget_data_get(obj);
3563    if (!wd) return;
3564    if (wd->walking > 0)
3565      {
3566         Elm_Genlist_Item *it;
3567
3568         wd->clear_me = EINA_TRUE;
3569         EINA_INLIST_FOREACH(wd->items, it)
3570         {
3571            it->delete_me = EINA_TRUE;
3572         }
3573         return;
3574      }
3575    wd->clear_me = EINA_FALSE;
3576    while (wd->items)
3577      {
3578         Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
3579         it->nocache = EINA_TRUE;
3580         it->hilighted = EINA_FALSE;
3581 #ifdef ANCHOR_ITEM        
3582         if (wd->anchor_item == it)
3583           {
3584              wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3585              if (!wd->anchor_item)
3586                wd->anchor_item =
3587                  ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3588           }
3589 #endif        
3590         wd->items = eina_inlist_remove(wd->items, wd->items);
3591         if (it->flags & ELM_GENLIST_ITEM_GROUP)
3592           it->wd->group_items = eina_list_remove(it->wd->group_items, it);
3593         elm_widget_item_pre_notify_del(it);
3594         if (it->effect_item_realized) _effect_item_unrealize(it);        
3595         if (it->realized) _item_unrealize(it);
3596         if (it->itc->func.del)
3597            it->itc->func.del((void *)it->base.data, it->base.widget);
3598         if (it->long_timer) ecore_timer_del(it->long_timer);
3599         if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
3600         elm_widget_item_del(it);
3601      }
3602    wd->anchor_item = NULL;
3603    while (wd->blocks)
3604      {
3605         Item_Block *itb = (Item_Block *)(wd->blocks);
3606
3607         wd->blocks = eina_inlist_remove(wd->blocks, wd->blocks);
3608         if (itb->items) eina_list_free(itb->items);
3609         free(itb);
3610      }
3611    if (wd->calc_job)
3612      {
3613         ecore_job_del(wd->calc_job);
3614         wd->calc_job = NULL;
3615      }
3616    if (wd->queue_idler)
3617      {
3618         ecore_idler_del(wd->queue_idler);
3619         wd->queue_idler = NULL;
3620      }
3621    if (wd->must_recalc_idler)
3622      {
3623         ecore_idler_del(wd->must_recalc_idler);
3624         wd->must_recalc_idler = NULL;
3625      }
3626    if (wd->queue)
3627      {
3628         eina_list_free(wd->queue);
3629         wd->queue = NULL;
3630      }
3631    if (wd->selected)
3632      {
3633         eina_list_free(wd->selected);
3634         wd->selected = NULL;
3635      }
3636    if (wd->edit_field)
3637      {
3638         Evas_Object *editfield;
3639         EINA_LIST_FREE(wd->edit_field, editfield)
3640           evas_object_del(editfield);
3641         wd->edit_field = NULL;
3642      }   
3643    if (wd->item_moving_effect_timer)
3644      {
3645         ecore_animator_del(wd->item_moving_effect_timer);
3646         wd->item_moving_effect_timer = NULL;    
3647      }
3648    if (wd->edit_mode)
3649      {
3650         wd->edit_mode = ELM_GENLIST_EDIT_MODE_NONE;
3651         elm_genlist_edit_mode_set(wd->obj, ELM_GENLIST_EDIT_MODE_NONE, NULL);
3652      }
3653    wd->show_item = NULL;
3654    wd->pan_x = 0;
3655    wd->pan_y = 0;
3656    wd->minw = 0;
3657    wd->minh = 0;
3658
3659    if (wd->alpha_bg)
3660       evas_object_del(wd->alpha_bg);
3661    wd->alpha_bg = NULL;
3662
3663    if (wd->pan_smart)
3664      {
3665         evas_object_size_hint_min_set(wd->pan_smart, wd->minw, wd->minh);
3666         evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
3667      }
3668    _sizing_eval(obj);
3669 }
3670
3671 /**
3672  * Enable or disable multi-select in the genlist
3673  *
3674  * This enables (EINA_TRUE) or disableds (EINA_FALSE) multi-select in
3675  * the list. This allows more than 1 item to be selected.
3676  *
3677  * @param obj The genlist object
3678  * @param multi Multi-select enable/disable
3679  *
3680  * @ingroup Genlist
3681  */
3682 EAPI void
3683 elm_genlist_multi_select_set(Evas_Object *obj,
3684                              Eina_Bool    multi)
3685 {
3686    ELM_CHECK_WIDTYPE(obj, widtype);
3687    Widget_Data *wd = elm_widget_data_get(obj);
3688    if (!wd) return;
3689    wd->multi = multi;
3690 }
3691
3692 /**
3693  * Gets if multi-select in genlist is enable or disable
3694  *
3695  * @param obj The genlist object
3696  * @return Multi-select enable/disable
3697  * (EINA_TRUE = enabled/EINA_FALSE = disabled)
3698  *
3699  * @ingroup Genlist
3700  */
3701 EAPI Eina_Bool
3702 elm_genlist_multi_select_get(const Evas_Object *obj)
3703 {
3704    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3705    Widget_Data *wd = elm_widget_data_get(obj);
3706    if (!wd) return EINA_FALSE;
3707    return wd->multi;
3708 }
3709
3710 /**
3711  * Get the selectd item in the genlist
3712  *
3713  * This gets the selected item in the list (if multi-select is enabled
3714  * only the first item in the list is selected - which is not very
3715  * useful, so see elm_genlist_selected_items_get() for when
3716  * multi-select is used).
3717  *
3718  * If no item is selected, NULL is returned.
3719  *
3720  * @param obj The genlist object
3721  * @return The selected item, or NULL if none.
3722  *
3723  * @ingroup Genlist
3724  */
3725 EAPI Elm_Genlist_Item *
3726 elm_genlist_selected_item_get(const Evas_Object *obj)
3727 {
3728    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3729    Widget_Data *wd = elm_widget_data_get(obj);
3730    if (!wd) return NULL;
3731    if (wd->selected) return wd->selected->data;
3732    return NULL;
3733 }
3734
3735 /**
3736  * Get a list of selected items in the genlist
3737  *
3738  * This returns a list of the selected items. This list pointer is
3739  * only valid so long as no items are selected or unselected (or
3740  * unselected implicitly by deletion). The list contains
3741  * Elm_Genlist_Item pointers.
3742  *
3743  * @param obj The genlist object
3744  * @return The list of selected items, nor NULL if none are selected.
3745  *
3746  * @ingroup Genlist
3747  */
3748 EAPI const Eina_List *
3749 elm_genlist_selected_items_get(const Evas_Object *obj)
3750 {
3751    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3752    Widget_Data *wd = elm_widget_data_get(obj);
3753    if (!wd) return NULL;
3754    return wd->selected;
3755 }
3756
3757 /**
3758  * Get a list of realized items in genlist
3759  *
3760  * This returns a list of the realized items in the genlist. The list
3761  * contains Elm_Genlist_Item pointers. The list must be freed by the
3762  * caller when done with eina_list_free(). The item pointers in the
3763  * list are only valid so long as those items are not deleted or the
3764  * genlist is not deleted.
3765  *
3766  * @param obj The genlist object
3767  * @return The list of realized items, nor NULL if none are realized.
3768  *
3769  * @ingroup Genlist
3770  */
3771 EAPI Eina_List *
3772 elm_genlist_realized_items_get(const Evas_Object *obj)
3773 {
3774    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3775    Widget_Data *wd = elm_widget_data_get(obj);
3776    Eina_List *list = NULL;
3777    Item_Block *itb;
3778    Eina_Bool done = EINA_FALSE;
3779    if (!wd) return NULL;
3780    EINA_INLIST_FOREACH(wd->blocks, itb)
3781    {
3782       if (itb->realized)
3783         {
3784            Eina_List *l;
3785            Elm_Genlist_Item *it;
3786
3787            done = 1;
3788            EINA_LIST_FOREACH(itb->items, l, it)
3789              {
3790                 if (it->realized) list = eina_list_append(list, it);
3791              }
3792         }
3793       else
3794         {
3795            if (done) break;
3796         }
3797    }
3798    return list;
3799 }
3800
3801 /**
3802  * Get the item that is at the x, y canvas coords
3803  *
3804  * This returns the item at the given coordinates (which are canvas
3805  * relative not object-relative). If an item is at that coordinate,
3806  * that item handle is returned, and if @p posret is not NULL, the
3807  * integer pointed to is set to a value of -1, 0 or 1, depending if
3808  * the coordinate is on the upper portion of that item (-1), on the
3809  * middle section (0) or on the lower part (1). If NULL is returned as
3810  * an item (no item found there), then posret may indicate -1 or 1
3811  * based if the coordinate is above or below all items respectively in
3812  * the genlist.
3813  *
3814  * @param it The item
3815  * @param x The input x coordinate
3816  * @param y The input y coordinate
3817  * @param posret The position relative to the item returned here
3818  * @return The item at the coordinates or NULL if none
3819  *
3820  * @ingroup Genlist
3821  */
3822 EAPI Elm_Genlist_Item *
3823 elm_genlist_at_xy_item_get(const Evas_Object *obj,
3824                            Evas_Coord         x,
3825                            Evas_Coord         y,
3826                            int               *posret)
3827 {
3828    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3829    Widget_Data *wd = elm_widget_data_get(obj);
3830    Evas_Coord ox, oy, ow, oh;
3831    Item_Block *itb;
3832    Evas_Coord lasty;
3833    if (!wd) return NULL;
3834    evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
3835    lasty = oy;
3836    EINA_INLIST_FOREACH(wd->blocks, itb)
3837    {
3838       Eina_List *l;
3839       Elm_Genlist_Item *it;
3840
3841       if (!ELM_RECTS_INTERSECT(ox + itb->x - itb->wd->pan_x,
3842                                oy + itb->y - itb->wd->pan_y,
3843                                itb->w, itb->h, x, y, 1, 1))
3844         continue;
3845       EINA_LIST_FOREACH(itb->items, l, it)
3846         {
3847            Evas_Coord itx, ity;
3848
3849            itx = ox + itb->x + it->x - itb->wd->pan_x;
3850            ity = oy + itb->y + it->y - itb->wd->pan_y;
3851            if (ELM_RECTS_INTERSECT(itx, ity, it->w, it->h, x, y, 1, 1))
3852              {
3853                 if (posret)
3854                   {
3855                      if (y <= (ity + (it->h / 4))) *posret = -1;
3856                      else if (y >= (ity + it->h - (it->h / 4)))
3857                        *posret = 1;
3858                      else *posret = 0;
3859                   }
3860                 return it;
3861              }
3862            lasty = ity + it->h;
3863         }
3864    }
3865    if (posret)
3866      {
3867         if (y > lasty) *posret = 1;
3868         else *posret = -1;
3869      }
3870    return NULL;
3871 }
3872
3873 /**
3874  * Get the first item in the genlist
3875  *
3876  * This returns the first item in the list.
3877  *
3878  * @param obj The genlist object
3879  * @return The first item, or NULL if none
3880  *
3881  * @ingroup Genlist
3882  */
3883 EAPI Elm_Genlist_Item *
3884 elm_genlist_first_item_get(const Evas_Object *obj)
3885 {
3886    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3887    Widget_Data *wd = elm_widget_data_get(obj);
3888    if (!wd) return NULL;
3889    if (!wd->items) return NULL;
3890    Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
3891    while ((it) && (it->delete_me))
3892      it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3893    return it;
3894 }
3895
3896 /**
3897  * Get the last item in the genlist
3898  *
3899  * This returns the last item in the list.
3900  *
3901  * @return The last item, or NULL if none
3902  *
3903  * @ingroup Genlist
3904  */
3905 EAPI Elm_Genlist_Item *
3906 elm_genlist_last_item_get(const Evas_Object *obj)
3907 {
3908    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3909    Widget_Data *wd = elm_widget_data_get(obj);
3910    if (!wd) return NULL;
3911    if (!wd->items) return NULL;
3912    Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items->last);
3913    while ((it) && (it->delete_me))
3914      it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3915    return it;
3916 }
3917
3918 /**
3919  * Get the next item in the genlist
3920  *
3921  * This returns the item after the item @p it.
3922  *
3923  * @param it The item
3924  * @return The item after @p it, or NULL if none
3925  *
3926  * @ingroup Genlist
3927  */
3928 EAPI Elm_Genlist_Item *
3929 elm_genlist_item_next_get(const Elm_Genlist_Item *it)
3930 {
3931    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3932    while (it)
3933      {
3934         it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3935         if ((it) && (!it->delete_me)) break;
3936      }
3937    return (Elm_Genlist_Item *)it;
3938 }
3939
3940 /**
3941  * Get the previous item in the genlist
3942  *
3943  * This returns the item before the item @p it.
3944  *
3945  * @param it The item
3946  * @return The item before @p it, or NULL if none
3947  *
3948  * @ingroup Genlist
3949  */
3950 EAPI Elm_Genlist_Item *
3951 elm_genlist_item_prev_get(const Elm_Genlist_Item *it)
3952 {
3953    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3954    while (it)
3955      {
3956         it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3957         if ((it) && (!it->delete_me)) break;
3958      }
3959    return (Elm_Genlist_Item *)it;
3960 }
3961
3962 /**
3963  * Get the genlist object from an item
3964  *
3965  * This returns the genlist object itself that an item belongs to.
3966  *
3967  * @param it The item
3968  * @return The genlist object
3969  *
3970  * @ingroup Genlist
3971  */
3972 EAPI Evas_Object *
3973 elm_genlist_item_genlist_get(const Elm_Genlist_Item *it)
3974 {
3975    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3976    return it->base.widget;
3977 }
3978
3979 /**
3980  * Get the parent item of the given item
3981  *
3982  * This returns the parent item of the item @p it given.
3983  *
3984  * @param it The item
3985  * @return The parent of the item or NULL if none
3986  *
3987  * @ingroup Genlist
3988  */
3989 EAPI Elm_Genlist_Item *
3990 elm_genlist_item_parent_get(const Elm_Genlist_Item *it)
3991 {
3992    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3993    return it->parent;
3994 }
3995
3996 /**
3997  * Clear all sub-items (children) of the given item
3998  *
3999  * This clears all items that are children (or their descendants) of the
4000  * given item @p it.
4001  *
4002  * @param it The item
4003  *
4004  * @ingroup Genlist
4005  */
4006 EAPI void
4007 elm_genlist_item_subitems_clear(Elm_Genlist_Item *it)
4008 {
4009    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4010    Elm_Genlist_Item *it2;
4011    Evas_Coord y, h;
4012
4013    if(!it->wd->effect_mode || !it->wd->move_effect_mode)
4014       _item_subitems_clear(it);
4015    else
4016      {
4017         if((!it->wd->item_moving_effect_timer) && (it->flags != ELM_GENLIST_ITEM_GROUP) &&
4018         it->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE )
4019           {
4020              it->wd->expand_item = it;
4021              _item_flip_effect_show(it);
4022              evas_object_geometry_get(it->base.view, NULL, &y, NULL, &h);
4023              it->wd->expand_item_end = y + h;
4024
4025               it2= it;
4026              do {
4027                   it2 = elm_genlist_item_next_get(it2);
4028                   if(!it2) break;
4029              } while (it2->expanded_depth > it->expanded_depth);
4030              if(it2)
4031                 it->wd->expand_item_gap = it->wd->expand_item_end - it2->old_scrl_y;
4032              else
4033                 it->wd->expand_item_gap = 0;
4034
4035              evas_object_raise(it->wd->alpha_bg);
4036              evas_object_show(it->wd->alpha_bg);
4037
4038              it->wd->start_time = current_time_get();
4039              it->wd->item_moving_effect_timer = ecore_animator_add(_item_moving_effect_timer_cb, it->wd);
4040           }
4041         else
4042            _item_subitems_clear(it);
4043      }
4044 }
4045
4046 /**
4047  * Set the selected state of an item
4048  *
4049  * This sets the selected state (1 selected, 0 not selected) of the given
4050  * item @p it.
4051  *
4052  * @param it The item
4053  * @param selected The selected state
4054  *
4055  * @ingroup Genlist
4056  */
4057 EAPI void
4058 elm_genlist_item_selected_set(Elm_Genlist_Item *it,
4059                               Eina_Bool         selected)
4060 {
4061    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4062    Widget_Data *wd = elm_widget_data_get(it->base.widget);
4063    if (!wd) return;
4064    if (it->delete_me) return;
4065    selected = !!selected;
4066    if (it->selected == selected) return;
4067
4068    if (selected)
4069      {
4070         if (!wd->multi)
4071           {
4072              while (wd->selected)
4073                _item_unselect(wd->selected->data);
4074           }
4075         _item_hilight(it);
4076         _item_select(it);
4077      }
4078    else
4079      _item_unselect(it);
4080 }
4081
4082 /**
4083  * Get the selected state of an item
4084  *
4085  * This gets the selected state of an item (1 selected, 0 not selected).
4086  *
4087  * @param it The item
4088  * @return The selected state
4089  *
4090  * @ingroup Genlist
4091  */
4092 EAPI Eina_Bool
4093 elm_genlist_item_selected_get(const Elm_Genlist_Item *it)
4094 {
4095    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4096    return it->selected;
4097 }
4098
4099 /**
4100  * Sets the expanded state of an item (if it's a parent)
4101  *
4102  * This expands or contracts a parent item (thus showing or hiding the
4103  * children).
4104  *
4105  * @param it The item
4106  * @param expanded The expanded state (1 expanded, 0 not expanded).
4107  *
4108  * @ingroup Genlist
4109  */
4110 EAPI void
4111 elm_genlist_item_expanded_set(Elm_Genlist_Item *it,
4112                               Eina_Bool         expanded)
4113 {
4114    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4115    if (it->expanded == expanded) return;
4116    it->expanded = expanded;
4117    it->wd->expand_item = it;
4118
4119    if(it->wd->effect_mode && !it->wd->alpha_bg)
4120       it->wd->alpha_bg = _create_tray_alpha_bg(it->base.widget);
4121    
4122    if (it->expanded)
4123      {
4124         it->wd->auto_scrolled = EINA_FALSE;
4125         it->wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND;
4126         if (it->realized)
4127           edje_object_signal_emit(it->base.view, "elm,state,expanded", "elm");
4128         evas_object_smart_callback_call(it->base.widget, "expanded", it);
4129      }
4130    else
4131      {
4132         it->wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT;
4133         if (it->realized)
4134           edje_object_signal_emit(it->base.view, "elm,state,contracted", "elm");
4135         evas_object_smart_callback_call(it->base.widget, "contracted", it);
4136      }
4137 }
4138
4139 /**
4140  * Get the expanded state of an item
4141  *
4142  * This gets the expanded state of an item
4143  *
4144  * @param it The item
4145  * @return Thre expanded state
4146  *
4147  * @ingroup Genlist
4148  */
4149 EAPI Eina_Bool
4150 elm_genlist_item_expanded_get(const Elm_Genlist_Item *it)
4151 {
4152    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4153    return it->expanded;
4154 }
4155
4156 /**
4157  * Get the depth of expanded item
4158  *
4159  * @param it The genlist item object
4160  * @return The depth of expanded item
4161  *
4162  * @ingroup Genlist
4163  */
4164 EAPI int
4165 elm_genlist_item_expanded_depth_get(const Elm_Genlist_Item *it)
4166 {
4167    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, 0);
4168    return it->expanded_depth;
4169 }
4170
4171 /**
4172  * Sets the disabled state of an item.
4173  *
4174  * A disabled item cannot be selected or unselected. It will also
4175  * change appearance to appear disabled. This sets the disabled state
4176  * (1 disabled, 0 not disabled).
4177  *
4178  * @param it The item
4179  * @param disabled The disabled state
4180  *
4181  * @ingroup Genlist
4182  */
4183 EAPI void
4184 elm_genlist_item_disabled_set(Elm_Genlist_Item *it,
4185                               Eina_Bool         disabled)
4186 {
4187    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4188    if (it->disabled == disabled) return;
4189    if (it->delete_me) return;
4190    it->disabled = disabled;
4191    if (it->realized)
4192      {
4193         if (it->disabled)
4194           edje_object_signal_emit(it->base.view, "elm,state,disabled", "elm");
4195         else
4196           edje_object_signal_emit(it->base.view, "elm,state,enabled", "elm");
4197      }
4198 }
4199
4200 /**
4201  * Get the disabled state of an item
4202  *
4203  * This gets the disabled state of the given item.
4204  *
4205  * @param it The item
4206  * @return The disabled state
4207  *
4208  * @ingroup Genlist
4209  */
4210 EAPI Eina_Bool
4211 elm_genlist_item_disabled_get(const Elm_Genlist_Item *it)
4212 {
4213    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4214    if (it->delete_me) return EINA_FALSE;
4215    return it->disabled;
4216 }
4217
4218 /**
4219  * Sets the display only state of an item.
4220  *
4221  * A display only item cannot be selected or unselected. It is for
4222  * display only and not selecting or otherwise clicking, dragging
4223  * etc. by the user, thus finger size rules will not be applied to
4224  * this item.
4225  *
4226  * @param it The item
4227  * @param display_only The display only state
4228  *
4229  * @ingroup Genlist
4230  */
4231 EAPI void
4232 elm_genlist_item_display_only_set(Elm_Genlist_Item *it,
4233                                   Eina_Bool         display_only)
4234 {
4235    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4236    if (!it->block) return;
4237    if (it->display_only == display_only) return;
4238    if (it->delete_me) return;
4239    it->display_only = display_only;
4240    it->mincalcd = EINA_FALSE;
4241    it->updateme = EINA_TRUE;
4242    it->block->updateme = EINA_TRUE;
4243    if (it->wd->update_job) ecore_job_del(it->wd->update_job);
4244    it->wd->update_job = ecore_job_add(_update_job, it->wd);
4245 }
4246
4247 /**
4248  * Get the display only state of an item
4249  *
4250  * This gets the display only state of the given item.
4251  *
4252  * @param it The item
4253  * @return The display only state
4254  *
4255  * @ingroup Genlist
4256  */
4257 EAPI Eina_Bool
4258 elm_genlist_item_display_only_get(const Elm_Genlist_Item *it)
4259 {
4260    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4261    if (it->delete_me) return EINA_FALSE;
4262    return it->display_only;
4263 }
4264
4265 /**
4266  * Show the given item
4267  *
4268  * This causes genlist to jump to the given item @p it and show it (by
4269  * scrolling), if it is not fully visible.
4270  *
4271  * @param it The item
4272  *
4273  * @ingroup Genlist
4274  */
4275 EAPI void
4276 elm_genlist_item_show(Elm_Genlist_Item *it)
4277 {
4278    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4279    Evas_Coord gith = 0;
4280    if (it->delete_me) return;
4281    if ((it->queued) || (!it->mincalcd))
4282      {
4283         it->wd->show_item = it;
4284         it->wd->bring_in = EINA_TRUE;
4285         it->showme = EINA_TRUE;
4286         return;
4287      }
4288    if (it->wd->show_item)
4289      {
4290         it->wd->show_item->showme = EINA_FALSE;
4291         it->wd->show_item = NULL;
4292      }
4293    if ((it->group_item) && (it->wd->pan_y > (it->y + it->block->y)))
4294       gith = it->group_item->h;
4295    elm_smart_scroller_child_region_show(it->wd->scr,
4296                                         it->x + it->block->x,
4297                                         it->y + it->block->y - gith,
4298                                         it->block->w, it->h);
4299 }
4300
4301 /**
4302  * Bring in the given item
4303  *
4304  * This causes genlist to jump to the given item @p it and show it (by
4305  * scrolling), if it is not fully visible. This may use animation to
4306  * do so and take a period of time
4307  *
4308  * @param it The item
4309  *
4310  * @ingroup Genlist
4311  */
4312 EAPI void
4313 elm_genlist_item_bring_in(Elm_Genlist_Item *it)
4314 {
4315    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4316    Evas_Coord gith = 0; 
4317    if (it->delete_me) return;
4318    if ((it->queued) || (!it->mincalcd))
4319      {
4320         it->wd->show_item = it;
4321         it->wd->bring_in = EINA_TRUE;
4322         it->showme = EINA_TRUE;
4323         return;
4324      }
4325    if (it->wd->show_item)
4326      {
4327         it->wd->show_item->showme = EINA_FALSE;
4328         it->wd->show_item = NULL;
4329      }
4330    if ((it->group_item) && (it->wd->pan_y > (it->y + it->block->y)))
4331       gith = it->group_item->h;
4332    elm_smart_scroller_region_bring_in(it->wd->scr,
4333                                       it->x + it->block->x,
4334                                       it->y + it->block->y - gith,
4335                                       it->block->w, it->h);
4336 }
4337
4338 /**
4339  * Show the given item at the top
4340  *
4341  * This causes genlist to jump to the given item @p it and show it (by
4342  * scrolling), if it is not fully visible.
4343  *
4344  * @param it The item
4345  *
4346  * @ingroup Genlist
4347  */
4348 EAPI void
4349 elm_genlist_item_top_show(Elm_Genlist_Item *it)
4350 {
4351    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4352    Evas_Coord ow, oh;
4353    Evas_Coord gith = 0;
4354
4355    if (it->delete_me) return;
4356    if ((it->queued) || (!it->mincalcd))
4357      {
4358         it->wd->show_item = it;
4359         it->wd->bring_in = EINA_TRUE;
4360         it->showme = EINA_TRUE;
4361         return;
4362      }
4363    if (it->wd->show_item)
4364      {
4365         it->wd->show_item->showme = EINA_FALSE;
4366         it->wd->show_item = NULL;
4367      }
4368    evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4369    if (it->group_item) gith = it->group_item->h;
4370    elm_smart_scroller_child_region_show(it->wd->scr,
4371                                         it->x + it->block->x,
4372                                         it->y + it->block->y - gith,
4373                                         it->block->w, oh);
4374 }
4375
4376 /**
4377  * Bring in the given item at the top
4378  *
4379  * This causes genlist to jump to the given item @p it and show it (by
4380  * scrolling), if it is not fully visible. This may use animation to
4381  * do so and take a period of time
4382  *
4383  * @param it The item
4384  *
4385  * @ingroup Genlist
4386  */
4387 EAPI void
4388 elm_genlist_item_top_bring_in(Elm_Genlist_Item *it)
4389 {
4390    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4391    Evas_Coord ow, oh;
4392    Evas_Coord gith = 0;
4393
4394    if (it->delete_me) return;
4395    if ((it->queued) || (!it->mincalcd))
4396      {
4397         it->wd->show_item = it;
4398         it->wd->bring_in = EINA_TRUE;
4399         it->showme = EINA_TRUE;
4400         return;
4401      }
4402    if (it->wd->show_item)
4403      {
4404         it->wd->show_item->showme = EINA_FALSE;
4405         it->wd->show_item = NULL;
4406      }
4407    evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4408    if (it->group_item) gith = it->group_item->h;
4409    elm_smart_scroller_region_bring_in(it->wd->scr,
4410                                       it->x + it->block->x,
4411                                       it->y + it->block->y - gith,
4412                                       it->block->w, oh);
4413 }
4414
4415 /**
4416  * Show the given item at the middle
4417  *
4418  * This causes genlist to jump to the given item @p it and show it (by
4419  * scrolling), if it is not fully visible.
4420  *
4421  * @param it The item
4422  *
4423  * @ingroup Genlist
4424  */
4425 EAPI void
4426 elm_genlist_item_middle_show(Elm_Genlist_Item *it)
4427 {
4428    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4429    Evas_Coord ow, oh;
4430
4431    if (it->delete_me) return;
4432    if ((it->queued) || (!it->mincalcd))
4433      {
4434         it->wd->show_item = it;
4435         it->wd->bring_in = EINA_TRUE;
4436         it->showme = EINA_TRUE;
4437         return;
4438      }
4439    if (it->wd->show_item)
4440      {
4441         it->wd->show_item->showme = EINA_FALSE;
4442         it->wd->show_item = NULL;
4443      }
4444    evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4445    elm_smart_scroller_child_region_show(it->wd->scr,
4446                                         it->x + it->block->x,
4447                                         it->y + it->block->y - oh / 2 +
4448                                         it->h / 2, it->block->w, oh);
4449 }
4450
4451 /**
4452  * Bring in the given item at the middle
4453  *
4454  * This causes genlist to jump to the given item @p it and show it (by
4455  * scrolling), if it is not fully visible. This may use animation to
4456  * do so and take a period of time
4457  *
4458  * @param it The item
4459  *
4460  * @ingroup Genlist
4461  */
4462 EAPI void
4463 elm_genlist_item_middle_bring_in(Elm_Genlist_Item *it)
4464 {
4465    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4466    Evas_Coord ow, oh;
4467
4468    if (it->delete_me) return;
4469    if ((it->queued) || (!it->mincalcd))
4470      {
4471         it->wd->show_item = it;
4472         it->wd->bring_in = EINA_TRUE;
4473         it->showme = EINA_TRUE;
4474         return;
4475      }
4476    if (it->wd->show_item)
4477      {
4478         it->wd->show_item->showme = EINA_FALSE;
4479         it->wd->show_item = NULL;
4480      }
4481    evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4482    elm_smart_scroller_region_bring_in(it->wd->scr,
4483                                       it->x + it->block->x,
4484                                       it->y + it->block->y - oh / 2 + it->h / 2,
4485                                       it->block->w, oh);
4486 }
4487
4488 /**
4489  * Delete a given item
4490  *
4491  * This deletes the item from genlist and calls the genlist item del
4492  * class callback defined in the item class, if it is set. This clears all
4493  * subitems if it is a tree.
4494  *
4495  * @param it The item
4496  *
4497  * @ingroup Genlist
4498  */
4499 EAPI void
4500 elm_genlist_item_del(Elm_Genlist_Item *it)
4501 {
4502    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4503    if ((it->relcount > 0) || (it->walking > 0))
4504      {
4505         elm_widget_item_pre_notify_del(it);
4506         elm_genlist_item_subitems_clear(it);
4507         it->delete_me = EINA_TRUE;
4508         if (it->wd->show_item == it) it->wd->show_item = NULL;
4509         if (it->selected)
4510           it->wd->selected = eina_list_remove(it->wd->selected,
4511                                               it);
4512         if (it->block)
4513           {
4514              if (it->realized) _item_unrealize(it);
4515              if (it->effect_item_realized) _effect_item_unrealize(it);
4516              it->block->changed = EINA_TRUE;
4517              if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
4518              it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
4519           }
4520 //        if (it->itc->func.del)
4521 //        it->itc->func.del((void *)it->base.data, it->base.widget);
4522         return;
4523      }
4524    _item_del(it);
4525 }
4526
4527 /**
4528  * Set the data item from the genlist item
4529  *
4530  * This set the data value passed on the elm_genlist_item_append() and
4531  * related item addition calls. This function will also call
4532  * elm_genlist_item_update() so the item will be updated to reflect the
4533  * new data.
4534  *
4535  * @param it The item
4536  * @param data The new data pointer to set
4537  *
4538  * @ingroup Genlist
4539  */
4540 EAPI void
4541 elm_genlist_item_data_set(Elm_Genlist_Item *it,
4542                           const void       *data)
4543 {
4544    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4545    elm_widget_item_data_set(it, data);
4546    elm_genlist_item_update(it);
4547 }
4548
4549 /**
4550  * Get the data item from the genlist item
4551  *
4552  * This returns the data value passed on the elm_genlist_item_append()
4553  * and related item addition calls and elm_genlist_item_data_set().
4554  *
4555  * @param it The item
4556  * @return The data pointer provided when created
4557  *
4558  * @ingroup Genlist
4559  */
4560 EAPI void *
4561 elm_genlist_item_data_get(const Elm_Genlist_Item *it)
4562 {
4563    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4564    return elm_widget_item_data_get(it);
4565 }
4566
4567 /**
4568  * Tells genlist to "orphan" icons fetchs by the item class
4569  *
4570  * This instructs genlist to release references to icons in the item,
4571  * meaning that they will no longer be managed by genlist and are
4572  * floating "orphans" that can be re-used elsewhere if the user wants
4573  * to.
4574  *
4575  * @param it The item
4576  *
4577  * @ingroup Genlist
4578  */
4579 EAPI void
4580 elm_genlist_item_icons_orphan(Elm_Genlist_Item *it)
4581 {
4582    Evas_Object *icon;
4583    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4584    EINA_LIST_FREE(it->icon_objs, icon)
4585      {
4586         elm_widget_sub_object_del(it->base.widget, icon);
4587         evas_object_smart_member_del(icon);
4588         evas_object_hide(icon);
4589      }
4590 }
4591
4592 /**
4593  * Get the real evas object of the genlist item
4594  *
4595  * This returns the actual evas object used for the specified genlist
4596  * item. This may be NULL as it may not be created, and may be deleted
4597  * at any time by genlist. Do not modify this object (move, resize,
4598  * show, hide etc.) as genlist is controlling it. This function is for
4599  * querying, emitting custom signals or hooking lower level callbacks
4600  * for events. Do not delete this object under any circumstances.
4601  *
4602  * @param it The item
4603  * @return The object pointer
4604  *
4605  * @ingroup Genlist
4606  */
4607 EAPI const Evas_Object *
4608 elm_genlist_item_object_get(const Elm_Genlist_Item *it)
4609 {
4610    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4611    return it->base.view;
4612 }
4613
4614 /**
4615  * Update the contents of an item
4616  *
4617  * This updates an item by calling all the item class functions again
4618  * to get the icons, labels and states. Use this when the original
4619  * item data has changed and the changes are desired to be reflected.
4620  *
4621  * @param it The item
4622  *
4623  * @ingroup Genlist
4624  */
4625 EAPI void
4626 elm_genlist_item_update(Elm_Genlist_Item *it)
4627 {
4628    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4629    if (!it->block) return;
4630    if (it->delete_me) return;
4631    it->mincalcd = EINA_FALSE;
4632    it->updateme = EINA_TRUE;
4633    it->block->updateme = EINA_TRUE;
4634    if (it->wd->update_job) ecore_job_del(it->wd->update_job);
4635    it->wd->update_job = ecore_job_add(_update_job, it->wd);
4636 }
4637
4638 /**
4639  * Update the item class of an item
4640  *
4641  * @param it The item
4642  * @parem itc The item class for the item
4643  *
4644  * @ingroup Genlist
4645  */
4646 EAPI void
4647 elm_genlist_item_item_class_update(Elm_Genlist_Item             *it,
4648                                    const Elm_Genlist_Item_Class *itc)
4649 {
4650    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4651    if (!it->block) return;
4652    EINA_SAFETY_ON_NULL_RETURN(itc);
4653    if (it->delete_me) return;
4654    it->itc = itc;
4655    it->nocache = EINA_TRUE;
4656    elm_genlist_item_update(it);
4657 }
4658
4659 static Evas_Object *
4660 _elm_genlist_item_label_create(void        *data,
4661                                Evas_Object *obj,
4662                                void *item   __UNUSED__)
4663 {
4664    Evas_Object *label = elm_label_add(obj);
4665    if (!label)
4666      return NULL;
4667    elm_object_style_set(label, "tooltip");
4668    elm_label_label_set(label, data);
4669    return label;
4670 }
4671
4672 static void
4673 _elm_genlist_item_label_del_cb(void            *data,
4674                                Evas_Object *obj __UNUSED__,
4675                                void *event_info __UNUSED__)
4676 {
4677    eina_stringshare_del(data);
4678 }
4679
4680 /**
4681  * Set the text to be shown in the genlist item.
4682  *
4683  * @param item Target item
4684  * @param text The text to set in the content
4685  *
4686  * Setup the text as tooltip to object. The item can have only one
4687  * tooltip, so any previous tooltip data is removed.
4688  *
4689  * @ingroup Genlist
4690  */
4691 EAPI void
4692 elm_genlist_item_tooltip_text_set(Elm_Genlist_Item *item,
4693                                   const char       *text)
4694 {
4695    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4696    text = eina_stringshare_add(text);
4697    elm_genlist_item_tooltip_content_cb_set(item, _elm_genlist_item_label_create,
4698                                            text,
4699                                            _elm_genlist_item_label_del_cb);
4700 }
4701
4702 /**
4703  * Set the content to be shown in the tooltip item
4704  *
4705  * Setup the tooltip to item. The item can have only one tooltip, so
4706  * any previous tooltip data is removed. @p func(with @p data) will be
4707  * called every time that need to show the tooltip and it should return a
4708  * valid Evas_Object. This object is then managed fully by tooltip
4709  * system and is deleted when the tooltip is gone.
4710  *
4711  * @param item the genlist item being attached by a tooltip.
4712  * @param func the function used to create the tooltip contents.
4713  * @param data what to provide to @a func as callback data/context.
4714  * @param del_cb called when data is not needed anymore, either when
4715  *        another callback replaces @func, the tooltip is unset with
4716  *        elm_genlist_item_tooltip_unset() or the owner @a item
4717  *        dies. This callback receives as the first parameter the
4718  *        given @a data, and @c event_info is the item.
4719  *
4720  * @ingroup Genlist
4721  */
4722 EAPI void
4723 elm_genlist_item_tooltip_content_cb_set(Elm_Genlist_Item           *item,
4724                                         Elm_Tooltip_Item_Content_Cb func,
4725                                         const void                 *data,
4726                                         Evas_Smart_Cb               del_cb)
4727 {
4728    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_GOTO(item, error);
4729
4730    if ((item->tooltip.content_cb == func) && (item->tooltip.data == data))
4731      return;
4732
4733    if (item->tooltip.del_cb)
4734      item->tooltip.del_cb((void *)item->tooltip.data,
4735                           item->base.widget, item);
4736
4737    item->tooltip.content_cb = func;
4738    item->tooltip.data = data;
4739    item->tooltip.del_cb = del_cb;
4740
4741    if (item->base.view)
4742      {
4743         elm_widget_item_tooltip_content_cb_set(item,
4744                                                item->tooltip.content_cb,
4745                                                item->tooltip.data, NULL);
4746         elm_widget_item_tooltip_style_set(item, item->tooltip.style);
4747      }
4748
4749    return;
4750
4751 error:
4752    if (del_cb) del_cb((void *)data, NULL, NULL);
4753 }
4754
4755 /**
4756  * Unset tooltip from item
4757  *
4758  * @param item genlist item to remove previously set tooltip.
4759  *
4760  * Remove tooltip from item. The callback provided as del_cb to
4761  * elm_genlist_item_tooltip_content_cb_set() will be called to notify
4762  * it is not used anymore.
4763  *
4764  * @see elm_genlist_item_tooltip_content_cb_set()
4765  *
4766  * @ingroup Genlist
4767  */
4768 EAPI void
4769 elm_genlist_item_tooltip_unset(Elm_Genlist_Item *item)
4770 {
4771    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4772    if ((item->base.view) && (item->tooltip.content_cb))
4773      elm_widget_item_tooltip_unset(item);
4774
4775    if (item->tooltip.del_cb)
4776      item->tooltip.del_cb((void *)item->tooltip.data, item->base.widget, item);
4777    item->tooltip.del_cb = NULL;
4778    item->tooltip.content_cb = NULL;
4779    item->tooltip.data = NULL;
4780    if (item->tooltip.style)
4781      elm_genlist_item_tooltip_style_set(item, NULL);
4782 }
4783
4784 /**
4785  * Sets a different style for this item tooltip.
4786  *
4787  * @note before you set a style you should define a tooltip with
4788  *       elm_genlist_item_tooltip_content_cb_set() or
4789  *       elm_genlist_item_tooltip_text_set()
4790  *
4791  * @param item genlist item with tooltip already set.
4792  * @param style the theme style to use (default, transparent, ...)
4793  *
4794  * @ingroup Genlist
4795  */
4796 EAPI void
4797 elm_genlist_item_tooltip_style_set(Elm_Genlist_Item *item,
4798                                    const char       *style)
4799 {
4800    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4801    eina_stringshare_replace(&item->tooltip.style, style);
4802    if (item->base.view) elm_widget_item_tooltip_style_set(item, style);
4803 }
4804
4805 /**
4806  * Get the style for this item tooltip.
4807  *
4808  * @param item genlist item with tooltip already set.
4809  * @return style the theme style in use, defaults to "default". If the
4810  *         object does not have a tooltip set, then NULL is returned.
4811  *
4812  * @ingroup Genlist
4813  */
4814 EAPI const char *
4815 elm_genlist_item_tooltip_style_get(const Elm_Genlist_Item *item)
4816 {
4817    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4818    return item->tooltip.style;
4819 }
4820
4821 /**
4822  * Set the cursor to be shown when mouse is over the genlist item
4823  *
4824  * @param item Target item
4825  * @param cursor the cursor name to be used.
4826  *
4827  * @see elm_object_cursor_set()
4828  * @ingroup Genlist
4829  */
4830 EAPI void
4831 elm_genlist_item_cursor_set(Elm_Genlist_Item *item,
4832                             const char       *cursor)
4833 {
4834    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4835    eina_stringshare_replace(&item->mouse_cursor, cursor);
4836    if (item->base.view) elm_widget_item_cursor_set(item, cursor);
4837 }
4838
4839 /**
4840  * Get the cursor to be shown when mouse is over the genlist item
4841  *
4842  * @param item genlist item with cursor already set.
4843  * @return the cursor name.
4844  *
4845  * @ingroup Genlist
4846  */
4847 EAPI const char *
4848 elm_genlist_item_cursor_get(const Elm_Genlist_Item *item)
4849 {
4850    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4851    return elm_widget_item_cursor_get(item);
4852 }
4853
4854 /**
4855  * Unset the cursor to be shown when mouse is over the genlist item
4856  *
4857  * @param item Target item
4858  *
4859  * @see elm_object_cursor_unset()
4860  * @ingroup Genlist
4861  */
4862 EAPI void
4863 elm_genlist_item_cursor_unset(Elm_Genlist_Item *item)
4864 {
4865    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4866    if (!item->mouse_cursor)
4867      return;
4868
4869    if (item->base.view)
4870      elm_widget_item_cursor_unset(item);
4871
4872    eina_stringshare_del(item->mouse_cursor);
4873    item->mouse_cursor = NULL;
4874 }
4875
4876 /**
4877  * Sets a different style for this item cursor.
4878  *
4879  * @note before you set a style you should define a cursor with
4880  *       elm_genlist_item_cursor_set()
4881  *
4882  * @param item genlist item with cursor already set.
4883  * @param style the theme style to use (default, transparent, ...)
4884  *
4885  * @ingroup Genlist
4886  */
4887 EAPI void
4888 elm_genlist_item_cursor_style_set(Elm_Genlist_Item *item,
4889                                   const char       *style)
4890 {
4891    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4892    elm_widget_item_cursor_style_set(item, style);
4893 }
4894
4895 /**
4896  * Get the style for this item cursor.
4897  *
4898  * @param item genlist item with cursor already set.
4899  * @return style the theme style in use, defaults to "default". If the
4900  *         object does not have a cursor set, then NULL is returned.
4901  *
4902  * @ingroup Genlist
4903  */
4904 EAPI const char *
4905 elm_genlist_item_cursor_style_get(const Elm_Genlist_Item *item)
4906 {
4907    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4908    return elm_widget_item_cursor_style_get(item);
4909 }
4910
4911 /**
4912  * Set if the cursor set should be searched on the theme or should use
4913  * the provided by the engine, only.
4914  *
4915  * @note before you set if should look on theme you should define a
4916  * cursor with elm_object_cursor_set(). By default it will only look
4917  * for cursors provided by the engine.
4918  *
4919  * @param item widget item with cursor already set.
4920  * @param engine_only boolean to define it cursors should be looked
4921  * only between the provided by the engine or searched on widget's
4922  * theme as well.
4923  *
4924  * @ingroup Genlist
4925  */
4926 EAPI void
4927 elm_genlist_item_cursor_engine_only_set(Elm_Genlist_Item *item,
4928                                         Eina_Bool         engine_only)
4929 {
4930    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4931    elm_widget_item_cursor_engine_only_set(item, engine_only);
4932 }
4933
4934 /**
4935  * Get the cursor engine only usage for this item cursor.
4936  *
4937  * @param item widget item with cursor already set.
4938  * @return engine_only boolean to define it cursors should be looked
4939  * only between the provided by the engine or searched on widget's
4940  * theme as well. If the object does not have a cursor set, then
4941  * EINA_FALSE is returned.
4942  *
4943  * @ingroup Genlist
4944  */
4945 EAPI Eina_Bool
4946 elm_genlist_item_cursor_engine_only_get(const Elm_Genlist_Item *item)
4947 {
4948    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
4949    return elm_widget_item_cursor_engine_only_get(item);
4950 }
4951
4952 /**
4953  * This sets the horizontal stretching mode
4954  *
4955  * This sets the mode used for sizing items horizontally. Valid modes
4956  * are ELM_LIST_LIMIT and ELM_LIST_SCROLL. The default is
4957  * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
4958  * the scroller will scroll horizontally. Otherwise items are expanded
4959  * to fill the width of the viewport of the scroller. If it is
4960  * ELM_LIST_LIMIT, Items will be expanded to the viewport width and
4961  * limited to that size.
4962  *
4963  * @param obj The genlist object
4964  * @param mode The mode to use
4965  *
4966  * @ingroup Genlist
4967  */
4968 EAPI void
4969 elm_genlist_horizontal_mode_set(Evas_Object  *obj,
4970                                 Elm_List_Mode mode)
4971 {
4972    ELM_CHECK_WIDTYPE(obj, widtype);
4973    Widget_Data *wd = elm_widget_data_get(obj);
4974    if (!wd) return;
4975    if (wd->mode == mode) return;
4976    wd->mode = mode;
4977    _sizing_eval(obj);
4978 }
4979
4980 /**
4981  * Gets the horizontal stretching mode
4982  *
4983  * @param obj The genlist object
4984  * @return The mode to use
4985  * (ELM_LIST_LIMIT, ELM_LIST_SCROLL)
4986  *
4987  * @ingroup Genlist
4988  */
4989 EAPI Elm_List_Mode
4990 elm_genlist_horizontal_mode_get(const Evas_Object *obj)
4991 {
4992    ELM_CHECK_WIDTYPE(obj, widtype) ELM_LIST_LAST;
4993    Widget_Data *wd = elm_widget_data_get(obj);
4994    if (!wd) return ELM_LIST_LAST;
4995    return wd->mode;
4996 }
4997
4998 /**
4999  * Set the always select mode.
5000  *
5001  * Items will only call their selection func and callback when first
5002  * becoming selected. Any further clicks will do nothing, unless you
5003  * enable always select with elm_genlist_always_select_mode_set().
5004  * This means even if selected, every click will make the selected
5005  * callbacks be called.
5006  *
5007  * @param obj The genlist object
5008  * @param always_select The always select mode
5009  * (EINA_TRUE = on, EINA_FALSE = off)
5010  *
5011  * @ingroup Genlist
5012  */
5013 EAPI void
5014 elm_genlist_always_select_mode_set(Evas_Object *obj,
5015                                    Eina_Bool    always_select)
5016 {
5017    ELM_CHECK_WIDTYPE(obj, widtype);
5018    Widget_Data *wd = elm_widget_data_get(obj);
5019    if (!wd) return;
5020    wd->always_select = always_select;
5021 }
5022
5023 /**
5024  * Get the always select mode.
5025  *
5026  * @param obj The genlist object
5027  * @return The always select mode
5028  * (EINA_TRUE = on, EINA_FALSE = off)
5029  *
5030  * @ingroup Genlist
5031  */
5032 EAPI Eina_Bool
5033 elm_genlist_always_select_mode_get(const Evas_Object *obj)
5034 {
5035    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5036    Widget_Data *wd = elm_widget_data_get(obj);
5037    if (!wd) return EINA_FALSE;
5038    return wd->always_select;
5039 }
5040
5041 /**
5042  * Set no select mode
5043  *
5044  * This will turn off the ability to select items entirely and they
5045  * will neither appear selected nor call selected callback functions.
5046  *
5047  * @param obj The genlist object
5048  * @param no_select The no select mode
5049  * (EINA_TRUE = on, EINA_FALSE = off)
5050  *
5051  * @ingroup Genlist
5052  */
5053 EAPI void
5054 elm_genlist_no_select_mode_set(Evas_Object *obj,
5055                                Eina_Bool    no_select)
5056 {
5057    ELM_CHECK_WIDTYPE(obj, widtype);
5058    Widget_Data *wd = elm_widget_data_get(obj);
5059    if (!wd) return;
5060    wd->no_select = no_select;
5061 }
5062
5063 /**
5064  * Gets no select mode
5065  *
5066  * @param obj The genlist object
5067  * @return The no select mode
5068  * (EINA_TRUE = on, EINA_FALSE = off)
5069  *
5070  * @ingroup Genlist
5071  */
5072 EAPI Eina_Bool
5073 elm_genlist_no_select_mode_get(const Evas_Object *obj)
5074 {
5075    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5076    Widget_Data *wd = elm_widget_data_get(obj);
5077    if (!wd) return EINA_FALSE;
5078    return wd->no_select;
5079 }
5080
5081 /**
5082  * Set compress mode
5083  *
5084  * This will enable the compress mode where items are "compressed"
5085  * horizontally to fit the genlist scrollable viewport width. This is
5086  * special for genlist.  Do not rely on
5087  * elm_genlist_horizontal_mode_set() being set to ELM_LIST_COMPRESS to
5088  * work as genlist needs to handle it specially.
5089  *
5090  * @param obj The genlist object
5091  * @param compress The compress mode
5092  * (EINA_TRUE = on, EINA_FALSE = off)
5093  *
5094  * @ingroup Genlist
5095  */
5096 EAPI void
5097 elm_genlist_compress_mode_set(Evas_Object *obj,
5098                               Eina_Bool    compress)
5099 {
5100    ELM_CHECK_WIDTYPE(obj, widtype);
5101    Widget_Data *wd = elm_widget_data_get(obj);
5102    if (!wd) return;
5103    wd->compress = compress;
5104 }
5105
5106 /**
5107  * Get the compress mode
5108  *
5109  * @param obj The genlist object
5110  * @return The compress mode
5111  * (EINA_TRUE = on, EINA_FALSE = off)
5112  *
5113  * @ingroup Genlist
5114  */
5115 EAPI Eina_Bool
5116 elm_genlist_compress_mode_get(const Evas_Object *obj)
5117 {
5118    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5119    Widget_Data *wd = elm_widget_data_get(obj);
5120    if (!wd) return EINA_FALSE;
5121    return wd->compress;
5122 }
5123
5124 /**
5125  * Set height-for-width mode
5126  *
5127  * With height-for-width mode the item width will be fixed (restricted
5128  * to a minimum of) to the list width when calculating its size in
5129  * order to allow the height to be calculated based on it. This allows,
5130  * for instance, text block to wrap lines if the Edje part is
5131  * configured with "text.min: 0 1".
5132  *
5133  * @note This mode will make list resize slower as it will have to
5134  *       recalculate every item height again whenever the list width
5135  *       changes!
5136  *
5137  * @note When height-for-width mode is enabled, it also enables
5138  *       compress mode (see elm_genlist_compress_mode_set()) and
5139  *       disables homogeneous (see elm_genlist_homogeneous_set()).
5140  *
5141  * @param obj The genlist object
5142  * @param setting The height-for-width mode (EINA_TRUE = on,
5143  * EINA_FALSE = off)
5144  *
5145  * @ingroup Genlist
5146  */
5147 EAPI void
5148 elm_genlist_height_for_width_mode_set(Evas_Object *obj,
5149                                       Eina_Bool    height_for_width)
5150 {
5151    ELM_CHECK_WIDTYPE(obj, widtype);
5152    Widget_Data *wd = elm_widget_data_get(obj);
5153    if (!wd) return;
5154    wd->height_for_width = !!height_for_width;
5155    if (wd->height_for_width)
5156      {
5157         elm_genlist_homogeneous_set(obj, EINA_FALSE);
5158         elm_genlist_compress_mode_set(obj, EINA_TRUE);
5159      }
5160 }
5161
5162 /**
5163  * Get the height-for-width mode
5164  *
5165  * @param obj The genlist object
5166  * @return The height-for-width mode (EINA_TRUE = on, EINA_FALSE =
5167  * off)
5168  *
5169  * @ingroup Genlist
5170  */
5171 EAPI Eina_Bool
5172 elm_genlist_height_for_width_mode_get(const Evas_Object *obj)
5173 {
5174    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5175    Widget_Data *wd = elm_widget_data_get(obj);
5176    if (!wd) return EINA_FALSE;
5177    return wd->height_for_width;
5178 }
5179
5180 /**
5181  * Set bounce mode
5182  *
5183  * This will enable or disable the scroller bounce mode for the
5184  * genlist. See elm_scroller_bounce_set() for details
5185  *
5186  * @param obj The genlist object
5187  * @param h_bounce Allow bounce horizontally
5188  * @param v_bounce Allow bounce vertically
5189  *
5190  * @ingroup Genlist
5191  */
5192 EAPI void
5193 elm_genlist_bounce_set(Evas_Object *obj,
5194                        Eina_Bool    h_bounce,
5195                        Eina_Bool    v_bounce)
5196 {
5197    ELM_CHECK_WIDTYPE(obj, widtype);
5198    Widget_Data *wd = elm_widget_data_get(obj);
5199    if (!wd) return;
5200    elm_smart_scroller_bounce_allow_set(wd->scr, h_bounce, v_bounce);
5201 }
5202
5203 /**
5204  * Get the bounce mode
5205  *
5206  * @param obj The genlist object
5207  * @param h_bounce Allow bounce horizontally
5208  * @param v_bounce Allow bounce vertically
5209  *
5210  * @ingroup Genlist
5211  */
5212 EAPI void
5213 elm_genlist_bounce_get(const Evas_Object *obj,
5214                        Eina_Bool         *h_bounce,
5215                        Eina_Bool         *v_bounce)
5216 {
5217    ELM_CHECK_WIDTYPE(obj, widtype);
5218    Widget_Data *wd = elm_widget_data_get(obj);
5219    if (!wd) return;
5220    elm_smart_scroller_bounce_allow_get(obj, h_bounce, v_bounce);
5221 }
5222
5223 /**
5224  * Set homogenous mode
5225  *
5226  * This will enable the homogeneous mode where items are of the same
5227  * height and width so that genlist may do the lazy-loading at its
5228  * maximum. This implies 'compressed' mode.
5229  *
5230  * @param obj The genlist object
5231  * @param homogeneous Assume the items within the genlist are of the
5232  * same height and width (EINA_TRUE = on, EINA_FALSE = off)
5233  *
5234  * @ingroup Genlist
5235  */
5236 EAPI void
5237 elm_genlist_homogeneous_set(Evas_Object *obj,
5238                             Eina_Bool    homogeneous)
5239 {
5240    ELM_CHECK_WIDTYPE(obj, widtype);
5241    Widget_Data *wd = elm_widget_data_get(obj);
5242    if (!wd) return;
5243    if (homogeneous) elm_genlist_compress_mode_set(obj, EINA_TRUE);
5244    wd->homogeneous = homogeneous;
5245 }
5246
5247 /**
5248  * Get the homogenous mode
5249  *
5250  * @param obj The genlist object
5251  * @return Assume the items within the genlist are of the same height
5252  * and width (EINA_TRUE = on, EINA_FALSE = off)
5253  *
5254  * @ingroup Genlist
5255  */
5256 EAPI Eina_Bool
5257 elm_genlist_homogeneous_get(const Evas_Object *obj)
5258 {
5259    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5260    Widget_Data *wd = elm_widget_data_get(obj);
5261    if (!wd) return EINA_FALSE;
5262    return wd->homogeneous;
5263 }
5264
5265 /**
5266  * Set the maximum number of items within an item block
5267  *
5268  * This will configure the block count to tune to the target with
5269  * particular performance matrix.
5270  *
5271  * @param obj The genlist object
5272  * @param n   Maximum number of items within an item block
5273  *
5274  * @ingroup Genlist
5275  */
5276 EAPI void
5277 elm_genlist_block_count_set(Evas_Object *obj,
5278                             int          n)
5279 {
5280    ELM_CHECK_WIDTYPE(obj, widtype);
5281    Widget_Data *wd = elm_widget_data_get(obj);
5282    if (!wd) return;
5283    wd->max_items_per_block = n;
5284    wd->item_cache_max = wd->max_items_per_block * 2;
5285    _item_cache_clean(wd);
5286 }
5287
5288 /**
5289  * Get the maximum number of items within an item block
5290  *
5291  * @param obj The genlist object
5292  * @return Maximum number of items within an item block
5293  *
5294  * @ingroup Genlist
5295  */
5296 EAPI int
5297 elm_genlist_block_count_get(const Evas_Object *obj)
5298 {
5299    ELM_CHECK_WIDTYPE(obj, widtype) 0;
5300    Widget_Data *wd = elm_widget_data_get(obj);
5301    if (!wd) return 0;
5302    return wd->max_items_per_block;
5303 }
5304
5305 /**
5306  * Set the timeout in seconds for the longpress event
5307  *
5308  * @param obj The genlist object
5309  * @param timeout timeout in seconds
5310  *
5311  * @ingroup Genlist
5312  */
5313 EAPI void
5314 elm_genlist_longpress_timeout_set(Evas_Object *obj,
5315                                   double       timeout)
5316 {
5317    ELM_CHECK_WIDTYPE(obj, widtype);
5318    Widget_Data *wd = elm_widget_data_get(obj);
5319    if (!wd) return;
5320    wd->longpress_timeout = timeout;
5321 }
5322
5323 /**
5324  * Get the timeout in seconds for the longpress event
5325  *
5326  * @param obj The genlist object
5327  * @return timeout in seconds
5328  *
5329  * @ingroup Genlist
5330  */
5331 EAPI double
5332 elm_genlist_longpress_timeout_get(const Evas_Object *obj)
5333 {
5334    ELM_CHECK_WIDTYPE(obj, widtype) 0;
5335    Widget_Data *wd = elm_widget_data_get(obj);
5336    if (!wd) return 0;
5337    return wd->longpress_timeout;
5338 }
5339
5340 /**
5341  * Set the scrollbar policy
5342  *
5343  * This sets the scrollbar visibility policy for the given genlist
5344  * scroller. ELM_SMART_SCROLLER_POLICY_AUTO means the scrollbar is
5345  * made visible if it is needed, and otherwise kept hidden.
5346  * ELM_SMART_SCROLLER_POLICY_ON turns it on all the time, and
5347  * ELM_SMART_SCROLLER_POLICY_OFF always keeps it off. This applies
5348  * respectively for the horizontal and vertical scrollbars.
5349  *
5350  * @param obj The genlist object
5351  * @param policy_h Horizontal scrollbar policy
5352  * @param policy_v Vertical scrollbar policy
5353  *
5354  * @ingroup Genlist
5355  */
5356 EAPI void
5357 elm_genlist_scroller_policy_set(Evas_Object        *obj,
5358                                 Elm_Scroller_Policy policy_h,
5359                                 Elm_Scroller_Policy policy_v)
5360 {
5361    ELM_CHECK_WIDTYPE(obj, widtype);
5362    Widget_Data *wd = elm_widget_data_get(obj);
5363    if (!wd) return;
5364    if ((policy_h >= ELM_SCROLLER_POLICY_LAST) ||
5365        (policy_v >= ELM_SCROLLER_POLICY_LAST))
5366      return;
5367    if (wd->scr)
5368      elm_smart_scroller_policy_set(wd->scr, policy_h, policy_v);
5369 }
5370
5371 /**
5372  * Get the scrollbar policy
5373  *
5374  * @param obj The genlist object
5375  * @param policy_h Horizontal scrollbar policy
5376  * @param policy_v Vertical scrollbar policy
5377  *
5378  * @ingroup Genlist
5379  */
5380 EAPI void
5381 elm_genlist_scroller_policy_get(const Evas_Object   *obj,
5382                                 Elm_Scroller_Policy *policy_h,
5383                                 Elm_Scroller_Policy *policy_v)
5384 {
5385    ELM_CHECK_WIDTYPE(obj, widtype);
5386    Widget_Data *wd = elm_widget_data_get(obj);
5387    Elm_Smart_Scroller_Policy s_policy_h, s_policy_v;
5388    if ((!wd) || (!wd->scr)) return;
5389    elm_smart_scroller_policy_get(wd->scr, &s_policy_h, &s_policy_v);
5390    if (policy_h) *policy_h = (Elm_Scroller_Policy)s_policy_h;
5391    if (policy_v) *policy_v = (Elm_Scroller_Policy)s_policy_v;
5392 }
5393
5394 /****************************************************************************/
5395 /**
5396  * Set reorder mode
5397  *
5398  *
5399  * @param obj The genlist object
5400  * @param reorder_mode The reorder mode
5401  * (EINA_TRUE = on, EINA_FALSE = off)
5402  *
5403  * @ingroup Genlist
5404  */
5405 EAPI void
5406 elm_genlist_reorder_mode_set(Evas_Object *obj,
5407                              Eina_Bool    reorder_mode)
5408 {
5409    ELM_CHECK_WIDTYPE(obj, widtype);
5410    Widget_Data *wd = elm_widget_data_get(obj);
5411    if (!wd) return;
5412    wd->reorder_mode = reorder_mode;
5413 }
5414
5415 /**
5416  * Get the reorder mode
5417  *
5418  * @param obj The genlist object
5419  * @return The reorder mode
5420  * (EINA_TRUE = on, EINA_FALSE = off)
5421  *
5422  * @ingroup Genlist
5423  */
5424 EAPI Eina_Bool
5425 elm_genlist_reorder_mode_get(const Evas_Object *obj)
5426 {
5427    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5428    Widget_Data *wd = elm_widget_data_get(obj);
5429    if (!wd) return EINA_FALSE;
5430    return wd->reorder_mode;
5431 }
5432
5433 EAPI void
5434 elm_genlist_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after)
5435 {
5436    return;
5437 }
5438
5439 EAPI void
5440 elm_genlist_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before)
5441 {
5442    return;
5443 }
5444
5445 static void
5446 _effect_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after)
5447 {
5448    if (!it) return;
5449    if (!after) return;
5450
5451    if (it->wd->ed->ec->move)
5452       it->wd->ed->ec->move(it->base.widget, it, after, EINA_TRUE);
5453
5454 // printf("MOVE AFTER : %d  after = %d \n", (int)elm_genlist_item_data_get(it)+1, (int)elm_genlist_item_data_get(after)+1);
5455    it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
5456    it->wd->reorder_deleted = EINA_TRUE;
5457    _item_block_del(it);
5458
5459    it->wd->items = eina_inlist_append_relative(it->wd->items, EINA_INLIST_GET(it), EINA_INLIST_GET(after));
5460    it->rel = after;
5461    it->rel->relcount++;
5462    it->before = EINA_FALSE;
5463    _item_queue(it->wd, it);
5464 }
5465
5466 static void
5467 _effect_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before)
5468 {
5469    if (!it) return;
5470    if (!before) return;
5471
5472    if (it->wd->ed->ec->move)
5473       it->wd->ed->ec->move(it->base.widget, it, before, EINA_FALSE);
5474
5475 //   printf("MOVE BEFORE : %d  before = %d \n", (int)elm_genlist_item_data_get(it)+1, (int)elm_genlist_item_data_get(before)+1);
5476    it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
5477    it->wd->reorder_deleted = EINA_TRUE;
5478    _item_block_del(it);
5479    it->wd->items = eina_inlist_prepend_relative(it->wd->items, EINA_INLIST_GET(it), EINA_INLIST_GET(before));
5480    it->rel = before;
5481    it->rel->relcount++;
5482    it->before = EINA_TRUE;
5483    _item_queue(it->wd, it);
5484 }
5485
5486 EAPI void
5487 elm_genlist_effect_set(const Evas_Object *obj, Eina_Bool emode)
5488 {
5489    ELM_CHECK_WIDTYPE(obj, widtype);
5490    Widget_Data *wd = elm_widget_data_get(obj);
5491    if (!wd) return;
5492    wd->effect_mode = emode;
5493    //   wd->point_rect = evas_object_rectangle_add(evas_object_evas_get(wd->obj));
5494    //   evas_object_resize(wd->point_rect, 10, 25);
5495    //   evas_object_color_set(wd->point_rect, 255, 0, 0, 130);   
5496    //   evas_object_show(wd->point_rect);
5497    //   evas_object_hide(wd->point_rect);
5498 }
5499
5500 static Evas_Object*
5501 _create_tray_alpha_bg(const Evas_Object *obj)
5502 {
5503    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
5504    Widget_Data *wd = elm_widget_data_get(obj);
5505    if (!wd) return NULL;
5506
5507    Evas_Object *bg = NULL;
5508    Evas_Coord ox, oy, ow, oh;
5509
5510    evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
5511    bg  =  evas_object_rectangle_add(evas_object_evas_get(wd->obj));
5512    evas_object_color_set(bg,0,0,0,0);
5513    evas_object_resize(bg , ow, oh);
5514    evas_object_move(bg , ox, oy);
5515    evas_object_show(bg);
5516    evas_object_hide(bg);
5517    return bg ;
5518 }
5519
5520 static unsigned int
5521 current_time_get() 
5522 {
5523    struct timeval timev;
5524
5525    gettimeofday(&timev, NULL);
5526    return ((timev.tv_sec * 1000) + ((timev.tv_usec) / 1000));
5527 }
5528
5529 // added for item moving animation.
5530 static Eina_Bool
5531 _item_moving_effect_timer_cb(void *data)
5532 {
5533    Widget_Data *wd = data;
5534    if (!wd) return EINA_FALSE;
5535    Item_Block *itb;
5536    Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
5537    Elm_Genlist_Item *it, *it2;
5538    const Eina_List *l;
5539    double time = 0.4, t;
5540    int y, dy;
5541    Eina_Bool check, end = EINA_FALSE;
5542    //   static Eina_Bool first = EINA_TRUE;
5543    int in = 0;
5544
5545    t = ((0.0 > (t = current_time_get() - wd->start_time)) ? 0.0 : t) / 1000;
5546
5547    evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
5548    evas_output_viewport_get(evas_object_evas_get(wd->pan_smart), &cvx, &cvy, &cvw, &cvh);
5549    if (t > time) end = EINA_TRUE;
5550    EINA_INLIST_FOREACH(wd->blocks, itb)
5551      {
5552         itb->w = wd->minw;
5553         if (ELM_RECTS_INTERSECT(itb->x - wd->pan_x + ox,
5554                                 itb->y - wd->pan_y + oy,
5555                                 itb->w, itb->h,
5556                                 cvx, cvy, cvw, cvh))
5557           {
5558              EINA_LIST_FOREACH(itb->items, l, it)
5559                {
5560                   if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
5561                     {
5562                        it2 = it;
5563                        check = EINA_FALSE;
5564                        do {
5565                             if(it2->parent == wd->expand_item) check = EINA_TRUE;
5566                             it2 = it2->parent;
5567                        } while(it2);
5568                        if(check) continue;
5569                     }
5570                   dy = 0;
5571                   //printf(" s: %d %d ", oy, oh);
5572                   if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
5573                      dy = it->scrl_y - it->old_scrl_y;
5574                   else if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5575                     {
5576                        //                  printf("%d %d\n", it->old_scrl_y, wd->expand_item_end);
5577                        if(wd->expand_item_end < it->old_scrl_y)
5578                           dy = wd->expand_item_gap;
5579                     }
5580                   else if (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
5581                     {
5582                         if (wd->expand_item_end < it->old_scrl_y)
5583                           dy = wd->expand_item_gap;
5584                     }
5585                   if (t <= time)
5586                      y = (1 * sin((t / time) * (M_PI / 2)) * dy);
5587                   else
5588                     {
5589                        end = EINA_TRUE;
5590                        y = dy;
5591                     }
5592
5593                   if (!it->old_scrl_y)
5594                      it->old_scrl_y  = it->scrl_y;
5595
5596
5597                   if (it->old_scrl_y + y < oy + oh)
5598                     {
5599                        if (!it->realized) _item_realize(it, in, 0);
5600                     }
5601                   if (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE && it->old_scrl_y + y < it->scrl_y)
5602                      it->old_scrl_y = it->scrl_y - y;
5603                   in++;
5604
5605                  if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE ||
5606                        (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE && it->old_scrl_y + y >= it->scrl_y))
5607                    {
5608                       if (wd->edit_mode) _effect_item_controls(it, it->scrl_x, it->old_scrl_y + y);
5609                       else
5610                        {
5611                            evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
5612                            evas_object_move(it->base.view, it->scrl_x+it->pad_left, it->old_scrl_y + y);
5613                            evas_object_show(it->base.view);
5614                            evas_object_raise(it->base.view);
5615                        }
5616
5617                       if(wd->select_all_item) evas_object_raise(wd->select_all_item->base.view);
5618                       if (it->group_item) evas_object_raise(it->group_item->base.view);
5619                    }
5620
5621                   if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
5622                     {
5623                        it2 = elm_genlist_item_prev_get(it);
5624                        while(it2)
5625                          {
5626                             if((it2->scrl_y < it->old_scrl_y + y) && (it2->expanded_depth > it->expanded_depth))
5627                               {
5628                                  if(!it2->effect_done)
5629                                    {
5630                                       //edje_object_signal_emit(it2->base.view, "elm,state,expand_flip", "");
5631                                       evas_object_move(it2->base.view, it2->scrl_x, it2->scrl_y);
5632                                       evas_object_show(it2->base.view);
5633                                       it2->effect_done = EINA_TRUE;
5634                                    }
5635                                 // break;
5636                               }
5637                             it2 = elm_genlist_item_prev_get(it2);
5638                          }
5639                     }
5640                   else if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5641                     {
5642                        it2 = elm_genlist_item_prev_get(it);
5643                        while(it2)
5644                          {
5645                             if((it2->scrl_y > it->old_scrl_y + y) && (it2->expanded_depth > it->expanded_depth))
5646                               {
5647                                  if(!it2->effect_done)
5648                                    {
5649                                       edje_object_signal_emit(it2->base.view, "elm,state,hide", "");
5650                                       it2->effect_done = EINA_TRUE;
5651                                    }
5652                               }
5653                             else
5654                                break;
5655                             it2 = elm_genlist_item_prev_get(it2);
5656                          }
5657                     }
5658                }
5659           }
5660      }
5661    //   first = EINA_FALSE;
5662    //   printf("\n");
5663    if (end)
5664      {
5665         if (wd->item_moving_effect_timer)
5666           {
5667              if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5668                 _item_subitems_clear(wd->expand_item);
5669              EINA_INLIST_FOREACH(wd->blocks, itb)
5670                {
5671                   EINA_LIST_FOREACH(itb->items, l, it)
5672                     {
5673                        it->effect_done = EINA_TRUE;
5674                        it->list_expanded = 0;
5675                        it->old_scrl_y = it->scrl_y;
5676                     }
5677                }
5678           }
5679         //evas_render(evas_object_evas_get(wd->obj));
5680         wd->item_moving_effect_timer = NULL;
5681         //        first = EINA_TRUE;
5682
5683         _item_auto_scroll(wd);
5684         evas_object_lower(wd->alpha_bg);
5685         evas_object_hide(wd->alpha_bg);
5686         if (wd->calc_job) ecore_job_del(wd->calc_job);
5687         wd->calc_job = ecore_job_add(_calc_job, wd);      
5688         elm_smart_scroller_bounce_animator_disabled_set(wd->scr, EINA_FALSE);
5689         wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_NONE;
5690
5691         evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
5692         evas_object_smart_callback_call(wd->obj, "effect_done", NULL);
5693         return ECORE_CALLBACK_CANCEL;
5694      }
5695    return ECORE_CALLBACK_RENEW;
5696 }
5697
5698 static void
5699 _emit_contract(Elm_Genlist_Item *it)
5700 {
5701    Elm_Genlist_Item *it2;
5702    Eina_List *l;
5703
5704    //   printf("%p is emited contract\n", it);
5705    edje_object_signal_emit(it->base.view, "elm,state,contract_flip", "");
5706    it->effect_done = EINA_FALSE;
5707
5708    EINA_LIST_FOREACH(it->items, l, it2)
5709       if(it2)
5710          _emit_contract(it2);
5711 }
5712
5713 // added for item moving animation.
5714 static int
5715 _item_flip_effect_show(Elm_Genlist_Item *it)
5716 {
5717    Elm_Genlist_Item *it2;
5718    Eina_List *l;
5719    Widget_Data *wd = it->wd;
5720    Eina_Bool check = EINA_FALSE;
5721
5722    it2 = elm_genlist_item_next_get(it);
5723    while(it2)
5724      {
5725         if(it2->expanded_depth <= it->expanded_depth) check = EINA_TRUE;
5726         it2 = elm_genlist_item_next_get(it2);
5727      }
5728    EINA_LIST_FOREACH(it->items, l, it2)
5729      {
5730         if (it2->parent && it == it2->parent)
5731           {
5732              if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
5733                {
5734                   edje_object_signal_emit(it2->base.view, "flip_item", "");
5735                   if(check)
5736                      evas_object_move(it2->base.view, -9999, -9999);
5737                   else
5738                      evas_object_show(it2->base.view);
5739                }
5740              else if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5741                 _emit_contract(it2);
5742           }
5743      }
5744
5745    return ECORE_CALLBACK_CANCEL;
5746 }
5747
5748 /*
5749 static void
5750 _elm_genlist_pinch_zoom_execute(Evas_Object *obj, Eina_Bool emode)
5751 {
5752    printf("!!! NOW FIXING \n"); 
5753 }
5754 */
5755
5756 /**
5757  * Set pinch zoom mode
5758  * 
5759  * @param obj The genlist object
5760  * @param emode 
5761  * (EINA_TRUE = pinch contract (zoom in), EINA_FALSE = pinch expand (zoom out)
5762  * 
5763  * @ingroup Genlist
5764  */
5765 EAPI void
5766 elm_genlist_pinch_zoom_mode_set(Evas_Object *obj, Eina_Bool emode)
5767 {
5768    printf("!!! NOW FIXING \n"); 
5769 }
5770
5771 /**
5772  * Get pinch zoom mode
5773  * 
5774  * @param obj The genlist object
5775  * @return The pinch mode
5776  * (EINA_TRUE = pinch contract (zoom in), EINA_FALSE = pinch expand (zoom out)
5777  * 
5778  * @ingroup Genlist
5779  */
5780 EAPI Eina_Bool
5781 elm_genlist_pinch_zoom_mode_get(const Evas_Object *obj)
5782 {
5783    printf("!!! NOW FIXING \n"); 
5784    return EINA_FALSE;
5785 }
5786
5787 EAPI void
5788 elm_genlist_pinch_zoom_set(Evas_Object *obj, Eina_Bool emode)
5789 {
5790    printf("!!! NOW FIXING \n"); 
5791 }
5792
5793
5794 ////////////////////////////////////////////////////////////////////////
5795 //  EDIT  MODE 
5796 ////////////////////////////////////////////////////////////////////////
5797 EAPI void
5798 _effect_item_update(Elm_Genlist_Item *it)
5799 {
5800    if (it->edit_select_check) 
5801      {
5802         edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
5803      }
5804    else
5805      {
5806         edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
5807      }
5808 }
5809
5810 EAPI void
5811 _edit_item_checkbox_set(Elm_Genlist_Item  *it, Eina_Bool edit_select_check_state)
5812 {
5813    if (!it) return;
5814    if (edit_select_check_state)
5815      {
5816         it->edit_select_check = EINA_TRUE;
5817         edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
5818      }
5819    else         
5820      {
5821         it->edit_select_check = EINA_FALSE;
5822         edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
5823      }
5824    if (it->wd->ed && it->wd->ed->ec && it->wd->ed->ec->item_selected)
5825       it->wd->ed->ec->item_selected(it->base.data, it, it->edit_select_check);   
5826 }
5827
5828 EAPI void
5829 _edit_subitems_checkbox_set(Elm_Genlist_Item *it)
5830 {
5831    if (!it) return;
5832    Eina_List *tl = NULL, *l;
5833    Elm_Genlist_Item *it2;
5834
5835    EINA_LIST_FOREACH(it->items, l, it2)
5836       tl = eina_list_append(tl, it2);
5837    EINA_LIST_FREE(tl, it2)
5838       if(it2->parent) _edit_item_checkbox_set(it2, it2->parent->edit_select_check);
5839 }
5840
5841 EAPI void
5842 _edit_parent_items_checkbox_set(Elm_Genlist_Item  *it)
5843 {
5844    if (!it) return;
5845    Elm_Genlist_Item *tmp_it;
5846    Eina_Bool parent_check = EINA_TRUE;
5847
5848    EINA_INLIST_FOREACH(it->wd->items, tmp_it)
5849      {
5850         if (tmp_it->parent && it->parent)
5851            if(tmp_it->parent == it->parent && tmp_it->edit_select_check == EINA_FALSE) parent_check = EINA_FALSE;
5852      }
5853    if (it->parent)
5854      {
5855         if (parent_check) it->parent->edit_select_check = EINA_TRUE;
5856         else it->parent->edit_select_check = EINA_FALSE;
5857      }
5858
5859    if (it->parent)
5860      {
5861         _effect_item_update(it->parent);
5862         return _edit_parent_items_checkbox_set(it->parent);
5863      }
5864 }
5865
5866 static void
5867 _select_all_down_process(Elm_Genlist_Item *select_all_it, Eina_Bool checked, Eina_Bool update_items)
5868 {
5869    if (!select_all_it || !select_all_it->wd) return;
5870
5871    Eina_Bool old_check_state;
5872    Elm_Genlist_Item *it;
5873    Widget_Data *wd = select_all_it->wd;   
5874    
5875    wd->select_all_check = checked;
5876    if (wd->select_all_check) 
5877       edje_object_signal_emit(select_all_it->base.view, "elm,state,sel_check", "elm");
5878    else
5879       edje_object_signal_emit(select_all_it->base.view, "elm,state,sel_uncheck", "elm");
5880
5881    if (update_items)
5882      {
5883         EINA_INLIST_FOREACH(wd->items, it)
5884          {
5885             old_check_state = it->edit_select_check;
5886             if (wd->select_all_check) it->edit_select_check = EINA_TRUE;
5887             else it->edit_select_check = EINA_FALSE;
5888
5889         // TODO : check this
5890   //        if (old_check_state != it->edit_select_check && it->wd->ed && it->wd->ed->ec && it->wd->ed->ec->item_selected)
5891   //           it->wd->ed->ec->item_selected(it->base.data, it, it->edit_select_check);   
5892          }
5893      }
5894
5895    if (wd->ed->ec->item_selected)
5896       wd->ed->ec->item_selected(select_all_it->base.data, select_all_it, wd->select_all_check);
5897
5898    if (wd->calc_job) ecore_job_del(wd->calc_job);
5899    wd->calc_job = ecore_job_add(_calc_job, wd); 
5900 }
5901
5902 static void
5903 _checkbox_item_select_process(Elm_Genlist_Item *it)
5904 {
5905    Elm_Genlist_Item *tmp_it;
5906    Eina_Bool old_check_state;
5907    int check_cnt = 0, total_cnt = 0;
5908    if (!it) return;
5909
5910    _edit_item_checkbox_set(it, it->edit_select_check);
5911    _edit_subitems_checkbox_set(it);
5912    _edit_parent_items_checkbox_set(it);
5913
5914    if (it->wd->ed) it->wd->ed->del_item = it;
5915
5916    EINA_INLIST_FOREACH(it->wd->items, tmp_it)
5917      {
5918         if (tmp_it->edit_select_check) check_cnt++; 
5919         total_cnt++;
5920      }
5921
5922    if (it->wd->select_all_item) 
5923      {
5924         old_check_state = it->wd->select_all_check;
5925         if (check_cnt == total_cnt) it->wd->select_all_check = EINA_TRUE;
5926         else it->wd->select_all_check = EINA_FALSE;
5927
5928         if (check_cnt == total_cnt)
5929           { 
5930              it->wd->select_all_check = EINA_TRUE;
5931              edje_object_signal_emit(it->wd->select_all_item->base.view, "elm,state,sel_check", "elm");
5932           }
5933         else
5934           {
5935              it->wd->select_all_check = EINA_FALSE;
5936              edje_object_signal_emit(it->wd->select_all_item->base.view, "elm,state,sel_uncheck", "elm");
5937           }
5938      }
5939 }
5940
5941 static void
5942 _checkbox_item_select_cb(void *data, Evas_Object *obj, const char *emission, const char *source)
5943 {
5944    Elm_Genlist_Item *it = data;
5945    if (!it) return;
5946    it->edit_select_check = !it->edit_select_check;
5947    _checkbox_item_select_process(it);
5948 }
5949
5950 static void
5951 _select_all_down(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
5952 {
5953    Elm_Genlist_Item *select_all_it = data;
5954    Widget_Data *wd = select_all_it->wd;
5955    if (!wd) return;
5956
5957    _select_all_down_process(select_all_it, !wd->select_all_check, EINA_TRUE);
5958 }
5959
5960
5961 static void
5962 _effect_item_controls(Elm_Genlist_Item *it, int itx, int ity)
5963 {
5964    if (it->wd->edit_mode == ELM_GENLIST_EDIT_MODE_NONE)
5965       return;
5966    evas_object_resize(it->edit_obj,it->w, it->h);
5967    evas_object_move(it->edit_obj, itx, ity);
5968
5969    if (it->wd->select_all_check)
5970       it->edit_select_check = EINA_TRUE;
5971    if (!it->renamed)
5972      {
5973         if (it->edit_select_check)
5974           {
5975              edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
5976           }
5977         else
5978           {
5979              edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
5980           }
5981      }
5982 }
5983
5984 static void
5985 _effect_item_realize(Elm_Genlist_Item *it, Eina_Bool effect_on)
5986 {
5987    if ((it->effect_item_realized) || (it->delete_me)) return;
5988    int itmode = 0, pad = 0;
5989    const char *pad_str;
5990    char buf[1024];
5991    it->pad_left = it->pad_right = 0;
5992
5993    if (it->itc->func.editmode_get)
5994       itmode = it->itc->func.editmode_get(it->base.data, it->base.widget, it->wd->edit_mode);
5995    itmode &= it->wd->edit_mode;
5996
5997    if (itmode & ELM_GENLIST_EDIT_MODE_SELECTALL)
5998       itmode |= ELM_GENLIST_EDIT_MODE_SELECT;
5999
6000    it->edit_obj = edje_object_add(evas_object_evas_get(it->base.widget));
6001    edje_object_scale_set(it->edit_obj, elm_widget_scale_get(it->base.widget) *
6002                          _elm_config->scale);
6003    evas_object_smart_member_add(it->edit_obj, it->wd->pan_smart);
6004    elm_widget_sub_object_add(it->base.widget, it->edit_obj);
6005
6006    if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) strncpy(buf, "tree", sizeof(buf));
6007    else strncpy(buf, "item", sizeof(buf));
6008    if (it->wd->compress) strncat(buf, "_compress", sizeof(buf) - strlen(buf));
6009
6010    strncat(buf, "/", sizeof(buf) - strlen(buf));
6011
6012    if (it->wd->ed && it->wd->ed->ec->item_style && strcmp(it->wd->ed->ec->item_style, "default")) 
6013      {
6014         strncat(buf, it->wd->ed->ec->item_style, sizeof(buf) - strlen(buf));
6015         _elm_theme_object_set(it->base.widget, it->edit_obj, "genlist", buf, elm_widget_style_get(it->base.widget));
6016      }
6017    else
6018      {
6019         _elm_theme_object_set(it->base.widget, it->edit_obj, "genlist", "item/edit_control", elm_widget_style_get(it->base.widget));
6020      }
6021
6022    pad_str = edje_object_data_get(it->edit_obj, "icon_width");
6023    if (pad_str) pad = atoi(pad_str);
6024
6025    if ((itmode & ELM_GENLIST_EDIT_MODE_DELETE) || (itmode & ELM_GENLIST_EDIT_MODE_SELECT))
6026      {
6027         if (effect_on) edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable_effect", "elm");
6028         else edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable", "elm");
6029
6030         edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
6031         edje_object_signal_callback_del(it->edit_obj, "elm,action,item,select",
6032                                         "elm", _checkbox_item_select_cb);
6033
6034         edje_object_signal_callback_add(it->edit_obj, "elm,action,item,select",
6035                                         "elm", _checkbox_item_select_cb, it);
6036         it->pad_left += pad * _elm_config->scale;
6037      }
6038    else
6039      {
6040         edje_object_signal_emit(it->edit_obj, "elm,state,sel,disable", "elm");
6041
6042         edje_object_signal_callback_del(it->edit_obj, "elm,action,item,select",
6043                                         "elm", _checkbox_item_select_cb);
6044      }
6045
6046    if (effect_on && itmode & ELM_GENLIST_EDIT_MODE_REORDER)
6047      {
6048         edje_object_signal_emit(it->edit_obj, "elm,state,reorder_enable_effect", "elm");
6049         edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable", "elm");
6050      }
6051    else if (itmode & ELM_GENLIST_EDIT_MODE_REORDER)
6052         edje_object_signal_emit(it->edit_obj, "elm,state,reorder_enable", "elm");
6053
6054    if ((it->wd->edit_mode) || (!it->wd->edit_mode && it->renamed))
6055      {
6056         if (it->itc->func.icon_get)
6057           {
6058              const Eina_List *l;
6059              const char *key;
6060
6061              it->icons = elm_widget_stringlist_get(edje_object_data_get(it->edit_obj, "icons"));
6062              EINA_LIST_FOREACH(it->icons, l, key)
6063                {
6064                   Evas_Object *ic = it->itc->func.icon_get
6065                      (it->base.data, it->base.widget, l->data);
6066
6067                   if (ic)
6068                     {
6069                        it->edit_icon_objs = eina_list_append(it->edit_icon_objs, ic);
6070                        edje_object_part_swallow(it->edit_obj, key, ic);
6071                        evas_object_show(ic);
6072                        elm_widget_sub_object_add(it->base.widget, ic);
6073                     }
6074                }
6075           }             
6076      }
6077    edje_object_part_swallow(it->edit_obj, "original_edc", it->base.view);
6078    _effect_item_controls(it,it->scrl_x, it->scrl_y);
6079    evas_object_show(it->edit_obj);
6080
6081    it->effect_item_realized = EINA_TRUE;
6082    it->want_unrealize = EINA_FALSE;
6083 }
6084
6085 static void
6086 _effect_item_unrealize(Elm_Genlist_Item *it)
6087 {
6088    Evas_Object *icon;
6089
6090    if (!it->effect_item_realized) return;
6091    if (it->wd->reorder_it && it->wd->reorder_it == it) return;
6092
6093    it->pad_left = it->pad_right = 0;
6094    edje_object_signal_emit(it->edit_obj, "elm,state,reorder_disable_effect", "elm");
6095    edje_object_signal_emit(it->edit_obj, "elm,state,sel,disable", "elm");
6096    edje_object_message_signal_process(it->edit_obj);
6097    edje_object_part_unswallow(it->edit_obj, it->base.view);
6098    evas_object_smart_member_add(it->base.view, it->wd->pan_smart);
6099    elm_widget_sub_object_add(it->base.widget, it->base.view);
6100    //   evas_object_smart_callback_call(it->edit_obj, "unrealized", it);
6101    //   _item_cache_add(it);
6102    evas_object_del(it->edit_obj);
6103    it->edit_obj = NULL;
6104    EINA_LIST_FREE(it->edit_icon_objs, icon)
6105       evas_object_del(icon);
6106
6107 //   edje_object_signal_emit(it->edit_obj, "elm,state,edit_end,disable", "elm");
6108    it->effect_item_realized = EINA_FALSE;
6109 }
6110
6111 EAPI void
6112 elm_genlist_set_edit_mode(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *edit_class)
6113 {
6114    fprintf(stderr, "=================> Caution!!! <========================\n");
6115    fprintf(stderr, "==> elm_genlist_set_edit_mode() is deprecated. <=======\n");
6116    fprintf(stderr, "==> Please use elm_genlist_edit_mode_set() instead. <==\n");
6117    fprintf(stderr, "=======================================================\n");
6118
6119    elm_genlist_edit_mode_set(obj, emode, edit_class);
6120 }
6121
6122 /**
6123  * Set Genlist edit mode
6124  *
6125  * This sets Genlist edit mode.
6126  *
6127  * @param obj The Genlist object
6128  * @param emode ELM_GENLIST_EDIT_MODE_{NONE & REORDER & INSERT & DELETE & SELECT & SELECT_ALL}
6129  * @param edit_class Genlist edit class (Elm_Genlist_Edit_Class structure)
6130  *
6131  * @ingroup Genlist
6132  */
6133 EAPI void
6134 elm_genlist_edit_mode_set(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *edit_class)
6135 {
6136    ELM_CHECK_WIDTYPE(obj, widtype);
6137
6138    Item_Block *itb;
6139    Eina_Bool done = EINA_FALSE;
6140    static Elm_Genlist_Item_Class itc;
6141    Eina_List *l;
6142    Elm_Genlist_Item *it;
6143
6144    Widget_Data *wd = elm_widget_data_get(obj);
6145    if (!wd) return;
6146    if (wd->edit_mode == emode) return;
6147
6148    wd->edit_mode = emode;
6149
6150    if (wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECTALL)
6151       wd->edit_mode |= ELM_GENLIST_EDIT_MODE_SELECT;
6152
6153
6154    if (wd->edit_mode == ELM_GENLIST_EDIT_MODE_NONE)
6155      {
6156         EINA_INLIST_FOREACH(wd->blocks, itb)
6157           {
6158              if (itb->realized)
6159                {
6160                   done = 1;
6161                   EINA_LIST_FOREACH(itb->items, l, it)
6162                     {
6163                        if (it->flags != ELM_GENLIST_ITEM_GROUP && it->realized)  
6164                          {
6165                             it->pad_left = it->pad_right = 0;
6166                             _effect_item_unrealize(it);
6167                          }
6168                     }
6169                }
6170              else
6171                {
6172                   if (done) break;
6173                }
6174           }
6175
6176         EINA_INLIST_FOREACH(wd->items, it)
6177          {
6178             it->edit_select_check = EINA_FALSE;
6179          }
6180         if (wd->ed) free (wd->ed);
6181         wd->ed = NULL;
6182         wd->reorder_mode = EINA_FALSE;
6183         if (wd->select_all_item)
6184           {
6185              wd->select_all_check = EINA_FALSE;
6186              edje_object_signal_callback_del(wd->select_all_item->base.view, "elm,action,select,click", "elm", _select_all_down);
6187              elm_widget_item_pre_notify_del(wd->select_all_item);
6188              _item_unrealize(wd->select_all_item);
6189              elm_widget_item_del(wd->select_all_item);
6190           }
6191         wd->select_all_item = NULL;
6192         if (wd->edit_field)
6193            {
6194              Evas_Object *editfield;
6195              EINA_LIST_FREE(wd->edit_field, editfield)
6196                evas_object_del(editfield);
6197              wd->edit_field = NULL;
6198           }
6199         _item_cache_zero(wd);
6200      }
6201    else
6202      {
6203         if (wd->edit_mode & ELM_GENLIST_EDIT_MODE_REORDER)
6204            wd->reorder_mode = EINA_TRUE;
6205
6206         if (!wd->ed)
6207            wd->ed = calloc(1, sizeof(Edit_Data));
6208
6209         wd->ed->ec = edit_class;
6210
6211         EINA_INLIST_FOREACH(wd->blocks, itb)
6212           {
6213              if (itb->realized)
6214                {
6215                   done = 1;
6216                   EINA_LIST_FOREACH(itb->items, l, it)
6217                     {
6218                        if (it->flags != ELM_GENLIST_ITEM_GROUP && it->realized)
6219                          {
6220                             if(it->selected) _item_unselect(it);
6221                             _effect_item_realize(it, EINA_TRUE);
6222                          }
6223                     }
6224                }
6225              else
6226                {
6227                   if (done) break;
6228                }
6229           }
6230
6231         if (wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECTALL)
6232           {
6233              if (edit_class->select_all_item_style && strcmp(edit_class->select_all_item_style, "default"))
6234                 itc.item_style = edit_class->select_all_item_style;
6235              else
6236                 itc.item_style = "select_all";
6237              itc.func.label_get = NULL;
6238              itc.func.icon_get = NULL;
6239              itc.func.del = NULL;
6240              itc.func.editmode_get = NULL;
6241              wd->select_all_item = _item_new(wd, &itc, (void *)(edit_class->select_all_data), NULL, ELM_GENLIST_ITEM_NONE, NULL, NULL);
6242
6243              if (!wd) return;
6244              if (!wd->select_all_item) return;
6245
6246              _item_realize(wd->select_all_item, 0, 0);
6247              edje_object_signal_callback_add(wd->select_all_item->base.view, "elm,action,select,click", "elm", _select_all_down, wd->select_all_item);
6248
6249              wd->select_all_item->rel = NULL;
6250              wd->select_all_item->block = NULL;
6251           }
6252      }
6253
6254    if (wd->calc_job) ecore_job_del(wd->calc_job);
6255    wd->calc_job = ecore_job_add(_calc_job, wd);
6256 }
6257
6258 /**
6259  * Delete selected items in genlist edit mode.
6260  *
6261  * @param obj The genlist object
6262  *
6263  * @ingroup Genlist
6264  */
6265 EAPI void
6266 elm_genlist_edit_selected_items_del(Evas_Object *obj)
6267 {
6268    ELM_CHECK_WIDTYPE(obj, widtype);
6269    Widget_Data *wd = elm_widget_data_get(obj);
6270    if (!wd) return;
6271    if (!wd->blocks) return;
6272    Elm_Genlist_Item *it;
6273    Eina_List *edit_selected_list, *l;
6274    int cnt = 0;
6275    Item_Block *itb;
6276
6277    Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
6278    int vis = 0;
6279
6280    evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
6281    evas_output_viewport_get(evas_object_evas_get(wd->obj), &cvx, &cvy,&cvw, &cvh);
6282    EINA_INLIST_FOREACH(wd->blocks, itb)
6283      {
6284       if (ELM_RECTS_INTERSECT(itb->x - wd->pan_x + ox,
6285                               itb->y - wd->pan_y + oy,
6286                               itb->w, itb->h,
6287                               cvx, cvy, cvw, cvh))
6288          EINA_LIST_FOREACH(itb->items, l, it)
6289            {
6290               it->old_scrl_y  =itb->y + it->y - it->wd->pan_y + oy;
6291            }
6292      }
6293    edit_selected_list = elm_genlist_edit_selected_items_get(obj);
6294    cnt = eina_list_count(edit_selected_list);
6295    //   printf("elm_genlist_edit_selected_items_del items selected counts = %d \n",  cnt);
6296
6297    wd->expand_item_gap = wd->expand_item_end = 0;
6298    EINA_LIST_FOREACH(edit_selected_list, l, it)
6299      {
6300         if (it->flags != ELM_GENLIST_ITEM_GROUP) 
6301           {
6302              it->wd->expand_item_gap += it->h * -1;
6303              vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
6304                                         cvx, cvy, cvw, cvh));
6305               if (!it->wd->expand_item_end && vis ) it->wd->expand_item_end = it->old_scrl_y;
6306               it->wd->expand_item = elm_genlist_item_prev_get(it);
6307               elm_genlist_item_del(it);
6308            }
6309      }
6310    wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE;
6311    eina_list_free(edit_selected_list);
6312
6313    evas_render(evas_object_evas_get(wd->obj));
6314    if (wd->calc_job) ecore_job_del(wd->calc_job);
6315    wd->calc_job = ecore_job_add(_calc_job, wd); 
6316 }
6317
6318 EAPI void
6319 elm_genlist_selected_items_del(Evas_Object *obj)
6320 {
6321    fprintf(stderr, "=================> Caution!!! <========================\n");
6322    fprintf(stderr, "==> elm_genlist_selected_items_del() is deprecated. <=======\n");
6323    fprintf(stderr, "==> Please use elm_genlist_edit_selected_items_del() instead. <==\n");
6324    fprintf(stderr, "=======================================================\n");
6325    elm_genlist_edit_selected_items_del(obj);
6326 }
6327
6328 /**
6329  * Get a list of selected items in genlist
6330  *
6331  * This returns a list of the selected items in the genlist. The list
6332  * contains Elm_Genlist_Item pointers. The list must be freed by the
6333  * caller when done with eina_list_free(). The item pointers in the list
6334  * are only vallid so long as those items are not deleted or the genlist is
6335  * not deleted.
6336  *
6337  * @param obj The genlist object
6338  * @return The list of selected items, nor NULL if none are selected.
6339  *
6340  * @ingroup Genlist
6341  */
6342 EAPI Eina_List *
6343 elm_genlist_edit_selected_items_get(const Evas_Object *obj)
6344 {
6345    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
6346    Widget_Data *wd = elm_widget_data_get(obj);
6347    Eina_List *list = NULL;
6348    Elm_Genlist_Item *it;
6349    if (!wd) return NULL;
6350
6351    EINA_INLIST_FOREACH(wd->items, it)
6352      {
6353         if (it->edit_select_check && it->flags != ELM_GENLIST_ITEM_GROUP) list = eina_list_append(list, it);
6354      }
6355
6356    return list;
6357 }
6358
6359 // TODO : add comment
6360 EAPI void
6361 elm_genlist_edit_item_selected_set(Elm_Genlist_Item *it,
6362                                    Eina_Bool         selected)
6363 {
6364    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
6365    Widget_Data *wd = elm_widget_data_get(it->base.widget);
6366    if (!wd) return;
6367    selected = !!selected;
6368    if (it->edit_select_check == selected) return;
6369
6370    it->edit_select_check = selected;
6371    _checkbox_item_select_process(it);
6372 }
6373
6374 // TODO : add comment                              
6375 EAPI const Eina_Bool
6376 elm_genlist_edit_item_selected_get(const Elm_Genlist_Item *it)
6377 {
6378    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
6379    return it->edit_select_check;
6380 }
6381
6382 /**
6383  * Set a given item's rename mode
6384  *
6385  * This renames the item's label from genlist 
6386  *
6387  * @param it The item
6388  * @param emode set if emode is EINA_TRUE, unset if emode is EINA_FALSE
6389  *
6390  * @ingroup Genlist
6391  */
6392 EAPI Evas_Object *
6393 elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, int emode)
6394 {
6395    if (!it) return NULL;
6396    if (it->wd->queue_idler) return NULL;
6397
6398    const Eina_List *l, *list, *l2;
6399    const char *label, *rename_swallow_part;
6400    char *s;
6401    Eina_Bool done = EINA_FALSE;
6402    int label_cnt = 0 , swallow_part_cnt = 0;
6403
6404    Item_Block *itb;
6405    Evas_Object *editfield;
6406    Evas_Object *entry = NULL;
6407    int edit_field_cnt = 0;
6408
6409    EINA_INLIST_FOREACH(it->wd->blocks, itb)
6410      {
6411         if (itb->realized)
6412           {
6413              Eina_List *l;
6414              Elm_Genlist_Item *it;
6415
6416              EINA_LIST_FOREACH(itb->items, l, it)
6417                {
6418                   if (it->renamed)
6419                     {
6420                        it->renamed = EINA_FALSE;
6421                        if (it->selected)  _item_unselect(it);
6422                        EINA_LIST_FOREACH(it->wd->edit_field, l2, editfield)
6423                          {
6424                             entry = elm_editfield_entry_get(editfield);
6425                             const char *text = elm_entry_entry_get(entry);
6426                            if (it->itc->func.label_changed)
6427                                it->itc->func.label_changed(it->base.data, it, text, edit_field_cnt++);
6428                          }
6429                        EINA_LIST_FREE(it->wd->edit_field, editfield) 
6430                          evas_object_del(editfield);
6431                        it->wd->edit_field = NULL;
6432
6433                        if (it->wd->edit_mode)
6434                          {
6435                             edje_object_signal_emit(it->edit_obj, "elm,state,edit_end,enable", "elm");
6436                             edje_object_signal_emit(it->edit_obj, "elm,state,rename,disable", "elm");  
6437                             if (it->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECT)
6438                                edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
6439                          }
6440
6441                        if(!it->wd->edit_mode) _effect_item_unrealize(it);
6442                        done = EINA_TRUE;
6443                     }
6444                }
6445           }
6446         else
6447           {
6448              if (done) break;
6449           }
6450      }
6451
6452    if (emode) 
6453      {
6454         it->renamed = EINA_TRUE;
6455         if (it->wd->edit_mode == ELM_GENLIST_EDIT_MODE_NONE)
6456           {
6457              it->wd->edit_mode = 0xF0;
6458              _effect_item_realize(it, EINA_TRUE);
6459              it->wd->edit_mode = ELM_GENLIST_EDIT_MODE_NONE;
6460           }        
6461
6462         edje_object_signal_emit(it->edit_obj, "elm,state,rename,enable", "elm");
6463         EINA_LIST_FOREACH(it->labels, list, label)
6464           {
6465              if (it->itc->func.label_get)
6466                {
6467                   swallow_part_cnt = 0;
6468
6469                   Eina_List *rename = elm_widget_stringlist_get(edje_object_data_get(it->edit_obj, "rename"));
6470                   EINA_LIST_FOREACH(rename, l, rename_swallow_part)
6471                     {
6472                        if (label_cnt == swallow_part_cnt)
6473                          {
6474                             editfield = elm_editfield_add(it->base.widget);
6475                             it->wd->edit_field = eina_list_append(it->wd->edit_field, editfield);
6476
6477                             elm_editfield_entry_single_line_set(editfield, EINA_TRUE);  
6478                             elm_editfield_eraser_set(editfield, EINA_TRUE);
6479                             edje_object_part_swallow(it->edit_obj, rename_swallow_part, editfield);
6480                             elm_widget_sub_object_add(it->edit_obj, editfield);
6481
6482                             evas_object_show(editfield);
6483
6484                             s = it->itc->func.label_get((void *)it->base.data, it->base.widget, list->data);
6485                             if (s)
6486                               {
6487                                  entry = elm_editfield_entry_get(editfield);
6488                                  elm_entry_entry_set(entry,s);
6489                                  elm_entry_cursor_end_set(entry);
6490                                  free(s);
6491                               }
6492                             else
6493                                elm_editfield_guide_text_set(editfield, "Text Input");
6494                          }
6495                        swallow_part_cnt++;
6496                     }
6497                   label_cnt++;
6498                }
6499           }
6500         elm_widget_focused_object_clear(elm_widget_focused_object_get(it->wd->obj));
6501         elm_widget_focus_set(editfield, EINA_TRUE);
6502      }
6503      
6504    return entry;
6505 }
6506
6507 static void _sweep_finish(void *data, Evas_Object *o, const char *emission, const char *source)
6508 {
6509    Elm_Genlist_Item *it = data;
6510
6511    _delete_sweep_objs(it);
6512 }
6513
6514 static Eina_Bool
6515 _scr_hold_timer_cb(void *data)
6516 {
6517    Elm_Genlist_Item *it = data;
6518    elm_smart_scroller_hold_set(it->wd->scr, EINA_FALSE);
6519    it->wd->scr_hold_timer = NULL;
6520    return ECORE_CALLBACK_CANCEL;
6521 }
6522
6523 static void
6524 _delete_sweep_objs(Elm_Genlist_Item *it)
6525 {
6526    Evas_Object *ic;
6527
6528    elm_widget_stringlist_free(it->sweep_labels);
6529    it->sweep_labels = NULL;
6530    elm_widget_stringlist_free(it->sweep_icons);
6531    it->sweep_icons = NULL;
6532    EINA_LIST_FREE(it->sweep_icon_objs, ic)
6533       evas_object_del(ic);
6534 }
6535
6536 static void
6537 _create_sweep_objs(Elm_Genlist_Item *it)
6538 {
6539    Evas_Object *ic;
6540    const Eina_List *l;
6541    const char *key;
6542
6543    if (it->itc->func.label_get)
6544      {
6545         it->sweep_labels =
6546            elm_widget_stringlist_get(edje_object_data_get(it->base.view,
6547                                                           "sweep_labels"));
6548         EINA_LIST_FOREACH(it->sweep_labels, l, key)
6549           {
6550              char *s = it->itc->func.label_get
6551                 ((void *)it->base.data, it->base.widget, l->data);
6552
6553              if (s)
6554                {
6555                   edje_object_part_text_set(it->base.view, l->data, s);
6556                   free(s);
6557                }
6558           }
6559      }
6560    if (it->itc->func.icon_get)
6561      {
6562         it->sweep_icons =
6563            elm_widget_stringlist_get(edje_object_data_get(it->base.view,
6564                                                           "sweep_icons"));
6565         EINA_LIST_FOREACH(it->sweep_icons, l, key)
6566           {
6567              ic = it->itc->func.icon_get
6568                 ((void *)it->base.data, it->base.widget, l->data);
6569
6570              if (ic)
6571                {
6572                   it->sweep_icon_objs = eina_list_append(it->sweep_icon_objs, ic);
6573                   edje_object_part_swallow(it->base.view, key, ic);
6574                   evas_object_show(ic);
6575                   elm_widget_sub_object_add(it->base.widget, ic);
6576                }
6577           }
6578      }
6579 }
6580
6581 static void
6582 _item_slide(Elm_Genlist_Item *it, Eina_Bool slide_to_right)
6583 {
6584    const Eina_List *l;
6585    Elm_Genlist_Item *it2;
6586    const char *allow_slide;
6587
6588    allow_slide = edje_object_data_get(it->base.view, "allow_slide");
6589    if ((!allow_slide) || (atoi(allow_slide) != 1))
6590       return;
6591
6592    if (slide_to_right)
6593      {
6594         if (it->sweeped) return;
6595         if (it->wd->scr_hold_timer)
6596           {
6597              ecore_timer_del(it->wd->scr_hold_timer);
6598              it->wd->scr_hold_timer = NULL;
6599           }
6600         elm_smart_scroller_hold_set(it->wd->scr, EINA_TRUE);
6601         it->wd->scr_hold_timer = ecore_timer_add(0.1, _scr_hold_timer_cb, it);
6602
6603         _delete_sweep_objs(it);
6604         _create_sweep_objs(it);
6605         edje_object_signal_emit(it->base.view, "elm,state,slide,right", "elm");
6606         it->wd->sweeped_items = eina_list_append(it->wd->sweeped_items, it);
6607         it->wassweeped = EINA_TRUE;
6608         it->sweeped = EINA_TRUE;
6609
6610         EINA_LIST_FOREACH(it->wd->sweeped_items, l, it2)
6611           {
6612              if (it2 != it)
6613                {
6614                   it2->sweeped = EINA_FALSE;
6615                   edje_object_signal_emit(it2->base.view, "elm,state,slide,left", "elm");
6616                   edje_object_signal_callback_add(it2->base.view, "elm,action,sweep,left,finish", "elm", _sweep_finish, it2);
6617                   it2->wd->sweeped_items = eina_list_remove(it2->wd->sweeped_items, it2);
6618                }
6619           }
6620      }
6621    else
6622      {
6623         if (!it->sweeped) return;
6624         edje_object_signal_emit(it->base.view, "elm,state,slide,left", "elm");
6625         edje_object_signal_callback_add(it->base.view, "elm,action,sweep,left,finish", "elm", _sweep_finish, it);
6626         it->wd->sweeped_items = eina_list_remove(it->wd->sweeped_items, it);
6627         it->sweeped = EINA_FALSE;
6628      }
6629 }
6630
6631 static void
6632 _item_auto_scroll(void *data)
6633 {
6634    Widget_Data *wd = data;
6635    if (!wd) return;
6636    
6637    if ((wd->expand_item) && (!wd->auto_scrolled)) 
6638      {
6639         Elm_Genlist_Item  *it;
6640         Eina_List *l;
6641         Evas_Coord ox, oy, ow, oh;
6642         evas_object_geometry_get(wd->obj, &ox, &oy, &ow, &oh);
6643         
6644         wd->auto_scrolled = EINA_TRUE;
6645         if (wd->expand_item->scrl_y > (oh + oy) / 2)
6646           {
6647             EINA_LIST_FOREACH(wd->expand_item->items, l, it)
6648               {
6649                  elm_genlist_item_bring_in(it);
6650               }
6651          }
6652      }
6653 }