elm gengrid: Removed elm_gengrid_item_update() from elm_gengrid_item_data_set()....
[framework/uifw/elementary.git] / src / lib / elm_gengrid.c
1 #include <Elementary.h>
2 #include <Elementary_Cursor.h>
3 #include "elm_priv.h"
4
5 /**
6  * @defgroup Gengrid Gengrid
7  *
8  * This widget aims to position objects in a grid layout while
9  * actually building only the visible ones, using the same idea as
10  * genlist: the user define a class for each item, specifying
11  * functions that will be called at object creation and deletion.
12  *
13  * A item in the Gengrid can have 0 or more text labels (they can be
14  * regular text or textblock - that's up to the style to determine), 0
15  * or more icons (which are simply objects swallowed into the Gengrid
16  * item) and 0 or more boolean states that can be used for check,
17  * radio or other indicators by the edje theme style.  A item may be
18  * one of several styles (Elementary provides 1 by default -
19  * "default", but this can be extended by system or application custom
20  * themes/overlays/extensions).
21  *
22  * In order to implement the ability to add and delete items on the
23  * fly, Gengrid implements a class/callback system where the
24  * application provides a structure with information about that type
25  * of item (Gengrid may contain multiple different items with
26  * different classes, states and styles). Gengrid will call the
27  * functions in this struct (methods) when an item is "realized" (that
28  * is created dynamically while scrolling). All objects will simply be
29  * deleted when no longer needed with evas_object_del(). The
30  * Elm_GenGrid_Item_Class structure contains the following members:
31  *
32  * item_style - This is a constant string and simply defines the name
33  * of the item style. It must be specified and the default should be
34  * "default".
35  *
36  * func.label_get - This function is called when an actual item object
37  * is created. The data parameter is the one passed to
38  * elm_gengrid_item_append() and related item creation functions. The
39  * obj parameter is the Gengrid object and the part parameter is the
40  * string name of the text part in the edje design that is listed as
41  * one of the possible labels that can be set. This function must
42  * return a strdup'()ed string as the caller will free() it when done.
43  *
44  * func.icon_get - This function is called when an actual item object
45  * is created. The data parameter is the one passed to
46  * elm_gengrid_item_append() and related item creation functions. The
47  * obj parameter is the Gengrid object and the part parameter is the
48  * string name of the icon part in the edje design that is listed as
49  * one of the possible icons that can be set. This must return NULL
50  * for no object or a valid object. The object will be deleted by
51  * Gengrid on shutdown or when the item is unrealized.
52  *
53  * func.state_get - This function is called when an actual item object
54  * is created. The data parameter is the one passed to
55  * elm_gengrid_item_append() and related item creation functions. The
56  * obj parameter is the Gengrid object and the part parameter is the
57  * string name of th state part in the edje design that is listed as
58  * one of the possible states that can be set. Return 0 for false and
59  * 1 for true. Gengrid will emit a signal to the edje object with
60  * "elm,state,XXX,active" "elm" when true (the default is false),
61  * where XXX is the name of the part.
62  *
63  * func.del - This is called when elm_gengrid_item_del() is called on
64  * an item or elm_gengrid_clear() is called on the Gengrid. This is
65  * intended for use when actual Gengrid items are deleted, so any
66  * backing data attached to the item (e.g. its data parameter on
67  * creation) can be deleted.
68  *
69  * If the application wants multiple items to be able to be selected,
70  * elm_gengrid_multi_select_set() can enable this. If the Gengrid is
71  * single-selection only (the default), then
72  * elm_gengrid_select_item_get() will return the selected item, if
73  * any, or NULL if none is selected. If the Gengrid is multi-select
74  * then elm_gengrid_selected_items_get() will return a list (that is
75  * only valid as long as no items are modified (added, deleted,
76  * selected or unselected).
77  *
78  * If an item changes (state of boolean changes, label or icons
79  * change), then use elm_gengrid_item_update() to have Gengrid update
80  * the item with the new state. Gengrid will re-realize the item thus
81  * call the functions in the _Elm_Gengrid_Item_Class for that item.
82  *
83  * To programmatically (un)select an item use
84  * elm_gengrid_item_selected_set().  To get its selected state use
85  * elm_gengrid_item_selected_get(). To make an item disabled (unable to
86  * be selected and appear differently) use
87  * elm_gengrid_item_disabled_set() to set this and
88  * elm_gengrid_item_disabled_get() to get the disabled state.
89  *
90  * Cells will only call their selection func and callback when first
91  * becoming selected. Any further clicks will do nothing, unless you
92  * enable always select with
93  * elm_gengrid_always_select_mode_set(). This means event if selected,
94  * every click will make the selected callbacks be called.
95  * elm_gengrid_no_select_mode_set() will turn off the ability to
96  * select items entirely and they will neither appear selected nor
97  * call selected callback function.
98  *
99  * Remember that you can create new styles and add your own theme
100  * augmentation per application with elm_theme_extension_add(). If you
101  * absolutely must have a specific style that overrides any theme the
102  * user or system sets up you can use elm_theme_overlay_add() to add
103  * such a file.
104  *
105  * Signals that you can add callbacks for are:
106  *
107  * "clicked,double" - The user has double-clicked or pressed enter on
108  *                    an item. The event_infoparameter is the Gengrid item
109  *                    that was double-clicked.
110  * "selected" - The user has made an item selected. The event_info
111  *              parameter is the Gengrid item that was selected.
112  * "unselected" - The user has made an item unselected. The event_info
113  *                parameter is the Gengrid item that was unselected.
114  * "realized" - This is called when the item in the Gengrid is created
115  *              as a real evas object. event_info is the Gengrid item that was
116  *              created. The object may be deleted at any time, so it is up to
117  *              the caller to not use the object pointer from
118  *              elm_gengrid_item_object_get() in a way where it may point to
119  *              freed objects.
120  * "unrealized" - This is called when the real evas object for this item
121  *                is deleted. event_info is the Gengrid item that was created.
122  * "changed" - Called when an item is added, removed, resized or moved
123  *             and when gengrid is resized or horizontal property changes.
124  * "drag,start,up" - Called when the item in the Gengrid has been
125  *                   dragged (not scrolled) up.
126  * "drag,start,down" - Called when the item in the Gengrid has been
127  *                     dragged (not scrolled) down.
128  * "drag,start,left" - Called when the item in the Gengrid has been
129  *                     dragged (not scrolled) left.
130  * "drag,start,right" - Called when the item in the Gengrid has been
131  *                      dragged (not scrolled) right.
132  * "drag,stop" - Called when the item in the Gengrid has stopped being
133  *               dragged.
134  * "drag" - Called when the item in the Gengrid is being dragged.
135  * "scroll" - called when the content has been scrolled (moved).
136  * "scroll,drag,start" - called when dragging the content has started.
137  * "scroll,drag,stop" - called when dragging the content has stopped.
138  *
139  * --
140  * TODO:
141  * Handle non-homogeneous objects too.
142  */
143
144  typedef struct _Widget_Data Widget_Data;
145  typedef struct _Pan         Pan;
146
147 #define PRELOAD 1
148 #define REORDER_EFFECT_TIME 0.5
149
150  struct _Elm_Gengrid_Item
151 {
152    Elm_Widget_Item               base;
153    EINA_INLIST;
154    Evas_Object                  *spacer;
155    const Elm_Gengrid_Item_Class *gic;
156    Ecore_Timer                  *long_timer;
157    Ecore_Animator               *item_moving_effect_timer;
158    Widget_Data                  *wd;
159    Eina_List                    *labels, *icons, *states, *icon_objs;
160    struct
161      {
162         Evas_Smart_Cb func;
163         const void   *data;
164      } func;
165
166    Evas_Coord   x, y, dx, dy, ox, oy, tx, ty, rx, ry;
167    unsigned int moving_effect_start_time;
168    int          relcount;
169    int          walking;
170
171    struct
172      {
173         const void                 *data;
174         Elm_Tooltip_Item_Content_Cb content_cb;
175         Evas_Smart_Cb               del_cb;
176         const char                 *style;
177      } tooltip;
178
179    const char *mouse_cursor;
180
181    Eina_Bool   want_unrealize : 1;
182    Eina_Bool   realized : 1;
183    Eina_Bool   dragging : 1;
184    Eina_Bool   down : 1;
185    Eina_Bool   delete_me : 1;
186    Eina_Bool   display_only : 1;
187    Eina_Bool   disabled : 1;
188    Eina_Bool   selected : 1;
189    Eina_Bool   hilighted : 1;
190    Eina_Bool   moving : 1;
191 };
192
193 struct _Widget_Data
194 {
195    Evas_Object      *self, *scr;
196    Evas_Object      *pan_smart;
197    Pan              *pan;
198    Eina_Inlist      *items;
199    Ecore_Job        *calc_job;
200    Eina_List        *selected;
201    Elm_Gengrid_Item *last_selected_item, *reorder_item;
202    double            align_x, align_y;
203
204    Evas_Coord        pan_x, pan_y, old_pan_x, old_pan_y;
205    Evas_Coord        item_width, item_height; /* Each item size */
206    Evas_Coord        minw, minh; /* Total obj size */
207    Evas_Coord        reorder_item_x, reorder_item_y;
208    unsigned int      nmax;
209    long              count;
210    int               walking;
211
212    Eina_Bool         horizontal : 1;
213    Eina_Bool         on_hold : 1;
214    Eina_Bool         longpressed : 1;
215    Eina_Bool         multi : 1;
216    Eina_Bool         no_select : 1;
217    Eina_Bool         wasselected : 1;
218    Eina_Bool         always_select : 1;
219    Eina_Bool         clear_me : 1;
220    Eina_Bool         h_bounce : 1;
221    Eina_Bool         v_bounce : 1;
222    Eina_Bool         reorder_mode : 1;
223    Eina_Bool         reorder_item_changed : 1;
224    Eina_Bool         move_effect_enabled : 1;
225 };
226
227 #define ELM_GENGRID_ITEM_FROM_INLIST(item) \
228    ((item) ? EINA_INLIST_CONTAINER_GET(item, Elm_Gengrid_Item) : NULL)
229
230 struct _Pan
231 {
232    Evas_Object_Smart_Clipped_Data __clipped_data;
233    Widget_Data                   *wd;
234 };
235
236 static const char *widtype = NULL;
237 static void      _item_hilight(Elm_Gengrid_Item *item);
238 static void      _item_unrealize(Elm_Gengrid_Item *item);
239 static void      _item_select(Elm_Gengrid_Item *item);
240 static void      _item_unselect(Elm_Gengrid_Item *item);
241 static void      _calc_job(void *data);
242 static void      _on_focus_hook(void        *data,
243                                 Evas_Object *obj);
244 static Eina_Bool _item_multi_select_up(Widget_Data *wd);
245 static Eina_Bool _item_multi_select_down(Widget_Data *wd);
246 static Eina_Bool _item_multi_select_left(Widget_Data *wd);
247 static Eina_Bool _item_multi_select_right(Widget_Data *wd);
248 static Eina_Bool _item_single_select_up(Widget_Data *wd);
249 static Eina_Bool _item_single_select_down(Widget_Data *wd);
250 static Eina_Bool _item_single_select_left(Widget_Data *wd);
251 static Eina_Bool _item_single_select_right(Widget_Data *wd);
252 static Eina_Bool _event_hook(Evas_Object       *obj,
253                              Evas_Object       *src,
254                              Evas_Callback_Type type,
255                              void              *event_info);
256 static Eina_Bool _deselect_all_items(Widget_Data *wd);
257
258 static Evas_Smart_Class _pan_sc = EVAS_SMART_CLASS_INIT_VERSION;
259 static void _mirrored_set(Evas_Object *obj, Eina_Bool rtl);
260
261 static const char SIG_CLICKED_DOUBLE[] = "clicked,double";
262 static const char SIG_SELECTED[] = "selected";
263 static const char SIG_UNSELECTED[] = "unselected";
264 static const char SIG_REALIZED[] = "realized";
265 static const char SIG_UNREALIZED[] = "unrealized";
266 static const char SIG_CHANGED[] = "changed";
267 static const char SIG_DRAG_START_UP[] = "drag,start,up";
268 static const char SIG_DRAG_START_DOWN[] = "drag,start,down";
269 static const char SIG_DRAG_START_LEFT[] = "drag,start,left";
270 static const char SIG_DRAG_START_RIGHT[] = "drag,start,right";
271 static const char SIG_DRAG_STOP[] = "drag,stop";
272 static const char SIG_DRAG[] = "drag";
273 static const char SIG_SCROLL[] = "scroll";
274 static const char SIG_SCROLL_DRAG_START[] = "scroll,drag,start";
275 static const char SIG_SCROLL_DRAG_STOP[] = "scroll,drag,stop";
276 static const char SIG_MOVED[] = "moved";
277
278 static const Evas_Smart_Cb_Description _signals[] = {
279        {SIG_CLICKED_DOUBLE, ""},
280        {SIG_SELECTED, ""},
281        {SIG_UNSELECTED, ""},
282        {SIG_REALIZED, ""},
283        {SIG_UNREALIZED, ""},
284        {SIG_CHANGED, ""},
285        {SIG_DRAG_START_UP, ""},
286        {SIG_DRAG_START_DOWN, ""},
287        {SIG_DRAG_START_LEFT, ""},
288        {SIG_DRAG_START_RIGHT, ""},
289        {SIG_DRAG_STOP, ""},
290        {SIG_DRAG, ""},
291        {SIG_SCROLL, ""},
292        {SIG_SCROLL_DRAG_START, ""},
293        {SIG_SCROLL_DRAG_STOP, ""},
294        {SIG_MOVED, ""},
295        {NULL, NULL}
296 };
297
298 static Eina_Compare_Cb _elm_gengrid_item_compare_cb;
299 static Eina_Compare_Cb _elm_gengrid_item_compare_data_cb;
300
301 static Eina_Bool
302 _event_hook(Evas_Object       *obj,
303             Evas_Object *src   __UNUSED__,
304             Evas_Callback_Type type,
305             void              *event_info)
306 {
307    if (type != EVAS_CALLBACK_KEY_DOWN) return EINA_FALSE;
308    Evas_Event_Key_Down *ev = event_info;
309    Widget_Data *wd = elm_widget_data_get(obj);
310    if (!wd) return EINA_FALSE;
311    if (!wd->items) return EINA_FALSE;
312    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return EINA_FALSE;
313    if (elm_widget_disabled_get(obj)) return EINA_FALSE;
314
315    Elm_Gengrid_Item *item = NULL;
316    Evas_Coord x = 0;
317    Evas_Coord y = 0;
318    Evas_Coord step_x = 0;
319    Evas_Coord step_y = 0;
320    Evas_Coord v_w = 0;
321    Evas_Coord v_h = 0;
322    Evas_Coord page_x = 0;
323    Evas_Coord page_y = 0;
324
325    elm_smart_scroller_child_pos_get(wd->scr, &x, &y);
326    elm_smart_scroller_step_size_get(wd->scr, &step_x, &step_y);
327    elm_smart_scroller_page_size_get(wd->scr, &page_x, &page_y);
328    elm_smart_scroller_child_viewport_size_get(wd->scr, &v_w, &v_h);
329
330    if ((!strcmp(ev->keyname, "Left")) || (!strcmp(ev->keyname, "KP_Left")))
331      {
332         if ((wd->horizontal) &&
333             (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
334               (_item_multi_select_up(wd)))
335              || (_item_single_select_up(wd))))
336           {
337              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
338              return EINA_TRUE;
339           }
340         else if ((!wd->horizontal) &&
341                  (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
342                    (_item_multi_select_left(wd)))
343                   || (_item_single_select_left(wd))))
344           {
345              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
346              return EINA_TRUE;
347           }
348         else
349           x -= step_x;
350      }
351    else if ((!strcmp(ev->keyname, "Right")) || (!strcmp(ev->keyname, "KP_Right")))
352      {
353         if ((wd->horizontal) &&
354             (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
355               (_item_multi_select_down(wd)))
356              || (_item_single_select_down(wd))))
357           {
358              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
359              return EINA_TRUE;
360           }
361         else if ((!wd->horizontal) &&
362                  (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
363                    (_item_multi_select_right(wd)))
364                   || (_item_single_select_right(wd))))
365           {
366              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
367              return EINA_TRUE;
368           }
369         else
370           x += step_x;
371      }
372    else if ((!strcmp(ev->keyname, "Up")) || (!strcmp(ev->keyname, "KP_Up")))
373      {
374         if ((wd->horizontal) &&
375             (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
376               (_item_multi_select_left(wd)))
377              || (_item_single_select_left(wd))))
378           {
379              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
380              return EINA_TRUE;
381           }
382         else if ((!wd->horizontal) &&
383                  (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
384                    (_item_multi_select_up(wd)))
385                   || (_item_single_select_up(wd))))
386           {
387              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
388              return EINA_TRUE;
389           }
390         else
391           y -= step_y;
392      }
393    else if ((!strcmp(ev->keyname, "Down")) || (!strcmp(ev->keyname, "KP_Down")))
394      {
395         if ((wd->horizontal) &&
396             (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
397               (_item_multi_select_right(wd)))
398              || (_item_single_select_right(wd))))
399           {
400              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
401              return EINA_TRUE;
402           }
403         else if ((!wd->horizontal) &&
404                  (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
405                    (_item_multi_select_down(wd)))
406                   || (_item_single_select_down(wd))))
407           {
408              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
409              return EINA_TRUE;
410           }
411         else
412           y += step_y;
413      }
414    else if ((!strcmp(ev->keyname, "Home")) || (!strcmp(ev->keyname, "KP_Home")))
415      {
416         item = elm_gengrid_first_item_get(obj);
417         elm_gengrid_item_bring_in(item);
418         ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
419         return EINA_TRUE;
420      }
421    else if ((!strcmp(ev->keyname, "End")) || (!strcmp(ev->keyname, "KP_End")))
422      {
423         item = elm_gengrid_last_item_get(obj);
424         elm_gengrid_item_bring_in(item);
425         ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
426         return EINA_TRUE;
427      }
428    else if ((!strcmp(ev->keyname, "Prior")) ||
429             (!strcmp(ev->keyname, "KP_Prior")))
430      {
431         if (wd->horizontal)
432           {
433              if (page_x < 0)
434                x -= -(page_x * v_w) / 100;
435              else
436                x -= page_x;
437           }
438         else
439           {
440              if (page_y < 0)
441                y -= -(page_y * v_h) / 100;
442              else
443                y -= page_y;
444           }
445      }
446    else if ((!strcmp(ev->keyname, "Next")) || (!strcmp(ev->keyname, "KP_Next")))
447      {
448         if (wd->horizontal)
449           {
450              if (page_x < 0)
451                x += -(page_x * v_w) / 100;
452              else
453                x += page_x;
454           }
455         else
456           {
457              if (page_y < 0)
458                y += -(page_y * v_h) / 100;
459              else
460                y += page_y;
461           }
462      }
463    else if (!strcmp(ev->keyname, "Escape"))
464      {
465         if (!_deselect_all_items(wd)) return EINA_FALSE;
466         ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
467         return EINA_TRUE;
468      }
469    else if ((!strcmp(ev->keyname, "Return")) ||
470             (!strcmp(ev->keyname, "KP_Enter")) ||
471             (!strcmp(ev->keyname, "space")))
472      {
473         item = elm_gengrid_selected_item_get(obj);
474         evas_object_smart_callback_call(item->wd->self, SIG_CLICKED_DOUBLE, item);
475      }
476    else return EINA_FALSE;
477
478    ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
479    elm_smart_scroller_child_pos_set(wd->scr, x, y);
480    return EINA_TRUE;
481 }
482
483 static Eina_Bool
484 _deselect_all_items(Widget_Data *wd)
485 {
486    if (!wd->selected) return EINA_FALSE;
487    while(wd->selected)
488      elm_gengrid_item_selected_set(wd->selected->data, EINA_FALSE);
489
490    return EINA_TRUE;
491 }
492
493 static Eina_Bool
494 _item_multi_select_left(Widget_Data *wd)
495 {
496    if (!wd->selected) return EINA_FALSE;
497
498    Elm_Gengrid_Item *prev = elm_gengrid_item_prev_get(wd->last_selected_item);
499    if (!prev) return EINA_TRUE;
500    if (elm_gengrid_item_selected_get(prev))
501      {
502         elm_gengrid_item_selected_set(wd->last_selected_item, EINA_FALSE);
503         wd->last_selected_item = prev;
504         elm_gengrid_item_show(wd->last_selected_item);
505      }
506    else
507      {
508         elm_gengrid_item_selected_set(prev, EINA_TRUE);
509         elm_gengrid_item_show(prev);
510      }
511
512    return EINA_TRUE;
513 }
514
515 static Eina_Bool
516 _item_multi_select_right(Widget_Data *wd)
517 {
518    if (!wd->selected) return EINA_FALSE;
519
520    Elm_Gengrid_Item *next = elm_gengrid_item_next_get(wd->last_selected_item);
521    if (!next) return EINA_TRUE;
522    if (elm_gengrid_item_selected_get(next))
523      {
524         elm_gengrid_item_selected_set(wd->last_selected_item, EINA_FALSE);
525         wd->last_selected_item = next;
526         elm_gengrid_item_show(wd->last_selected_item);
527      }
528    else
529      {
530         elm_gengrid_item_selected_set(next, EINA_TRUE);
531         elm_gengrid_item_show(next);
532      }
533
534    return EINA_TRUE;
535 }
536
537 static Eina_Bool
538 _item_multi_select_up(Widget_Data *wd)
539 {
540    unsigned int i;
541    Eina_Bool r = EINA_TRUE;
542
543    if (!wd->selected) return EINA_FALSE;
544
545    for (i = 0; (r) && (i < wd->nmax); i++)
546      r &= _item_multi_select_left(wd);
547
548    return r;
549 }
550
551 static Eina_Bool
552 _item_multi_select_down(Widget_Data *wd)
553 {
554    unsigned int i;
555    Eina_Bool r = EINA_TRUE;
556
557    if (!wd->selected) return EINA_FALSE;
558
559    for (i = 0; (r) && (i < wd->nmax); i++)
560      r &= _item_multi_select_right(wd);
561
562    return r;
563 }
564
565 static Eina_Bool
566 _item_single_select_up(Widget_Data *wd)
567 {
568    unsigned int i;
569
570    Elm_Gengrid_Item *prev;
571
572    if (!wd->selected)
573      {
574         prev = ELM_GENGRID_ITEM_FROM_INLIST(wd->items->last);
575         while ((prev) && (prev->delete_me))
576           prev = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(prev)->prev);
577         elm_gengrid_item_selected_set(prev, EINA_TRUE);
578         elm_gengrid_item_show(prev);
579         return EINA_TRUE;
580      }
581    else prev = elm_gengrid_item_prev_get(wd->last_selected_item);
582
583    if (!prev) return EINA_FALSE;
584
585    for (i = 1; i < wd->nmax; i++)
586      {
587         Elm_Gengrid_Item *tmp = elm_gengrid_item_prev_get(prev);
588         if (!tmp) return EINA_FALSE;
589         prev = tmp;
590      }
591
592    _deselect_all_items(wd);
593
594    elm_gengrid_item_selected_set(prev, EINA_TRUE);
595    elm_gengrid_item_show(prev);
596    return EINA_TRUE;
597 }
598
599 static Eina_Bool
600 _item_single_select_down(Widget_Data *wd)
601 {
602    unsigned int i;
603
604    Elm_Gengrid_Item *next;
605
606    if (!wd->selected)
607      {
608         next = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
609         while ((next) && (next->delete_me))
610           next = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(next)->next);
611         elm_gengrid_item_selected_set(next, EINA_TRUE);
612         elm_gengrid_item_show(next);
613         return EINA_TRUE;
614      }
615    else next = elm_gengrid_item_next_get(wd->last_selected_item);
616
617    if (!next) return EINA_FALSE;
618
619    for (i = 1; i < wd->nmax; i++)
620      {
621         Elm_Gengrid_Item *tmp = elm_gengrid_item_next_get(next);
622         if (!tmp) return EINA_FALSE;
623         next = tmp;
624      }
625
626    _deselect_all_items(wd);
627
628    elm_gengrid_item_selected_set(next, EINA_TRUE);
629    elm_gengrid_item_show(next);
630    return EINA_TRUE;
631 }
632
633 static Eina_Bool
634 _item_single_select_left(Widget_Data *wd)
635 {
636    Elm_Gengrid_Item *prev;
637    if (!wd->selected)
638      {
639         prev = ELM_GENGRID_ITEM_FROM_INLIST(wd->items->last);
640         while ((prev) && (prev->delete_me))
641           prev = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(prev)->prev);
642      }
643    else prev = elm_gengrid_item_prev_get(wd->last_selected_item);
644
645    if (!prev) return EINA_FALSE;
646
647    _deselect_all_items(wd);
648
649    elm_gengrid_item_selected_set(prev, EINA_TRUE);
650    elm_gengrid_item_show(prev);
651    return EINA_TRUE;
652 }
653
654 static Eina_Bool
655 _item_single_select_right(Widget_Data *wd)
656 {
657    Elm_Gengrid_Item *next;
658    if (!wd->selected)
659      {
660         next = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
661         while ((next) && (next->delete_me))
662           next = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(next)->next);
663      }
664    else next = elm_gengrid_item_next_get(wd->last_selected_item);
665
666    if (!next) return EINA_FALSE;
667
668    _deselect_all_items(wd);
669
670    elm_gengrid_item_selected_set(next, EINA_TRUE);
671    elm_gengrid_item_show(next);
672    return EINA_TRUE;
673 }
674
675 static void
676 _on_focus_hook(void *data   __UNUSED__,
677                Evas_Object *obj)
678 {
679    Widget_Data *wd = elm_widget_data_get(obj);
680    if (!wd) return;
681    if (elm_widget_focus_get(obj))
682      {
683         edje_object_signal_emit(wd->self, "elm,action,focus", "elm");
684         evas_object_focus_set(wd->self, EINA_TRUE);
685         if ((wd->selected) && (!wd->last_selected_item))
686           wd->last_selected_item = eina_list_data_get(wd->selected);
687      }
688    else
689      {
690         edje_object_signal_emit(wd->self, "elm,action,unfocus", "elm");
691         evas_object_focus_set(wd->self, EINA_FALSE);
692      }
693 }
694
695 static void
696 _mirrored_set(Evas_Object *obj, Eina_Bool rtl)
697 {
698    Widget_Data *wd = elm_widget_data_get(obj);
699    Elm_Gengrid_Item *item;
700    if (!wd) return;
701    elm_smart_scroller_mirrored_set(wd->scr, rtl);
702    if (!wd->items) return;
703    item = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
704
705    while (item)
706      {
707         edje_object_mirrored_set(item->base.view, rtl);
708         elm_gengrid_item_update(item);
709         item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->next);
710      }
711 }
712
713 static void
714 _theme_hook(Evas_Object *obj)
715 {
716    Widget_Data *wd = elm_widget_data_get(obj);
717    if (!wd) return;
718    _elm_widget_mirrored_reload(obj);
719    _mirrored_set(obj, elm_widget_mirrored_get(obj));
720    elm_smart_scroller_object_theme_set(obj, wd->scr, "gengrid", "base",
721                                        elm_widget_style_get(obj));
722 }
723
724 static void
725 _del_pre_hook(Evas_Object *obj)
726 {
727    Widget_Data *wd = elm_widget_data_get(obj);
728    if (!wd) return;
729    elm_gengrid_clear(obj);
730    evas_object_del(wd->pan_smart);
731    wd->pan_smart = NULL;
732 }
733
734 static void
735 _del_hook(Evas_Object *obj)
736 {
737    Widget_Data *wd = elm_widget_data_get(obj);
738    free(wd);
739 }
740
741 static void
742 _signal_emit_hook(Evas_Object *obj,
743                   const char  *emission,
744                   const char  *source)
745 {
746    Widget_Data *wd = elm_widget_data_get(obj);
747    if (!wd) return;
748    edje_object_signal_emit(elm_smart_scroller_edje_object_get(wd->scr),
749                            emission, source);
750 }
751
752 static void
753 _mouse_move(void        *data,
754             Evas *evas   __UNUSED__,
755             Evas_Object *obj,
756             void        *event_info)
757 {
758    Elm_Gengrid_Item *item = data;
759    Evas_Event_Mouse_Move *ev = event_info;
760    Evas_Coord minw = 0, minh = 0, x, y, dx, dy, adx, ady;
761    Evas_Coord ox, oy, ow, oh, it_scrl_x, it_scrl_y;
762
763    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
764      {
765         if (!item->wd->on_hold)
766           {
767              item->wd->on_hold = EINA_TRUE;
768              if (!item->wd->wasselected)
769                _item_unselect(item);
770           }
771      }
772    if ((item->dragging) && (item->down))
773      {
774         if (item->long_timer)
775           {
776              ecore_timer_del(item->long_timer);
777              item->long_timer = NULL;
778           }
779         evas_object_smart_callback_call(item->wd->self, SIG_DRAG, item);
780         return;
781      }
782    if ((!item->down) || (item->wd->longpressed))
783      {
784         if (item->long_timer)
785           {
786              ecore_timer_del(item->long_timer);
787              item->long_timer = NULL;
788           }
789         if ((item->wd->reorder_mode) && (item->wd->reorder_item))
790           {
791              evas_object_geometry_get(item->wd->pan_smart, &ox, &oy, &ow, &oh);
792
793              it_scrl_x = ev->cur.canvas.x - item->wd->reorder_item->dx;
794              it_scrl_y = ev->cur.canvas.y - item->wd->reorder_item->dy;
795
796              if (it_scrl_x < ox) item->wd->reorder_item_x = ox;
797              else if (it_scrl_x + item->wd->item_width > ox + ow)
798                item->wd->reorder_item_x = ox + ow - item->wd->item_width;
799              else item->wd->reorder_item_x = it_scrl_x;
800
801              if (it_scrl_y < oy) item->wd->reorder_item_y = oy;
802              else if (it_scrl_y + item->wd->item_height > oy + oh)
803                item->wd->reorder_item_y = oy + oh - item->wd->item_height;
804              else item->wd->reorder_item_y = it_scrl_y;
805
806              if (item->wd->calc_job) ecore_job_del(item->wd->calc_job);
807              item->wd->calc_job = ecore_job_add(_calc_job, item->wd);
808           }
809         return;
810      }
811    if (!item->display_only)
812      elm_coords_finger_size_adjust(1, &minw, 1, &minh);
813    evas_object_geometry_get(obj, &x, &y, NULL, NULL);
814    x = ev->cur.canvas.x - x;
815    y = ev->cur.canvas.y - y;
816    dx = x - item->dx;
817    adx = dx;
818    if (adx < 0) adx = -dx;
819    dy = y - item->dy;
820    ady = dy;
821    if (ady < 0) ady = -dy;
822    minw /= 2;
823    minh /= 2;
824    if ((adx > minw) || (ady > minh))
825      {
826         const char *left_drag, *right_drag;
827         if (!elm_widget_mirrored_get(item->wd->self))
828           {
829              left_drag = SIG_DRAG_START_LEFT;
830              right_drag = SIG_DRAG_START_RIGHT;
831           }
832         else
833           {
834              left_drag = SIG_DRAG_START_RIGHT;
835              right_drag = SIG_DRAG_START_LEFT;
836           }
837
838         item->dragging = 1;
839         if (item->long_timer)
840           {
841              ecore_timer_del(item->long_timer);
842              item->long_timer = NULL;
843           }
844         if (!item->wd->wasselected)
845           _item_unselect(item);
846         if (dy < 0)
847           {
848              if (ady > adx)
849                evas_object_smart_callback_call(item->wd->self, SIG_DRAG_START_UP,
850                                                item);
851              else
852                {
853                   if (dx < 0)
854                     evas_object_smart_callback_call(item->wd->self,
855                                                     left_drag, item);
856                }
857           }
858         else
859           {
860              if (ady > adx)
861                evas_object_smart_callback_call(item->wd->self,
862                                                SIG_DRAG_START_DOWN, item);
863              else
864                {
865                   if (dx < 0)
866                     evas_object_smart_callback_call(item->wd->self,
867                                                     left_drag, item);
868                   else
869                     evas_object_smart_callback_call(item->wd->self,
870                                                     right_drag, item);
871                }
872           }
873      }
874 }
875
876 static Eina_Bool
877 _long_press(void *data)
878 {
879    Elm_Gengrid_Item *item = data;
880
881    item->long_timer = NULL;
882    if ((item->disabled) || (item->dragging)) return ECORE_CALLBACK_CANCEL;
883    item->wd->longpressed = EINA_TRUE;
884    evas_object_smart_callback_call(item->wd->self, "longpressed", item);
885    if (item->wd->reorder_mode)
886      {
887         item->wd->reorder_item = item;
888         evas_object_raise(item->base.view);
889         elm_smart_scroller_hold_set(item->wd->scr, EINA_TRUE);
890         elm_smart_scroller_bounce_allow_set(item->wd->scr, EINA_FALSE, EINA_FALSE);
891         edje_object_signal_emit(item->base.view, "elm,state,reorder,enabled", "elm");
892      }
893    return ECORE_CALLBACK_CANCEL;
894 }
895
896 static void
897 _mouse_down(void        *data,
898             Evas *evas   __UNUSED__,
899             Evas_Object *obj,
900             void        *event_info)
901 {
902    Elm_Gengrid_Item *item = data;
903    Evas_Event_Mouse_Down *ev = event_info;
904    Evas_Coord x, y;
905
906    if (ev->button != 1) return;
907    item->down = 1;
908    item->dragging = 0;
909    evas_object_geometry_get(obj, &x, &y, NULL, NULL);
910    item->dx = ev->canvas.x - x;
911    item->dy = ev->canvas.y - y;
912    item->wd->longpressed = EINA_FALSE;
913    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) item->wd->on_hold = EINA_TRUE;
914    else item->wd->on_hold = EINA_FALSE;
915    item->wd->wasselected = item->selected;
916    _item_hilight(item);
917    if (ev->flags & EVAS_BUTTON_DOUBLE_CLICK)
918      {
919         evas_object_smart_callback_call(item->wd->self, SIG_CLICKED_DOUBLE, item);
920         evas_object_smart_callback_call(item->wd->self, "clicked", item); // will be removed
921      }
922    if (item->long_timer) ecore_timer_del(item->long_timer);
923    if (item->realized)
924      item->long_timer = ecore_timer_add(_elm_config->longpress_timeout,
925                                         _long_press, item);
926    else
927      item->long_timer = NULL;
928 }
929
930 static void
931 _mouse_up(void            *data,
932           Evas *evas       __UNUSED__,
933           Evas_Object *obj __UNUSED__,
934           void            *event_info)
935 {
936    Elm_Gengrid_Item *item = data;
937    Evas_Event_Mouse_Up *ev = event_info;
938    Eina_Bool dragged = EINA_FALSE;
939
940    if (ev->button != 1) return;
941    item->down = EINA_FALSE;
942    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) item->wd->on_hold = EINA_TRUE;
943    else item->wd->on_hold = EINA_FALSE;
944    if (item->long_timer)
945      {
946         ecore_timer_del(item->long_timer);
947         item->long_timer = NULL;
948      }
949    if (item->dragging)
950      {
951         item->dragging = EINA_FALSE;
952         evas_object_smart_callback_call(item->wd->self, SIG_DRAG_STOP, item);
953         dragged = EINA_TRUE;
954      }
955    if (item->wd->on_hold)
956      {
957         item->wd->longpressed = EINA_FALSE;
958         item->wd->on_hold = EINA_FALSE;
959         return;
960      }
961    if ((item->wd->reorder_mode) && (item->wd->reorder_item))
962      {
963         if (item->wd->calc_job) ecore_job_del(item->wd->calc_job);
964           item->wd->calc_job = ecore_job_add(_calc_job, item->wd);
965
966         evas_object_smart_callback_call(item->wd->self, SIG_MOVED, item->wd->reorder_item);
967         item->wd->reorder_item = NULL;
968         elm_smart_scroller_hold_set(item->wd->scr, EINA_FALSE);
969         elm_smart_scroller_bounce_allow_set(item->wd->scr, item->wd->h_bounce, item->wd->v_bounce);
970         edje_object_signal_emit(item->base.view, "elm,state,reorder,disabled", "elm");
971      }
972    if (item->wd->longpressed)
973      {
974         item->wd->longpressed = EINA_FALSE;
975         if (!item->wd->wasselected) _item_unselect(item);
976         item->wd->wasselected = EINA_FALSE;
977         return;
978      }
979    if (dragged)
980      {
981         if (item->want_unrealize) _item_unrealize(item);
982      }
983    if ((item->disabled) || (dragged)) return;
984    if (item->wd->multi)
985      {
986         if (!item->selected)
987           {
988              _item_hilight(item);
989              _item_select(item);
990           }
991         else _item_unselect(item);
992      }
993    else
994      {
995         if (!item->selected)
996           {
997              while (item->wd->selected)
998                _item_unselect(item->wd->selected->data);
999           }
1000         else
1001           {
1002              const Eina_List *l, *l_next;
1003              Elm_Gengrid_Item *item2;
1004
1005              EINA_LIST_FOREACH_SAFE(item->wd->selected, l, l_next, item2)
1006                 if (item2 != item) _item_unselect(item2);
1007           }
1008         _item_hilight(item);
1009         _item_select(item);
1010      }
1011 }
1012
1013 static void
1014 _item_hilight(Elm_Gengrid_Item *item)
1015 {
1016    if ((item->wd->no_select) || (item->delete_me) || (item->hilighted)) return;
1017    edje_object_signal_emit(item->base.view, "elm,state,selected", "elm");
1018    item->hilighted = EINA_TRUE;
1019 }
1020
1021 static void
1022 _item_realize(Elm_Gengrid_Item *item)
1023 {
1024    char buf[1024];
1025    char style[1024];
1026
1027    if ((item->realized) || (item->delete_me)) return;
1028    item->base.view = edje_object_add(evas_object_evas_get(item->wd->self));
1029    edje_object_scale_set(item->base.view, elm_widget_scale_get(item->wd->self) *
1030                          _elm_config->scale);
1031    edje_object_mirrored_set(item->base.view, elm_widget_mirrored_get(item->base.widget));
1032    evas_object_smart_member_add(item->base.view, item->wd->pan_smart);
1033    elm_widget_sub_object_add(item->wd->self, item->base.view);
1034    snprintf(style, sizeof(style), "item/%s",
1035             item->gic->item_style ? item->gic->item_style : "default");
1036    _elm_theme_object_set(item->wd->self, item->base.view, "gengrid", style,
1037                          elm_widget_style_get(item->wd->self));
1038    item->spacer =
1039       evas_object_rectangle_add(evas_object_evas_get(item->wd->self));
1040    evas_object_color_set(item->spacer, 0, 0, 0, 0);
1041    elm_widget_sub_object_add(item->wd->self, item->spacer);
1042    evas_object_size_hint_min_set(item->spacer, 2 * _elm_config->scale, 1);
1043    edje_object_part_swallow(item->base.view, "elm.swallow.pad", item->spacer);
1044
1045    if (item->gic->func.label_get)
1046      {
1047         const Eina_List *l;
1048         const char *key;
1049
1050         item->labels =
1051            elm_widget_stringlist_get(edje_object_data_get(item->base.view,
1052                                                           "labels"));
1053         EINA_LIST_FOREACH(item->labels, l, key)
1054           {
1055              char *s = item->gic->func.label_get
1056                 ((void *)item->base.data, item->wd->self, l->data);
1057              if (s)
1058                {
1059                   edje_object_part_text_set(item->base.view, l->data, s);
1060                   free(s);
1061                }
1062           }
1063      }
1064
1065    if (item->gic->func.icon_get)
1066      {
1067         const Eina_List *l;
1068         const char *key;
1069
1070         item->icons =
1071            elm_widget_stringlist_get(edje_object_data_get(item->base.view,
1072                                                           "icons"));
1073         EINA_LIST_FOREACH(item->icons, l, key)
1074           {
1075              Evas_Object *ic = item->gic->func.icon_get
1076                 ((void *)item->base.data, item->wd->self, l->data);
1077              if (ic)
1078                {
1079                   item->icon_objs = eina_list_append(item->icon_objs, ic);
1080                   edje_object_part_swallow(item->base.view, key, ic);
1081                   evas_object_show(ic);
1082                   elm_widget_sub_object_add(item->wd->self, ic);
1083                }
1084           }
1085      }
1086
1087    if (item->gic->func.state_get)
1088      {
1089         const Eina_List *l;
1090         const char *key;
1091
1092         item->states =
1093            elm_widget_stringlist_get(edje_object_data_get(item->base.view,
1094                                                           "states"));
1095         EINA_LIST_FOREACH(item->states, l, key)
1096           {
1097              Eina_Bool on = item->gic->func.state_get
1098                 ((void *)item->base.data, item->wd->self, l->data);
1099              if (on)
1100                {
1101                   snprintf(buf, sizeof(buf), "elm,state,%s,active", key);
1102                   edje_object_signal_emit(item->base.view, buf, "elm");
1103                }
1104           }
1105      }
1106
1107    if ((!item->wd->item_width) && (!item->wd->item_height))
1108      {
1109         edje_object_size_min_restricted_calc(item->base.view,
1110                                              &item->wd->item_width,
1111                                              &item->wd->item_height,
1112                                              item->wd->item_width,
1113                                              item->wd->item_height);
1114         elm_coords_finger_size_adjust(1, &item->wd->item_width,
1115                                       1, &item->wd->item_height);
1116      }
1117
1118    evas_object_event_callback_add(item->base.view, EVAS_CALLBACK_MOUSE_DOWN,
1119                                   _mouse_down, item);
1120    evas_object_event_callback_add(item->base.view, EVAS_CALLBACK_MOUSE_UP,
1121                                   _mouse_up, item);
1122    evas_object_event_callback_add(item->base.view, EVAS_CALLBACK_MOUSE_MOVE,
1123                                   _mouse_move, item);
1124
1125    if (item->selected)
1126      edje_object_signal_emit(item->base.view, "elm,state,selected", "elm");
1127    if (item->disabled)
1128      edje_object_signal_emit(item->base.view, "elm,state,disabled", "elm");
1129
1130    evas_object_show(item->base.view);
1131
1132    if (item->tooltip.content_cb)
1133      {
1134         elm_widget_item_tooltip_content_cb_set(item,
1135                                                item->tooltip.content_cb,
1136                                                item->tooltip.data, NULL);
1137         elm_widget_item_tooltip_style_set(item, item->tooltip.style);
1138      }
1139
1140    if (item->mouse_cursor)
1141      elm_widget_item_cursor_set(item, item->mouse_cursor);
1142
1143    item->realized = EINA_TRUE;
1144    item->want_unrealize = EINA_FALSE;
1145 }
1146
1147 static void
1148 _item_unrealize(Elm_Gengrid_Item *item)
1149 {
1150    Evas_Object *icon;
1151
1152    if (!item->realized) return;
1153    if (item->long_timer)
1154      {
1155         ecore_timer_del(item->long_timer);
1156         item->long_timer = NULL;
1157      }
1158    evas_object_del(item->base.view);
1159    item->base.view = NULL;
1160    evas_object_del(item->spacer);
1161    item->spacer = NULL;
1162    elm_widget_stringlist_free(item->labels);
1163    item->labels = NULL;
1164    elm_widget_stringlist_free(item->icons);
1165    item->icons = NULL;
1166    elm_widget_stringlist_free(item->states);
1167    item->states = NULL;
1168
1169    EINA_LIST_FREE(item->icon_objs, icon)
1170       evas_object_del(icon);
1171
1172    item->realized = EINA_FALSE;
1173    item->want_unrealize = EINA_FALSE;
1174 }
1175
1176 static Eina_Bool
1177 _reorder_item_moving_effect_timer_cb(void *data)
1178 {
1179    Elm_Gengrid_Item *item = data;
1180    double time, t;
1181    Evas_Coord dx, dy;
1182
1183    time = REORDER_EFFECT_TIME;
1184    t = ((0.0 > (t = ecore_loop_time_get()-item->moving_effect_start_time)) ? 0.0 : t);
1185    dx = ((item->tx - item->ox) / 10) * _elm_config->scale;
1186    dy = ((item->ty - item->oy) / 10) * _elm_config->scale;
1187
1188    if (t <= time)
1189      {
1190         item->rx += (1 * sin((t / time) * (M_PI / 2)) * dx);
1191         item->ry += (1 * sin((t / time) * (M_PI / 2)) * dy);
1192      }
1193    else
1194      {
1195         item->rx += dx;
1196         item->ry += dy;
1197      }
1198
1199    if ((((dx > 0) && (item->rx >= item->tx)) || ((dx <= 0) && (item->rx <= item->tx))) &&
1200        (((dy > 0) && (item->ry >= item->ty)) || ((dy <= 0) && (item->ry <= item->ty))))
1201      {
1202         evas_object_move(item->base.view, item->tx, item->ty);
1203         evas_object_resize(item->base.view, item->wd->item_width, item->wd->item_height);
1204         item->moving = EINA_FALSE;
1205         item->item_moving_effect_timer = NULL;
1206         return ECORE_CALLBACK_CANCEL;
1207      }
1208
1209    evas_object_move(item->base.view, item->rx, item->ry);
1210    evas_object_resize(item->base.view, item->wd->item_width, item->wd->item_height);
1211
1212    return ECORE_CALLBACK_RENEW;
1213 }
1214
1215 static void
1216 _item_place(Elm_Gengrid_Item *item,
1217             Evas_Coord        cx,
1218             Evas_Coord        cy)
1219 {
1220    Evas_Coord x, y, ox, oy, cvx, cvy, cvw, cvh;
1221    Evas_Coord tch, tcw, alignw = 0, alignh = 0, vw, vh;
1222    Eina_Bool reorder_item_move_forward = EINA_FALSE;
1223    item->x = cx;
1224    item->y = cy;
1225    evas_object_geometry_get(item->wd->pan_smart, &ox, &oy, &vw, &vh);
1226
1227    /* Preload rows/columns at each side of the Gengrid */
1228    cvx = ox - PRELOAD * item->wd->item_width;
1229    cvy = oy - PRELOAD * item->wd->item_height;
1230    cvw = vw + 2 * PRELOAD * item->wd->item_width;
1231    cvh = vh + 2 * PRELOAD * item->wd->item_height;
1232
1233    alignh = 0;
1234    alignw = 0;
1235
1236    if (item->wd->horizontal)
1237      {
1238         int columns, items_visible = 0, items_row;
1239
1240         if (item->wd->item_height > 0)
1241           items_visible = vh / item->wd->item_height;
1242         if (items_visible < 1)
1243           items_visible = 1;
1244
1245         columns = item->wd->count / items_visible;
1246         if (item->wd->count % items_visible)
1247           columns++;
1248
1249         tcw = item->wd->item_width * columns;
1250         alignw = (vw - tcw) * item->wd->align_x;
1251
1252         items_row = items_visible;
1253         if (items_row > item->wd->count)
1254           items_row = item->wd->count;
1255         tch = items_row * item->wd->item_height;
1256         alignh = (vh - tch) * item->wd->align_y;
1257      }
1258    else
1259      {
1260         int rows, items_visible = 0, items_col;
1261
1262         if (item->wd->item_width > 0)
1263           items_visible = vw / item->wd->item_width;
1264         if (items_visible < 1)
1265           items_visible = 1;
1266
1267         rows = item->wd->count / items_visible;
1268         if (item->wd->count % items_visible)
1269           rows++;
1270
1271         tch = item->wd->item_height * rows;
1272         alignh = (vh - tch) * item->wd->align_y;
1273
1274         items_col = items_visible;
1275         if (items_col > item->wd->count)
1276           items_col = item->wd->count;
1277         tcw = items_col * item->wd->item_width;
1278         alignw = (vw - tcw) * item->wd->align_x;
1279      }
1280
1281    x = cx * item->wd->item_width - item->wd->pan_x + ox + alignw;
1282    if (elm_widget_mirrored_get(item->wd->self))
1283      {  /* Switch items side and componsate for pan_x when in RTL mode */
1284         Evas_Coord ww;
1285         evas_object_geometry_get(item->wd->self, NULL, NULL, &ww, NULL);
1286         x = ww - x - item->wd->item_width - item->wd->pan_x - item->wd->pan_x;
1287      }
1288
1289    y = cy * item->wd->item_height - item->wd->pan_y + oy + alignh;
1290
1291    Eina_Bool was_realized = item->realized;
1292    if (ELM_RECTS_INTERSECT(x, y, item->wd->item_width, item->wd->item_height,
1293                            cvx, cvy, cvw, cvh))
1294      {
1295         _item_realize(item);
1296         if (!was_realized)
1297           evas_object_smart_callback_call(item->wd->self, SIG_REALIZED, item);
1298         if ((item->wd->reorder_mode) && (item->wd->reorder_item))
1299           {
1300              if (item->moving) return;
1301
1302              if (!item->wd->move_effect_enabled)
1303                {
1304                   item->ox = x;
1305                   item->oy = y;
1306                }
1307              if (item->wd->reorder_item == item)
1308                {
1309                   evas_object_move(item->base.view,
1310                                    item->wd->reorder_item_x, item->wd->reorder_item_y);
1311                   evas_object_resize(item->base.view,
1312                                      item->wd->item_width, item->wd->item_height);
1313                   return;
1314                }
1315              else
1316                {
1317                   if (item->wd->move_effect_enabled)
1318                     {
1319                        if ((item->ox != x) || (item->oy != y))
1320                          {
1321                             if (((item->wd->old_pan_x == item->wd->pan_x) && (item->wd->old_pan_y == item->wd->pan_y)) ||
1322                                 ((item->wd->old_pan_x != item->wd->pan_x) && !(item->ox - item->wd->pan_x + item->wd->old_pan_x == x)) ||
1323                                 ((item->wd->old_pan_y != item->wd->pan_y) && !(item->oy - item->wd->pan_y + item->wd->old_pan_y == y)))
1324                               {
1325                                  item->tx = x;
1326                                  item->ty = y;
1327                                  item->rx = item->ox;
1328                                  item->ry = item->oy;
1329                                  item->moving = EINA_TRUE;
1330                                  item->moving_effect_start_time = ecore_loop_time_get();
1331                                  item->item_moving_effect_timer = ecore_animator_add(_reorder_item_moving_effect_timer_cb, item);
1332                                  return;
1333                               }
1334                          }
1335                     }
1336
1337                   if (ELM_RECTS_INTERSECT(item->wd->reorder_item_x, item->wd->reorder_item_y,
1338                                           item->wd->item_width, item->wd->item_height,
1339                                           x+(item->wd->item_width/2), y+(item->wd->item_height/2),
1340                                           1, 1))
1341                     {
1342                        if (item->wd->horizontal)
1343                          {
1344                             if ((item->wd->nmax * item->wd->reorder_item->x + item->wd->reorder_item->y) >
1345                                 (item->wd->nmax * item->x + item->y))
1346                               reorder_item_move_forward = EINA_TRUE;
1347                          }
1348                        else
1349                          {
1350                             if ((item->wd->nmax * item->wd->reorder_item->y + item->wd->reorder_item->x) >
1351                                 (item->wd->nmax * item->y + item->x))
1352                               reorder_item_move_forward = EINA_TRUE;
1353                          }
1354
1355                        item->wd->items = eina_inlist_remove(item->wd->items,
1356                                                             EINA_INLIST_GET(item->wd->reorder_item));
1357                        if (reorder_item_move_forward)
1358                          item->wd->items = eina_inlist_prepend_relative(item->wd->items,
1359                                                                         EINA_INLIST_GET(item->wd->reorder_item),
1360                                                                         EINA_INLIST_GET(item));
1361                        else
1362                          item->wd->items = eina_inlist_append_relative(item->wd->items,
1363                                                                        EINA_INLIST_GET(item->wd->reorder_item),
1364                                                                        EINA_INLIST_GET(item));
1365
1366                        item->wd->reorder_item_changed = EINA_TRUE;
1367                        item->wd->move_effect_enabled = EINA_TRUE;
1368                        if (item->wd->calc_job) ecore_job_del(item->wd->calc_job);
1369                          item->wd->calc_job = ecore_job_add(_calc_job, item->wd);
1370
1371                        return;
1372                     }
1373                }
1374           }
1375         evas_object_move(item->base.view, x, y);
1376         evas_object_resize(item->base.view, item->wd->item_width,
1377                            item->wd->item_height);
1378      }
1379    else
1380      {
1381         _item_unrealize(item);
1382         if (was_realized)
1383           evas_object_smart_callback_call(item->wd->self, SIG_UNREALIZED, item);
1384      }
1385 }
1386
1387 static Elm_Gengrid_Item *
1388 _item_create(Widget_Data                  *wd,
1389              const Elm_Gengrid_Item_Class *gic,
1390              const void                   *data,
1391              Evas_Smart_Cb                 func,
1392              const void                   *func_data)
1393 {
1394    Elm_Gengrid_Item *item;
1395
1396    item = elm_widget_item_new(wd->self, Elm_Gengrid_Item);
1397    if (!item) return NULL;
1398    wd->count++;
1399    item->wd = wd;
1400    item->gic = gic;
1401    item->base.data = data;
1402    item->func.func = func;
1403    item->func.data = func_data;
1404    item->mouse_cursor = NULL;
1405    return item;
1406 }
1407
1408 static void
1409 _item_del(Elm_Gengrid_Item *item)
1410 {
1411    elm_widget_item_pre_notify_del(item);
1412    if (item->selected)
1413      item->wd->selected = eina_list_remove(item->wd->selected, item);
1414    if (item->realized) _item_unrealize(item);
1415    if ((!item->delete_me) && (item->gic->func.del))
1416      item->gic->func.del((void *)item->base.data, item->wd->self);
1417    item->delete_me = EINA_TRUE;
1418    item->wd->items = eina_inlist_remove(item->wd->items, EINA_INLIST_GET(item));
1419    if (item->long_timer) ecore_timer_del(item->long_timer);
1420    if (item->tooltip.del_cb)
1421      item->tooltip.del_cb((void *)item->tooltip.data, item->base.widget, item);
1422    item->wd->walking -= item->walking;
1423    item->wd->count--;
1424    if (item->wd->calc_job) ecore_job_del(item->wd->calc_job);
1425    item->wd->calc_job = ecore_job_add(_calc_job, item->wd);
1426    elm_widget_item_del(item);
1427 }
1428
1429 static void
1430 _item_select(Elm_Gengrid_Item *item)
1431 {
1432    if ((item->wd->no_select) || (item->delete_me)) return;
1433    if (item->selected)
1434      {
1435         if (item->wd->always_select) goto call;
1436         return;
1437      }
1438    item->selected = EINA_TRUE;
1439    item->wd->selected = eina_list_append(item->wd->selected, item);
1440 call:
1441    item->walking++;
1442    item->wd->walking++;
1443    if (item->func.func)
1444      item->func.func((void *)item->func.data, item->wd->self, item);
1445    if (!item->delete_me)
1446      evas_object_smart_callback_call(item->wd->self, SIG_SELECTED, item);
1447    item->walking--;
1448    item->wd->walking--;
1449    item->wd->last_selected_item = item;
1450    if ((item->wd->clear_me) && (!item->wd->walking))
1451      elm_gengrid_clear(item->base.widget);
1452    else
1453      {
1454         if ((!item->walking) && (item->delete_me))
1455           if (!item->relcount) _item_del(item);
1456      }
1457 }
1458
1459 static void
1460 _item_unselect(Elm_Gengrid_Item *item)
1461 {
1462    if ((item->delete_me) || (!item->hilighted)) return;
1463    edje_object_signal_emit(item->base.view, "elm,state,unselected", "elm");
1464    item->hilighted = EINA_FALSE;
1465    if (item->selected)
1466      {
1467         item->selected = EINA_FALSE;
1468         item->wd->selected = eina_list_remove(item->wd->selected, item);
1469         evas_object_smart_callback_call(item->wd->self, SIG_UNSELECTED, item);
1470      }
1471 }
1472
1473 static void
1474 _calc_job(void *data)
1475 {
1476    Widget_Data *wd = data;
1477    Evas_Coord minw = 0, minh = 0, nmax = 0, cvw, cvh;
1478    int count;
1479
1480    evas_object_geometry_get(wd->pan_smart, NULL, NULL, &cvw, &cvh);
1481    if ((cvw != 0) || (cvh != 0))
1482      {
1483         if ((wd->horizontal) && (wd->item_height > 0))
1484           nmax = cvh / wd->item_height;
1485         else if (wd->item_width > 0)
1486           nmax = cvw / wd->item_width;
1487
1488         if (nmax < 1)
1489           nmax = 1;
1490
1491         count = wd->count;
1492         if (wd->horizontal)
1493           {
1494              minw = ceil(count / (float)nmax) * wd->item_width;
1495              minh = nmax * wd->item_height;
1496           }
1497         else
1498           {
1499              minw = nmax * wd->item_width;
1500              minh = ceil(count / (float)nmax) * wd->item_height;
1501           }
1502
1503         if ((minw != wd->minw) || (minh != wd->minh))
1504           {
1505              wd->minh = minh;
1506              wd->minw = minw;
1507              evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
1508           }
1509
1510         wd->nmax = nmax;
1511         evas_object_smart_changed(wd->pan_smart);
1512      }
1513    wd->calc_job = NULL;
1514 }
1515
1516 static void
1517 _pan_add(Evas_Object *obj)
1518 {
1519    Pan *sd;
1520    Evas_Object_Smart_Clipped_Data *cd;
1521
1522    _pan_sc.add(obj);
1523    cd = evas_object_smart_data_get(obj);
1524    sd = ELM_NEW(Pan);
1525    if (!sd) return;
1526    sd->__clipped_data = *cd;
1527    free(cd);
1528    evas_object_smart_data_set(obj, sd);
1529 }
1530
1531 static void
1532 _pan_del(Evas_Object *obj)
1533 {
1534    Pan *sd = evas_object_smart_data_get(obj);
1535
1536    if (!sd) return;
1537    _pan_sc.del(obj);
1538 }
1539
1540 static void
1541 _pan_set(Evas_Object *obj,
1542          Evas_Coord   x,
1543          Evas_Coord   y)
1544 {
1545    Pan *sd = evas_object_smart_data_get(obj);
1546    if ((x == sd->wd->pan_x) && (y == sd->wd->pan_y)) return;
1547    sd->wd->pan_x = x;
1548    sd->wd->pan_y = y;
1549    evas_object_smart_changed(obj);
1550 }
1551
1552 static void
1553 _pan_get(Evas_Object *obj,
1554          Evas_Coord  *x,
1555          Evas_Coord  *y)
1556 {
1557    Pan *sd = evas_object_smart_data_get(obj);
1558    if (x) *x = sd->wd->pan_x;
1559    if (y) *y = sd->wd->pan_y;
1560 }
1561
1562 static void
1563 _pan_child_size_get(Evas_Object *obj,
1564                     Evas_Coord  *w,
1565                     Evas_Coord  *h)
1566 {
1567    Pan *sd = evas_object_smart_data_get(obj);
1568    if (w) *w = sd->wd->minw;
1569    if (h) *h = sd->wd->minh;
1570 }
1571
1572 static void
1573 _pan_max_get(Evas_Object *obj,
1574              Evas_Coord  *x,
1575              Evas_Coord  *y)
1576 {
1577    Pan *sd = evas_object_smart_data_get(obj);
1578    Evas_Coord ow, oh;
1579
1580    if (!sd) return;
1581    evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
1582    if (x)
1583      *x = (ow < sd->wd->minw) ? sd->wd->minw - ow : 0;
1584    if (y)
1585      *y = (oh < sd->wd->minh) ? sd->wd->minh - oh : 0;
1586 }
1587
1588 static void
1589 _pan_min_get(Evas_Object *obj,
1590              Evas_Coord  *x,
1591              Evas_Coord  *y)
1592 {
1593    Pan *sd = evas_object_smart_data_get(obj);
1594    Evas_Coord mx, my;
1595
1596    if (!sd) return;
1597    _pan_max_get(obj, &mx, &my);
1598    if (x)
1599      *x = -mx * sd->wd->align_x;
1600    if (y)
1601      *y = -my * sd->wd->align_y;
1602 }
1603
1604 static void
1605 _pan_resize(Evas_Object *obj,
1606             Evas_Coord   w,
1607             Evas_Coord   h)
1608 {
1609    Pan *sd = evas_object_smart_data_get(obj);
1610    Evas_Coord ow, oh;
1611
1612    evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
1613    if ((ow == w) && (oh == h)) return;
1614    if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
1615    sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
1616 }
1617
1618 static void
1619 _pan_calculate(Evas_Object *obj)
1620 {
1621    Pan *sd = evas_object_smart_data_get(obj);
1622    Evas_Coord cx = 0, cy = 0;
1623    Elm_Gengrid_Item *item;
1624
1625    if (!sd) return;
1626    if (!sd->wd->nmax) return;
1627
1628    sd->wd->reorder_item_changed = EINA_FALSE;
1629
1630    EINA_INLIST_FOREACH(sd->wd->items, item)
1631      {
1632         _item_place(item, cx, cy);
1633         if (sd->wd->reorder_item_changed) return;
1634         if (sd->wd->horizontal)
1635           {
1636              cy = (cy + 1) % sd->wd->nmax;
1637              if (!cy) cx++;
1638           }
1639         else
1640           {
1641              cx = (cx + 1) % sd->wd->nmax;
1642              if (!cx) cy++;
1643           }
1644      }
1645
1646    if ((sd->wd->reorder_mode) && (sd->wd->reorder_item))
1647      {
1648         if (!sd->wd->reorder_item_changed)
1649           {
1650              sd->wd->old_pan_x = sd->wd->pan_x;
1651              sd->wd->old_pan_y = sd->wd->pan_y;
1652           }
1653         sd->wd->move_effect_enabled = EINA_FALSE;
1654      }
1655    evas_object_smart_callback_call(sd->wd->self, SIG_CHANGED, NULL);
1656 }
1657
1658 static void
1659 _pan_move(Evas_Object *obj,
1660           Evas_Coord x __UNUSED__,
1661           Evas_Coord y __UNUSED__)
1662 {
1663    Pan *sd = evas_object_smart_data_get(obj);
1664    if (!sd) return;
1665    if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
1666    sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
1667 }
1668
1669 static void
1670 _hold_on(void *data       __UNUSED__,
1671          Evas_Object     *obj,
1672          void *event_info __UNUSED__)
1673 {
1674    Widget_Data *wd = elm_widget_data_get(obj);
1675    if (!wd) return;
1676    elm_smart_scroller_hold_set(wd->scr, 1);
1677 }
1678
1679 static void
1680 _hold_off(void *data       __UNUSED__,
1681           Evas_Object     *obj,
1682           void *event_info __UNUSED__)
1683 {
1684    Widget_Data *wd = elm_widget_data_get(obj);
1685    if (!wd) return;
1686    elm_smart_scroller_hold_set(wd->scr, 0);
1687 }
1688
1689 static void
1690 _freeze_on(void *data       __UNUSED__,
1691            Evas_Object     *obj,
1692            void *event_info __UNUSED__)
1693 {
1694    Widget_Data *wd = elm_widget_data_get(obj);
1695    if (!wd) return;
1696    elm_smart_scroller_freeze_set(wd->scr, 1);
1697 }
1698
1699 static void
1700 _freeze_off(void *data       __UNUSED__,
1701             Evas_Object     *obj,
1702             void *event_info __UNUSED__)
1703 {
1704    Widget_Data *wd = elm_widget_data_get(obj);
1705    if (!wd) return;
1706    elm_smart_scroller_freeze_set(wd->scr, 0);
1707 }
1708
1709 static void
1710 _scr_drag_start(void            *data,
1711                 Evas_Object *obj __UNUSED__,
1712                 void *event_info __UNUSED__)
1713 {
1714    evas_object_smart_callback_call(data, SIG_SCROLL_DRAG_START, NULL);
1715 }
1716
1717 static void
1718 _scr_drag_stop(void            *data,
1719                Evas_Object *obj __UNUSED__,
1720                void *event_info __UNUSED__)
1721 {
1722    evas_object_smart_callback_call(data, SIG_SCROLL_DRAG_STOP, NULL);
1723 }
1724
1725 static void
1726 _scr_scroll(void            *data,
1727             Evas_Object *obj __UNUSED__,
1728             void *event_info __UNUSED__)
1729 {
1730    evas_object_smart_callback_call(data, SIG_SCROLL, NULL);
1731 }
1732
1733 static int
1734 _elm_gengrid_item_compare_data(const void *data, const void *data1)
1735 {
1736    const Elm_Gengrid_Item *item = data;
1737    const Elm_Gengrid_Item *item1 = data1;
1738
1739    return _elm_gengrid_item_compare_data_cb(item->base.data, item1->base.data);
1740 }
1741
1742 static int
1743 _elm_gengrid_item_compare(const void *data, const void *data1)
1744 {
1745    Elm_Gengrid_Item *item, *item1;
1746    item = ELM_GENGRID_ITEM_FROM_INLIST(data);
1747    item1 = ELM_GENGRID_ITEM_FROM_INLIST(data1);
1748    return _elm_gengrid_item_compare_cb(item, item1);
1749 }
1750
1751 /**
1752  * Add a new Gengrid object.
1753  *
1754  * @param parent The parent object.
1755  * @return  The new object or NULL if it cannot be created.
1756  *
1757  * @see elm_gengrid_item_size_set()
1758  * @see elm_gengrid_horizontal_set()
1759  * @see elm_gengrid_item_append()
1760  * @see elm_gengrid_item_del()
1761  * @see elm_gengrid_clear()
1762  *
1763  * @ingroup Gengrid
1764  */
1765 EAPI Evas_Object *
1766 elm_gengrid_add(Evas_Object *parent)
1767 {
1768    Evas_Object *obj;
1769    Evas *e;
1770    Widget_Data *wd;
1771    static Evas_Smart *smart = NULL;
1772    Eina_Bool bounce = _elm_config->thumbscroll_bounce_enable;
1773
1774    ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
1775
1776    ELM_SET_WIDTYPE(widtype, "gengrid");
1777    elm_widget_type_set(obj, "gengrid");
1778    elm_widget_sub_object_add(parent, obj);
1779    elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
1780    elm_widget_data_set(obj, wd);
1781    elm_widget_del_hook_set(obj, _del_hook);
1782    elm_widget_del_pre_hook_set(obj, _del_pre_hook);
1783    elm_widget_theme_hook_set(obj, _theme_hook);
1784    elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
1785    elm_widget_can_focus_set(obj, EINA_TRUE);
1786    elm_widget_event_hook_set(obj, _event_hook);
1787
1788    wd->scr = elm_smart_scroller_add(e);
1789    elm_smart_scroller_widget_set(wd->scr, obj);
1790    elm_smart_scroller_object_theme_set(obj, wd->scr, "gengrid", "base",
1791                                        "default");
1792    elm_widget_resize_object_set(obj, wd->scr);
1793
1794    evas_object_smart_callback_add(wd->scr, "drag,start", _scr_drag_start, obj);
1795    evas_object_smart_callback_add(wd->scr, "drag,stop", _scr_drag_stop, obj);
1796    evas_object_smart_callback_add(wd->scr, "scroll", _scr_scroll, obj);
1797
1798    elm_smart_scroller_bounce_allow_set(wd->scr, bounce, bounce);
1799
1800    wd->self = obj;
1801    wd->align_x = 0.5;
1802    wd->align_y = 0.5;
1803    wd->h_bounce = bounce;
1804    wd->v_bounce = bounce;
1805    wd->no_select = EINA_FALSE;
1806
1807    evas_object_smart_callback_add(obj, "scroll-hold-on", _hold_on, obj);
1808    evas_object_smart_callback_add(obj, "scroll-hold-off", _hold_off, obj);
1809    evas_object_smart_callback_add(obj, "scroll-freeze-on", _freeze_on, obj);
1810    evas_object_smart_callback_add(obj, "scroll-freeze-off", _freeze_off, obj);
1811
1812    evas_object_smart_callbacks_descriptions_set(obj, _signals);
1813
1814    if (!smart)
1815      {
1816         static Evas_Smart_Class sc;
1817
1818         evas_object_smart_clipped_smart_set(&_pan_sc);
1819         sc = _pan_sc;
1820         sc.name = "elm_gengrid_pan";
1821         sc.version = EVAS_SMART_CLASS_VERSION;
1822         sc.add = _pan_add;
1823         sc.del = _pan_del;
1824         sc.resize = _pan_resize;
1825         sc.move = _pan_move;
1826         sc.calculate = _pan_calculate;
1827         smart = evas_smart_class_new(&sc);
1828      }
1829    if (smart)
1830      {
1831         wd->pan_smart = evas_object_smart_add(e, smart);
1832         wd->pan = evas_object_smart_data_get(wd->pan_smart);
1833         wd->pan->wd = wd;
1834      }
1835
1836    elm_smart_scroller_extern_pan_set(wd->scr, wd->pan_smart,
1837                                      _pan_set, _pan_get, _pan_max_get,
1838                                      _pan_min_get, _pan_child_size_get);
1839
1840    _mirrored_set(obj, elm_widget_mirrored_get(obj));
1841    return obj;
1842 }
1843
1844 /**
1845  * Set the size for the item of the Gengrid.
1846  *
1847  * @param obj The Gengrid object.
1848  * @param w The item's width.
1849  * @param h The item's height;
1850  *
1851  * @see elm_gengrid_item_size_get()
1852  *
1853  * @ingroup Gengrid
1854  */
1855 EAPI void
1856 elm_gengrid_item_size_set(Evas_Object *obj,
1857                           Evas_Coord   w,
1858                           Evas_Coord   h)
1859 {
1860    ELM_CHECK_WIDTYPE(obj, widtype);
1861    Widget_Data *wd = elm_widget_data_get(obj);
1862    if (!wd) return;
1863    if ((wd->item_width == w) && (wd->item_height == h)) return;
1864    wd->item_width = w;
1865    wd->item_height = h;
1866    if (wd->calc_job) ecore_job_del(wd->calc_job);
1867    wd->calc_job = ecore_job_add(_calc_job, wd);
1868 }
1869
1870 /**
1871  * Get the size of the item of the Gengrid.
1872  *
1873  * @param obj The Gengrid object.
1874  * @param w Pointer to the item's width.
1875  * @param h Pointer to the item's height.
1876  *
1877  * @see elm_gengrid_item_size_get()
1878  *
1879  * @ingroup Gengrid
1880  */
1881 EAPI void
1882 elm_gengrid_item_size_get(const Evas_Object *obj,
1883                           Evas_Coord        *w,
1884                           Evas_Coord        *h)
1885 {
1886    ELM_CHECK_WIDTYPE(obj, widtype);
1887    Widget_Data *wd = elm_widget_data_get(obj);
1888    if (!wd) return;
1889    if (w) *w = wd->item_width;
1890    if (h) *h = wd->item_height;
1891 }
1892
1893 /**
1894  * Set item's alignment within the scroller.
1895  *
1896  * @param obj The Gengrid object.
1897  * @param align_x The x alignment (0 <= x <= 1).
1898  * @param align_y The y alignment (0 <= y <= 1).
1899  *
1900  * @see elm_gengrid_align_get()
1901  *
1902  * @ingroup Gengrid
1903  */
1904 EAPI void
1905 elm_gengrid_align_set(Evas_Object *obj,
1906                       double       align_x,
1907                       double       align_y)
1908 {
1909    ELM_CHECK_WIDTYPE(obj, widtype);
1910    Widget_Data *wd = elm_widget_data_get(obj);
1911
1912    if (align_x > 1.0)
1913      align_x = 1.0;
1914    else if (align_x < 0.0)
1915      align_x = 0.0;
1916    wd->align_x = align_x;
1917
1918    if (align_y > 1.0)
1919      align_y = 1.0;
1920    else if (align_y < 0.0)
1921      align_y = 0.0;
1922    wd->align_y = align_y;
1923 }
1924
1925 /**
1926  * Get the alignenment set for the Gengrid object.
1927  *
1928  * @param obj The Gengrid object.
1929  * @param align_x Pointer to x alignenment.
1930  * @param align_y Pointer to y alignenment.
1931  *
1932  * @see elm_gengrid_align_set()
1933  *
1934  * @ingroup Gengrid
1935  */
1936 EAPI void
1937 elm_gengrid_align_get(const Evas_Object *obj,
1938                       double            *align_x,
1939                       double            *align_y)
1940 {
1941    ELM_CHECK_WIDTYPE(obj, widtype);
1942    Widget_Data *wd = elm_widget_data_get(obj);
1943    if (align_x) *align_x = wd->align_x;
1944    if (align_y) *align_y = wd->align_y;
1945 }
1946
1947 /**
1948  * Add item to the end of the Gengrid.
1949  *
1950  * @param obj The Gengrid object.
1951  * @param gic The item class for the item.
1952  * @param data The item data.
1953  * @param func Convenience function called when item is selected.
1954  * @param func_data Data passed to @p func above.
1955  * @return A handle to the item added or NULL if not possible.
1956  *
1957  * @see elm_gengrid_item_prepend()
1958  * @see elm_gengrid_item_insert_before()
1959  * @see elm_gengrid_item_insert_after()
1960  * @see elm_gengrid_item_del()
1961  *
1962  * @ingroup Gengrid
1963  */
1964 EAPI Elm_Gengrid_Item *
1965 elm_gengrid_item_append(Evas_Object                  *obj,
1966                         const Elm_Gengrid_Item_Class *gic,
1967                         const void                   *data,
1968                         Evas_Smart_Cb                 func,
1969                         const void                   *func_data)
1970 {
1971    Elm_Gengrid_Item *item;
1972    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1973    Widget_Data *wd = elm_widget_data_get(obj);
1974    if (!wd) return NULL;
1975
1976    item = _item_create(wd, gic, data, func, func_data);
1977    if (!item) return NULL;
1978    wd->items = eina_inlist_append(wd->items, EINA_INLIST_GET(item));
1979
1980    if (wd->calc_job) ecore_job_del(wd->calc_job);
1981    wd->calc_job = ecore_job_add(_calc_job, wd);
1982
1983    return item;
1984 }
1985
1986 /**
1987  * Add item at start of the Gengrid.
1988  *
1989  * This adds an item to the beginning of the grid.
1990  *
1991  * @param obj The Gengrid object.
1992  * @param gic The item class for the item.
1993  * @param data The item data.
1994  * @param func Convenience function called when item is selected.
1995  * @param func_data Data passed to @p func above.
1996  * @return A handle to the item added or NULL if not possible.
1997  *
1998  * @see elm_gengrid_item_append()
1999  * @see elm_gengrid_item_insert_before()
2000  * @see elm_gengrid_item_insert_after()
2001  * @see elm_gengrid_item_del()
2002  *
2003  * @ingroup Gengrid
2004  */
2005 EAPI Elm_Gengrid_Item *
2006 elm_gengrid_item_prepend(Evas_Object                  *obj,
2007                          const Elm_Gengrid_Item_Class *gic,
2008                          const void                   *data,
2009                          Evas_Smart_Cb                 func,
2010                          const void                   *func_data)
2011 {
2012    Elm_Gengrid_Item *item;
2013    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2014    Widget_Data *wd = elm_widget_data_get(obj);
2015    if (!wd) return NULL;
2016
2017    item = _item_create(wd, gic, data, func, func_data);
2018    if (!item) return NULL;
2019    wd->items = eina_inlist_prepend(wd->items, EINA_INLIST_GET(item));
2020
2021    if (wd->calc_job) ecore_job_del(wd->calc_job);
2022    wd->calc_job = ecore_job_add(_calc_job, wd);
2023
2024    return item;
2025 }
2026
2027 /**
2028  * Insert and item before another in the Gengrid.
2029  *
2030  * This inserts an item before another in the grid.
2031  *
2032  * @param obj The Gengrid object.
2033  * @param gic The item class for the item.
2034  * @param data The item data.
2035  * @param relative The item to which insert before.
2036  * @param func Convenience function called when item is selected.
2037  * @param func_data Data passed to @p func above.
2038  * @return A handle to the item added or NULL if not possible.
2039  *
2040  * @see elm_gengrid_item_append()
2041  * @see elm_gengrid_item_prepend()
2042  * @see elm_gengrid_item_insert_after()
2043  * @see elm_gengrid_item_del()
2044  *
2045  * @ingroup Gengrid
2046  */
2047 EAPI Elm_Gengrid_Item *
2048 elm_gengrid_item_insert_before(Evas_Object                  *obj,
2049                                const Elm_Gengrid_Item_Class *gic,
2050                                const void                   *data,
2051                                Elm_Gengrid_Item             *relative,
2052                                Evas_Smart_Cb                 func,
2053                                const void                   *func_data)
2054 {
2055    Elm_Gengrid_Item *item;
2056    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2057    EINA_SAFETY_ON_NULL_RETURN_VAL(relative, NULL);
2058    Widget_Data *wd = elm_widget_data_get(obj);
2059    if (!wd) return NULL;
2060
2061    item = _item_create(wd, gic, data, func, func_data);
2062    if (!item) return NULL;
2063    wd->items = eina_inlist_prepend_relative
2064       (wd->items, EINA_INLIST_GET(item), EINA_INLIST_GET(relative));
2065
2066    if (wd->calc_job) ecore_job_del(wd->calc_job);
2067    wd->calc_job = ecore_job_add(_calc_job, wd);
2068
2069    return item;
2070 }
2071
2072 /**
2073  * Insert and item after another in the Gengrid.
2074  *
2075  * This inserts an item after another in the grid.
2076  *
2077  * @param obj The Gengrid object.
2078  * @param gic The item class for the item.
2079  * @param data The item data.
2080  * @param relative The item to which insert after.
2081  * @param func Convenience function called when item is selected.
2082  * @param func_data Data passed to @p func above.
2083  * @return A handle to the item added or NULL if not possible.
2084  *
2085  * @see elm_gengrid_item_append()
2086  * @see elm_gengrid_item_prepend()
2087  * @see elm_gengrid_item_insert_before()
2088  * @see elm_gengrid_item_del()
2089  *
2090  * @ingroup Gengrid
2091  */
2092 EAPI Elm_Gengrid_Item *
2093 elm_gengrid_item_insert_after(Evas_Object                  *obj,
2094                               const Elm_Gengrid_Item_Class *gic,
2095                               const void                   *data,
2096                               Elm_Gengrid_Item             *relative,
2097                               Evas_Smart_Cb                 func,
2098                               const void                   *func_data)
2099 {
2100    Elm_Gengrid_Item *item;
2101    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2102    EINA_SAFETY_ON_NULL_RETURN_VAL(relative, NULL);
2103    Widget_Data *wd = elm_widget_data_get(obj);
2104    if (!wd) return NULL;
2105
2106    item = _item_create(wd, gic, data, func, func_data);
2107    if (!item) return NULL;
2108    wd->items = eina_inlist_append_relative
2109       (wd->items, EINA_INLIST_GET(item), EINA_INLIST_GET(relative));
2110
2111    if (wd->calc_job) ecore_job_del(wd->calc_job);
2112    wd->calc_job = ecore_job_add(_calc_job, wd);
2113
2114    return item;
2115 }
2116
2117 EAPI Elm_Gengrid_Item *
2118 elm_gengrid_item_direct_sorted_insert(Evas_Object                  *obj,
2119                                       const Elm_Gengrid_Item_Class *gic,
2120                                       const void                   *data,
2121                                       Eina_Compare_Cb               comp,
2122                                       Evas_Smart_Cb                 func,
2123                                       const void                   *func_data)
2124 {
2125    Elm_Gengrid_Item *item;
2126    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2127    Widget_Data *wd = elm_widget_data_get(obj);
2128    if (!wd) return NULL;
2129
2130    item = _item_create(wd, gic, data, func, func_data);
2131    if (!item) return NULL;
2132
2133    _elm_gengrid_item_compare_cb = comp;
2134    wd->items = eina_inlist_sorted_insert(wd->items, EINA_INLIST_GET(item),
2135                                          _elm_gengrid_item_compare);
2136    if (wd->calc_job) ecore_job_del(wd->calc_job);
2137    wd->calc_job = ecore_job_add(_calc_job, wd);
2138
2139    return item;
2140 }
2141
2142 EAPI Elm_Gengrid_Item *
2143 elm_gengrid_item_sorted_insert(Evas_Object                  *obj,
2144                                const Elm_Gengrid_Item_Class *gic,
2145                                const void                   *data,
2146                                Eina_Compare_Cb               comp,
2147                                Evas_Smart_Cb                 func,
2148                                const void                   *func_data)
2149 {
2150    _elm_gengrid_item_compare_data_cb = comp;
2151
2152    return elm_gengrid_item_direct_sorted_insert(obj, gic, data, _elm_gengrid_item_compare_data, func, func_data);
2153 }
2154
2155 /**
2156  * Remove an item from the Gengrid.
2157  *
2158  * @param item The item to be removed.
2159  * @return @c EINA_TRUE on success or @c EINA_FALSE otherwise.
2160  *
2161  * @see elm_gengrid_clear() to remove all items of the Gengrid.
2162  *
2163  * @ingroup Gengrid
2164  */
2165 EAPI void
2166 elm_gengrid_item_del(Elm_Gengrid_Item *item)
2167 {
2168    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2169    if ((item->relcount > 0) || (item->walking > 0))
2170      {
2171         item->delete_me = EINA_TRUE;
2172         elm_widget_item_pre_notify_del(item);
2173         if (item->selected)
2174           item->wd->selected = eina_list_remove(item->wd->selected, item);
2175         if (item->gic->func.del)
2176           item->gic->func.del((void *)item->base.data, item->wd->self);
2177         return;
2178      }
2179
2180    _item_del(item);
2181 }
2182
2183 /**
2184  * Set for what direction the Gengrid will expand.
2185  *
2186  * @param obj The Gengrid object.
2187  * @param setting If @c EINA_TRUE the Gengrid will expand horizontally
2188  * or vertically if @c EINA_FALSE.
2189  *
2190  * @ingroup Gengrid
2191  */
2192 EAPI void
2193 elm_gengrid_horizontal_set(Evas_Object *obj,
2194                            Eina_Bool    setting)
2195 {
2196    ELM_CHECK_WIDTYPE(obj, widtype);
2197    Widget_Data *wd = elm_widget_data_get(obj);
2198    if (!wd) return;
2199    if (setting == wd->horizontal) return;
2200    wd->horizontal = setting;
2201
2202    /* Update the items to conform to the new layout */
2203    if (wd->calc_job) ecore_job_del(wd->calc_job);
2204    wd->calc_job = ecore_job_add(_calc_job, wd);
2205 }
2206
2207 /**
2208  * Get for what direction the Gengrid is expanded.
2209  *
2210  * @param obj The Gengrid object.
2211  * @return If the Gengrid is expanded horizontally return @c EINA_TRUE
2212  * else @c EINA_FALSE.
2213  *
2214  * @ingroup Gengrid
2215  */
2216 EAPI Eina_Bool
2217 elm_gengrid_horizontal_get(const Evas_Object *obj)
2218 {
2219    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2220    Widget_Data *wd = elm_widget_data_get(obj);
2221    if (!wd) return EINA_FALSE;
2222    return wd->horizontal;
2223 }
2224
2225 /**
2226  * Clear the Gengrid
2227  *
2228  * This clears all items in the Gengrid, leaving it empty.
2229  *
2230  * @param obj The Gengrid object.
2231  *
2232  * @see elm_gengrid_item_del() to remove just one item.
2233  *
2234  * @ingroup Gengrid
2235  */
2236 EAPI void
2237 elm_gengrid_clear(Evas_Object *obj)
2238 {
2239    ELM_CHECK_WIDTYPE(obj, widtype);
2240    Widget_Data *wd = elm_widget_data_get(obj);
2241    if (!wd) return;
2242
2243    if (wd->calc_job)
2244      {
2245         ecore_job_del(wd->calc_job);
2246         wd->calc_job = NULL;
2247      }
2248
2249    if (wd->walking > 0)
2250      {
2251         Elm_Gengrid_Item *item;
2252         wd->clear_me = 1;
2253         EINA_INLIST_FOREACH(wd->items, item)
2254            item->delete_me = 1;
2255         return;
2256      }
2257    wd->clear_me = 0;
2258    while (wd->items)
2259      {
2260         Elm_Gengrid_Item *item = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
2261
2262         wd->items = eina_inlist_remove(wd->items, wd->items);
2263         elm_widget_item_pre_notify_del(item);
2264         if (item->realized) _item_unrealize(item);
2265         if (item->gic->func.del)
2266           item->gic->func.del((void *)item->base.data, wd->self);
2267         if (item->long_timer) ecore_timer_del(item->long_timer);
2268         elm_widget_item_del(item);
2269      }
2270
2271    if (wd->selected)
2272      {
2273         eina_list_free(wd->selected);
2274         wd->selected = NULL;
2275      }
2276
2277    wd->pan_x = 0;
2278    wd->pan_y = 0;
2279    wd->minw = 0;
2280    wd->minh = 0;
2281    wd->count = 0;
2282    evas_object_size_hint_min_set(wd->pan_smart, wd->minw, wd->minh);
2283    evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
2284 }
2285
2286 /**
2287  * Get the real evas object of the Gengrid item
2288  *
2289  * This returns the actual evas object used for the specified Gengrid
2290  * item.  This may be NULL as it may not be created, and may be
2291  * deleted at any time by Gengrid. Do not modify this object (move,
2292  * resize, show, hide etc.) as Gengrid is controlling it. This
2293  * function is for querying, emitting custom signals or hooking lower
2294  * level callbacks for events. Do not delete this object under any
2295  * circumstances.
2296  *
2297  * @param item The Gengrid item.
2298  * @return the evas object associated to this item.
2299  *
2300  * @see elm_gengrid_item_data_get()
2301  *
2302  * @ingroup Gengrid
2303  */
2304 EAPI const Evas_Object *
2305 elm_gengrid_item_object_get(const Elm_Gengrid_Item *item)
2306 {
2307    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2308    return item->base.view;
2309 }
2310
2311 /**
2312  * Update the contents of an item
2313  *
2314  * This updates an item by calling all the item class functions again
2315  * to get the icons, labels and states. Use this when the original
2316  * item data has changed and the changes are desired to be reflected.
2317  *
2318  * @param item The item
2319  *
2320  * @ingroup Gengrid
2321  */
2322 EAPI void
2323 elm_gengrid_item_update(Elm_Gengrid_Item *item)
2324 {
2325    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2326    if (!item->realized) return;
2327    if (item->want_unrealize) return;
2328    _item_unrealize(item);
2329    _item_realize(item);
2330    _item_place(item, item->x, item->y);
2331 }
2332
2333 /**
2334  * Returns the data associated to an item
2335  *
2336  * This returns the data value passed on the elm_gengrid_item_append()
2337  * and related item addition calls.
2338  *
2339  * @param item The Gengrid item.
2340  * @return the data associated to this item.
2341  *
2342  * @see elm_gengrid_item_append()
2343  * @see elm_gengrid_item_object_get()
2344  *
2345  * @ingroup Gengrid
2346  */
2347 EAPI void *
2348 elm_gengrid_item_data_get(const Elm_Gengrid_Item *item)
2349 {
2350    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2351    return elm_widget_item_data_get(item);
2352 }
2353
2354 /**
2355  * Set the data item from the gengrid item
2356  *
2357  * This sets the data value passed on the elm_gengrid_item_append() and
2358  * related item addition calls. This function will not call
2359  * elm_gengrid_item_update() anymore. So call elm_gengrid_item_update()
2360  * manually only when it's needed.
2361  *
2362  * @param item The item
2363  * @param data The new data pointer to set
2364  *
2365  * @ingroup Gengrid
2366  */
2367 EAPI void
2368 elm_gengrid_item_data_set(Elm_Gengrid_Item *item,
2369                           const void       *data)
2370 {
2371    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2372    elm_widget_item_data_set(item, data);
2373 }
2374
2375 EAPI const Elm_Gengrid_Item_Class *
2376 elm_gengrid_item_item_class_get(const Elm_Gengrid_Item *item)
2377 {
2378    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2379    if (item->delete_me) return NULL;
2380    return item->gic;
2381 }
2382
2383 EAPI void
2384 elm_gengrid_item_item_class_set(Elm_Gengrid_Item *item,
2385                                 const Elm_Gengrid_Item_Class *gic)
2386 {
2387    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2388    EINA_SAFETY_ON_NULL_RETURN(gic);
2389    if (item->delete_me) return;
2390    item->gic = gic;
2391    elm_gengrid_item_update(item);
2392 }
2393
2394 /**
2395  * Get the item's coordinates.
2396  *
2397  * This returns the logical position of the item whithin the Gengrid.
2398  *
2399  * @param item The Gengrid item.
2400  * @param x The x-axis coordinate pointer.
2401  * @param y The y-axis coordinate pointer.
2402  *
2403  * @ingroup Gengrid
2404  */
2405 EAPI void
2406 elm_gengrid_item_pos_get(const Elm_Gengrid_Item *item,
2407                          unsigned int           *x,
2408                          unsigned int           *y)
2409 {
2410    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2411    if (x) *x = item->x;
2412    if (y) *y = item->y;
2413 }
2414
2415 /**
2416  * Enable or disable multi-select in the Gengrid.
2417  *
2418  * This enables (EINA_TRUE) or disables (EINA_FALSE) multi-select in
2419  * the Gengrid.  This allows more than 1 item to be selected.
2420  *
2421  * @param obj The Gengrid object.
2422  * @param multi Multi-select enabled/disabled
2423  *
2424  * @ingroup Gengrid
2425  */
2426 EAPI void
2427 elm_gengrid_multi_select_set(Evas_Object *obj,
2428                              Eina_Bool    multi)
2429 {
2430    ELM_CHECK_WIDTYPE(obj, widtype);
2431    Widget_Data *wd = elm_widget_data_get(obj);
2432    if (!wd) return;
2433    wd->multi = multi;
2434 }
2435
2436 /**
2437  * Get if multi-select in Gengrid is enabled or disabled
2438  *
2439  * @param obj The Gengrid object
2440  * @return Multi-select enable/disable
2441  * (EINA_TRUE = enabled / EINA_FALSE = disabled)
2442  *
2443  * @ingroup Gengrid
2444  */
2445 EAPI Eina_Bool
2446 elm_gengrid_multi_select_get(const Evas_Object *obj)
2447 {
2448    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2449    Widget_Data *wd = elm_widget_data_get(obj);
2450    if (!wd) return EINA_FALSE;
2451    return wd->multi;
2452 }
2453
2454 /**
2455  * Get the selected item in the Gengrid
2456  *
2457  * This gets the selected item in the Gengrid (if multi-select is
2458  * enabled only the first item in the list is selected - which is not
2459  * very useful, so see elm_gengrid_selected_items_get() for when
2460  * multi-select is used).
2461  *
2462  * If no item is selected, NULL is returned.
2463  *
2464  * @param obj The Gengrid object.
2465  * @return The selected item, or NULL if none.
2466  *
2467  * @ingroup Gengrid
2468  */
2469 EAPI Elm_Gengrid_Item *
2470 elm_gengrid_selected_item_get(const Evas_Object *obj)
2471 {
2472    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2473    Widget_Data *wd = elm_widget_data_get(obj);
2474    if (!wd) return NULL;
2475    if (wd->selected) return wd->selected->data;
2476    return NULL;
2477 }
2478
2479 /**
2480  * Get a list of selected items in the Gengrid.
2481  *
2482  * This returns a list of the selected items. This list pointer is
2483  * only valid so long as no items are selected or unselected (or
2484  * unselected implictly by deletion). The list contains
2485  * Elm_Gengrid_Item pointers.
2486  *
2487  * @param obj The Gengrid object.
2488  * @return The list of selected items, or NULL if none are selected.
2489  *
2490  * @ingroup Gengrid
2491  */
2492 EAPI const Eina_List *
2493 elm_gengrid_selected_items_get(const Evas_Object *obj)
2494 {
2495    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2496    Widget_Data *wd = elm_widget_data_get(obj);
2497    if (!wd) return NULL;
2498    return wd->selected;
2499 }
2500
2501 /**
2502  * Set the selected state of an item.
2503  *
2504  * This sets the selected state of an item. If multi-select is not
2505  * enabled and selected is EINA_TRUE, previously selected items are
2506  * unselected.
2507  *
2508  * @param item The item
2509  * @param selected The selected state.
2510  *
2511  * @ingroup Gengrid
2512  */
2513 EAPI void
2514 elm_gengrid_item_selected_set(Elm_Gengrid_Item *item,
2515                               Eina_Bool         selected)
2516 {
2517    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2518    Widget_Data *wd = item->wd;
2519    if (!wd) return;
2520    if (item->delete_me) return;
2521    selected = !!selected;
2522    if (item->selected == selected) return;
2523
2524    if (selected)
2525      {
2526         if (!wd->multi)
2527           {
2528              while (wd->selected)
2529                _item_unselect(wd->selected->data);
2530           }
2531         _item_hilight(item);
2532         _item_select(item);
2533      }
2534    else
2535      _item_unselect(item);
2536 }
2537
2538 /**
2539  * Get the selected state of an item.
2540  *
2541  * This gets the selected state of an item (1 selected, 0 not selected).
2542  *
2543  * @param item The item
2544  * @return The selected state
2545  *
2546  * @ingroup Gengrid
2547  */
2548 EAPI Eina_Bool
2549 elm_gengrid_item_selected_get(const Elm_Gengrid_Item *item)
2550 {
2551    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
2552    return item->selected;
2553 }
2554
2555 /**
2556  * Sets the disabled state of an item.
2557  *
2558  * A disabled item cannot be selected or unselected. It will also
2559  * change appearance to disabled. This sets the disabled state (1
2560  * disabled, 0 not disabled).
2561  *
2562  * @param item The item
2563  * @param disabled The disabled state
2564  *
2565  * @ingroup Gengrid
2566  */
2567 EAPI void
2568 elm_gengrid_item_disabled_set(Elm_Gengrid_Item *item,
2569                               Eina_Bool         disabled)
2570 {
2571    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2572    if (item->disabled == disabled) return;
2573    if (item->delete_me) return;
2574    item->disabled = !!disabled;
2575    if (item->realized)
2576      {
2577         if (item->disabled)
2578           edje_object_signal_emit(item->base.view, "elm,state,disabled", "elm");
2579         else
2580           edje_object_signal_emit(item->base.view, "elm,state,enabled", "elm");
2581      }
2582 }
2583
2584 /**
2585  * Get the disabled state of an item.
2586  *
2587  * This gets the disabled state of the given item.
2588  *
2589  * @param item The item
2590  * @return The disabled state
2591  *
2592  * @ingroup Gengrid
2593  */
2594 EAPI Eina_Bool
2595 elm_gengrid_item_disabled_get(const Elm_Gengrid_Item *item)
2596 {
2597    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
2598    if (item->delete_me) return EINA_FALSE;
2599    return item->disabled;
2600 }
2601
2602 static Evas_Object *
2603 _elm_gengrid_item_label_create(void        *data,
2604                                Evas_Object *obj,
2605                                void *item   __UNUSED__)
2606 {
2607    Evas_Object *label = elm_label_add(obj);
2608    if (!label)
2609      return NULL;
2610    elm_object_style_set(label, "tooltip");
2611    elm_object_text_set(label, data);
2612    return label;
2613 }
2614
2615 static void
2616 _elm_gengrid_item_label_del_cb(void            *data,
2617                                Evas_Object *obj __UNUSED__,
2618                                void *event_info __UNUSED__)
2619 {
2620    eina_stringshare_del(data);
2621 }
2622
2623 /**
2624  * Set the text to be shown in the gengrid item.
2625  *
2626  * @param item Target item
2627  * @param text The text to set in the content
2628  *
2629  * Setup the text as tooltip to object. The item can have only one
2630  * tooltip, so any previous tooltip data is removed.
2631  *
2632  * @ingroup Gengrid
2633  */
2634 EAPI void
2635 elm_gengrid_item_tooltip_text_set(Elm_Gengrid_Item *item,
2636                                   const char       *text)
2637 {
2638    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2639    text = eina_stringshare_add(text);
2640    elm_gengrid_item_tooltip_content_cb_set(item, _elm_gengrid_item_label_create,
2641                                            text,
2642                                            _elm_gengrid_item_label_del_cb);
2643 }
2644
2645 /**
2646  * Set the content to be shown in the tooltip item
2647  *
2648  * Setup the tooltip to item. The item can have only one tooltip, so
2649  * any previous tooltip data is removed. @p func(with @p data) will be
2650  * called every time that need show the tooltip and it should return a
2651  * valid Evas_Object. This object is then managed fully by tooltip
2652  * system and is deleted when the tooltip is gone.
2653  *
2654  * @param item the gengrid item being attached a tooltip.
2655  * @param func the function used to create the tooltip contents.
2656  * @param data what to provide to @a func as callback data/context.
2657  * @param del_cb called when data is not needed anymore, either when
2658  *        another callback replaces @func, the tooltip is unset with
2659  *        elm_gengrid_item_tooltip_unset() or the owner @an item
2660  *        dies. This callback receives as the first parameter the
2661  *        given @a data, and @c event_info is the item.
2662  *
2663  * @ingroup Gengrid
2664  */
2665 EAPI void
2666 elm_gengrid_item_tooltip_content_cb_set(Elm_Gengrid_Item           *item,
2667                                         Elm_Tooltip_Item_Content_Cb func,
2668                                         const void                 *data,
2669                                         Evas_Smart_Cb               del_cb)
2670 {
2671    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_GOTO(item, error);
2672
2673    if ((item->tooltip.content_cb == func) && (item->tooltip.data == data))
2674      return;
2675
2676    if (item->tooltip.del_cb)
2677      item->tooltip.del_cb((void *)item->tooltip.data,
2678                           item->base.widget, item);
2679    item->tooltip.content_cb = func;
2680    item->tooltip.data = data;
2681    item->tooltip.del_cb = del_cb;
2682    if (item->base.view)
2683      {
2684         elm_widget_item_tooltip_content_cb_set(item,
2685                                                item->tooltip.content_cb,
2686                                                item->tooltip.data, NULL);
2687         elm_widget_item_tooltip_style_set(item, item->tooltip.style);
2688      }
2689
2690    return;
2691
2692 error:
2693    if (del_cb) del_cb((void *)data, NULL, NULL);
2694 }
2695
2696 /**
2697  * Unset tooltip from item
2698  *
2699  * @param item gengrid item to remove previously set tooltip.
2700  *
2701  * Remove tooltip from item. The callback provided as del_cb to
2702  * elm_gengrid_item_tooltip_content_cb_set() will be called to notify
2703  * it is not used anymore.
2704  *
2705  * @see elm_gengrid_item_tooltip_content_cb_set()
2706  *
2707  * @ingroup Gengrid
2708  */
2709 EAPI void
2710 elm_gengrid_item_tooltip_unset(Elm_Gengrid_Item *item)
2711 {
2712    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2713    if ((item->base.view) && (item->tooltip.content_cb))
2714      elm_widget_item_tooltip_unset(item);
2715
2716    if (item->tooltip.del_cb)
2717      item->tooltip.del_cb((void *)item->tooltip.data, item->base.widget, item);
2718    item->tooltip.del_cb = NULL;
2719    item->tooltip.content_cb = NULL;
2720    item->tooltip.data = NULL;
2721    if (item->tooltip.style)
2722      elm_gengrid_item_tooltip_style_set(item, NULL);
2723 }
2724
2725 /**
2726  * Sets a different style for this item tooltip.
2727  *
2728  * @note before you set a style you should define a tooltip with
2729  *       elm_gengrid_item_tooltip_content_cb_set() or
2730  *       elm_gengrid_item_tooltip_text_set()
2731  *
2732  * @param item gengrid item with tooltip already set.
2733  * @param style the theme style to use (default, transparent, ...)
2734  *
2735  * @ingroup Gengrid
2736  */
2737 EAPI void
2738 elm_gengrid_item_tooltip_style_set(Elm_Gengrid_Item *item,
2739                                    const char       *style)
2740 {
2741    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2742    eina_stringshare_replace(&item->tooltip.style, style);
2743    if (item->base.view) elm_widget_item_tooltip_style_set(item, style);
2744 }
2745
2746 /**
2747  * Get the style for this item tooltip.
2748  *
2749  * @param item gengrid item with tooltip already set.
2750  * @return style the theme style in use, defaults to "default". If the
2751  *         object does not have a tooltip set, then NULL is returned.
2752  *
2753  * @ingroup Gengrid
2754  */
2755 EAPI const char *
2756 elm_gengrid_item_tooltip_style_get(const Elm_Gengrid_Item *item)
2757 {
2758    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2759    return item->tooltip.style;
2760 }
2761
2762 /**
2763  * Set the cursor to be shown when mouse is over the gengrid item
2764  *
2765  * @param item Target item
2766  * @param cursor the cursor name to be used.
2767  *
2768  * @see elm_object_cursor_set()
2769  * @ingroup Gengrid
2770  */
2771 EAPI void
2772 elm_gengrid_item_cursor_set(Elm_Gengrid_Item *item,
2773                             const char       *cursor)
2774 {
2775    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2776    eina_stringshare_replace(&item->mouse_cursor, cursor);
2777    if (item->base.view) elm_widget_item_cursor_set(item, cursor);
2778 }
2779
2780 /**
2781  * Get the cursor to be shown when mouse is over the gengrid item
2782  *
2783  * @param item gengrid item with cursor already set.
2784  * @return the cursor name.
2785  *
2786  * @ingroup Gengrid
2787  */
2788 EAPI const char *
2789 elm_gengrid_item_cursor_get(const Elm_Gengrid_Item *item)
2790 {
2791    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2792    return elm_widget_item_cursor_get(item);
2793 }
2794
2795 /**
2796  * Unset the cursor to be shown when mouse is over the gengrid item
2797  *
2798  * @param item Target item
2799  *
2800  * @see elm_object_cursor_unset()
2801  * @ingroup Gengrid
2802  */
2803 EAPI void
2804 elm_gengrid_item_cursor_unset(Elm_Gengrid_Item *item)
2805 {
2806    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2807    if (!item->mouse_cursor)
2808      return;
2809
2810    if (item->base.view)
2811      elm_widget_item_cursor_unset(item);
2812
2813    eina_stringshare_del(item->mouse_cursor);
2814    item->mouse_cursor = NULL;
2815 }
2816
2817 /**
2818  * Sets a different style for this item cursor.
2819  *
2820  * @note before you set a style you should define a cursor with
2821  *       elm_gengrid_item_cursor_set()
2822  *
2823  * @param item gengrid item with cursor already set.
2824  * @param style the theme style to use (default, transparent, ...)
2825  *
2826  * @ingroup Gengrid
2827  */
2828 EAPI void
2829 elm_gengrid_item_cursor_style_set(Elm_Gengrid_Item *item,
2830                                   const char       *style)
2831 {
2832    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2833    elm_widget_item_cursor_style_set(item, style);
2834 }
2835
2836 /**
2837  * Get the style for this item cursor.
2838  *
2839  * @param item gengrid item with cursor already set.
2840  * @return style the theme style in use, defaults to "default". If the
2841  *         object does not have a cursor set, then NULL is returned.
2842  *
2843  * @ingroup Gengrid
2844  */
2845 EAPI const char *
2846 elm_gengrid_item_cursor_style_get(const Elm_Gengrid_Item *item)
2847 {
2848    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2849    return elm_widget_item_cursor_style_get(item);
2850 }
2851
2852 /**
2853  * Set if the cursor set should be searched on the theme or should use
2854  * the provided by the engine, only.
2855  *
2856  * @note before you set if should look on theme you should define a
2857  * cursor with elm_object_cursor_set(). By default it will only look
2858  * for cursors provided by the engine.
2859  *
2860  * @param item widget item with cursor already set.
2861  * @param engine_only boolean to define it cursors should be looked
2862  * only between the provided by the engine or searched on widget's
2863  * theme as well.
2864  *
2865  * @ingroup Gengrid
2866  */
2867 EAPI void
2868 elm_gengrid_item_cursor_engine_only_set(Elm_Gengrid_Item *item,
2869                                         Eina_Bool         engine_only)
2870 {
2871    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2872    elm_widget_item_cursor_engine_only_set(item, engine_only);
2873 }
2874
2875 /**
2876  * Get the cursor engine only usage for this item cursor.
2877  *
2878  * @param item widget item with cursor already set.
2879  * @return engine_only boolean to define it cursors should be looked
2880  * only between the provided by the engine or searched on widget's
2881  * theme as well. If the object does not have a cursor set, then
2882  * EINA_FALSE is returned.
2883  *
2884  * @ingroup Gengrid
2885  */
2886 EAPI Eina_Bool
2887 elm_gengrid_item_cursor_engine_only_get(const Elm_Gengrid_Item *item)
2888 {
2889    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
2890    return elm_widget_item_cursor_engine_only_get(item);
2891 }
2892
2893 /**
2894  * Set the reorder mode
2895  *
2896  * @param obj The Gengrid object
2897  * @param reorder_mode The reorder mode
2898  * (EINA_TRUE = on, EINA_FALSE = off)
2899  *
2900  * @ingroup Gengrid
2901  */
2902 EAPI void
2903 elm_gengrid_reorder_mode_set(Evas_Object *obj,
2904                              Eina_Bool    reorder_mode)
2905 {
2906    ELM_CHECK_WIDTYPE(obj, widtype);
2907    Widget_Data *wd = elm_widget_data_get(obj);
2908    if (!wd) return;
2909    wd->reorder_mode = reorder_mode;
2910 }
2911
2912 /**
2913  * Get the reorder mode
2914  *
2915  * @param obj The Gengrid object
2916  * @return The reorder mode
2917  * (EINA_TRUE = on, EINA_FALSE = off)
2918  *
2919  * @ingroup Gengrid
2920  */
2921 EAPI Eina_Bool
2922 elm_gengrid_reorder_mode_get(const Evas_Object *obj)
2923 {
2924    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2925    Widget_Data *wd = elm_widget_data_get(obj);
2926    if (!wd) return EINA_FALSE;
2927    return wd->reorder_mode;
2928 }
2929
2930 /**
2931  * Set the always select mode.
2932  *
2933  * Cells will only call their selection func and callback when first
2934  * becoming selected. Any further clicks will do nothing, unless you
2935  * enable always select with
2936  * elm_gengrid_always_select_mode_set(). This means even if selected,
2937  * every click will make the selected callbacks be called.
2938  *
2939  * @param obj The Gengrid object
2940  * @param always_select The always select mode (EINA_TRUE = on,
2941  * EINA_FALSE = off)
2942  *
2943  * @ingroup Gengrid
2944  */
2945 EAPI void
2946 elm_gengrid_always_select_mode_set(Evas_Object *obj,
2947                                    Eina_Bool    always_select)
2948 {
2949    ELM_CHECK_WIDTYPE(obj, widtype);
2950    Widget_Data *wd = elm_widget_data_get(obj);
2951    if (!wd) return;
2952    wd->always_select = always_select;
2953 }
2954
2955 /**
2956  * Get the always select mode.
2957  *
2958  * @param obj The Gengrid object.
2959  * @return The always select mode (EINA_TRUE = on, EINA_FALSE = off)
2960  *
2961  * @ingroup Gengrid
2962  */
2963 EAPI Eina_Bool
2964 elm_gengrid_always_select_mode_get(const Evas_Object *obj)
2965 {
2966    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2967    Widget_Data *wd = elm_widget_data_get(obj);
2968    if (!wd) return EINA_FALSE;
2969    return wd->always_select;
2970 }
2971
2972 /**
2973  * Set no select mode.
2974  *
2975  * This will turn off the ability to select items entirely and they
2976  * will neither appear selected nor call selected callback functions.
2977  *
2978  * @param obj The Gengrid object
2979  * @param no_select The no select mode (EINA_TRUE = on, EINA_FALSE = off)
2980  *
2981  * @ingroup Gengrid
2982  */
2983 EAPI void
2984 elm_gengrid_no_select_mode_set(Evas_Object *obj,
2985                                Eina_Bool    no_select)
2986 {
2987    ELM_CHECK_WIDTYPE(obj, widtype);
2988    Widget_Data *wd = elm_widget_data_get(obj);
2989    if (!wd) return;
2990    wd->no_select = no_select;
2991 }
2992
2993 /**
2994  * Gets no select mode.
2995  *
2996  * @param obj The Gengrid object
2997  * @return The no select mode (EINA_TRUE = on, EINA_FALSE = off)
2998  *
2999  * @ingroup Gengrid
3000  */
3001 EAPI Eina_Bool
3002 elm_gengrid_no_select_mode_get(const Evas_Object *obj)
3003 {
3004    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3005    Widget_Data *wd = elm_widget_data_get(obj);
3006    if (!wd) return EINA_FALSE;
3007    return wd->no_select;
3008 }
3009
3010 /**
3011  * Set bounce mode.
3012  *
3013  * This will enable or disable the scroller bounce mode for the
3014  * Gengrid. See elm_scroller_bounce_set() for details.
3015  *
3016  * @param obj The Gengrid object
3017  * @param h_bounce Allow bounce horizontally
3018  * @param v_bounce Allow bounce vertically
3019  *
3020  * @ingroup Gengrid
3021  */
3022 EAPI void
3023 elm_gengrid_bounce_set(Evas_Object *obj,
3024                        Eina_Bool    h_bounce,
3025                        Eina_Bool    v_bounce)
3026 {
3027    ELM_CHECK_WIDTYPE(obj, widtype);
3028    Widget_Data *wd = elm_widget_data_get(obj);
3029    if (!wd) return;
3030    elm_smart_scroller_bounce_allow_set(wd->scr, h_bounce, v_bounce);
3031    wd->h_bounce = h_bounce;
3032    wd->v_bounce = v_bounce;
3033 }
3034
3035 /**
3036  * Get the bounce mode
3037  *
3038  * @param obj The Gengrid object
3039  * @param h_bounce Allow bounce horizontally
3040  * @param v_bounce Allow bounce vertically
3041  *
3042  * @ingroup Gengrid
3043  */
3044 EAPI void
3045 elm_gengrid_bounce_get(const Evas_Object *obj,
3046                        Eina_Bool         *h_bounce,
3047                        Eina_Bool         *v_bounce)
3048 {
3049    ELM_CHECK_WIDTYPE(obj, widtype);
3050    Widget_Data *wd = elm_widget_data_get(obj);
3051    if (!wd) return;
3052    *h_bounce = wd->h_bounce;
3053    *v_bounce = wd->v_bounce;
3054 }
3055
3056 /**
3057  * Get all items in the Gengrid.
3058  *
3059  * This returns a list of the Gengrid items. The list contains
3060  * Elm_Gengrid_Item pointers.
3061  *
3062  * @param obj The Gengrid object.
3063  * @return The list of items, or NULL if none.
3064  *
3065  * @ingroup Gengrid
3066  */
3067
3068 /**
3069  * Set gengrid scroll page size relative to viewport size.
3070  *
3071  * The gengrid scroller is capable of limiting scrolling by the user
3072  * to "pages" That is to jump by and only show a "whole page" at a
3073  * time as if the continuous area of the scroller content is split
3074  * into page sized pieces.  This sets the size of a page relative to
3075  * the viewport of the scroller. 1.0 is "1 viewport" is size
3076  * (horizontally or vertically). 0.0 turns it off in that axis. This
3077  * is mutually exclusive with page size (see
3078  * elm_gengrid_page_size_set() for more information). Likewise 0.5 is
3079  * "half a viewport". Sane usable valus are normally between 0.0 and
3080  * 1.0 including 1.0. If you only want 1 axis to be page "limited",
3081  * use 0.0 for the other axis.
3082  *
3083  * @param obj The gengrid object
3084  * @param h_pagerel The horizontal page relative size
3085  * @param v_pagerel The vertical page relative size
3086  *
3087  * @ingroup Gengrid
3088  */
3089 EAPI void
3090 elm_gengrid_page_relative_set(Evas_Object *obj,
3091                               double       h_pagerel,
3092                               double       v_pagerel)
3093 {
3094    Evas_Coord pagesize_h;
3095    Evas_Coord pagesize_v;
3096
3097    ELM_CHECK_WIDTYPE(obj, widtype);
3098    Widget_Data *wd = elm_widget_data_get(obj);
3099    if (!wd) return;
3100
3101    elm_smart_scroller_paging_get(wd->scr, NULL, NULL, &pagesize_h, &pagesize_v);
3102    elm_smart_scroller_paging_set(wd->scr, h_pagerel, v_pagerel, pagesize_h,
3103                                  pagesize_v);
3104 }
3105
3106 /*
3107  * Get gengrid scroll page size relative to viewport size.
3108  *
3109  * The gengrid scroller is capable of limiting scrolling by the user
3110  * to "pages" That is to jump by and only show a "whole page" at a
3111  * time as if the continuous area of the scroller content is split
3112  * into page sized pieces.  This sets the size of a page relative to
3113  * the viewport of the scroller. 1.0 is "1 viewport" is size
3114  * (horizontally or vertically). 0.0 turns it off in that axis. This
3115  * is mutually exclusive with page size (see
3116  * elm_gengrid_page_size_set() for more information). Likewise 0.5 is
3117  * "half a viewport". Sane usable valus are normally between 0.0 and
3118  * 1.0 including 1.0. If you only want 1 axis to be page "limited",
3119  * use 0.0 for the other axis.
3120  *
3121  * @param obj The gengrid object
3122  * @param h_pagerel The horizontal page relative size
3123  * @param v_pagerel The vertical page relative size
3124  *
3125  @ingroup Gengrid
3126  */
3127 EAPI void
3128 elm_gengrid_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel)
3129 {
3130    ELM_CHECK_WIDTYPE(obj, widtype);
3131    Widget_Data *wd = elm_widget_data_get(obj);
3132    if (!wd) return;
3133
3134    elm_smart_scroller_paging_get(wd->scr, h_pagerel, v_pagerel, NULL, NULL);
3135 }
3136
3137 /**
3138  * Set gengrid scroll page size.
3139  *
3140  * See also elm_gengrid_page_relative_set(). This, instead of a page
3141  * size being relative to the viewport, sets it to an absolute fixed
3142  * value, with 0 turning it off for that axis.
3143  *
3144  * @param obj The gengrid object
3145  * @param h_pagesize The horizontal page size
3146  * @param v_pagesize The vertical page size
3147  *
3148  * @ingroup Gengrid
3149  */
3150 EAPI void
3151 elm_gengrid_page_size_set(Evas_Object *obj,
3152                           Evas_Coord   h_pagesize,
3153                           Evas_Coord   v_pagesize)
3154 {
3155    double pagerel_h;
3156    double pagerel_v;
3157
3158    ELM_CHECK_WIDTYPE(obj, widtype);
3159    Widget_Data *wd = elm_widget_data_get(obj);
3160    if (!wd) return;
3161    elm_smart_scroller_paging_get(wd->scr, &pagerel_h, &pagerel_v, NULL, NULL);
3162    elm_smart_scroller_paging_set(wd->scr, pagerel_h, pagerel_v, h_pagesize,
3163                                  v_pagesize);
3164 }
3165
3166 /**
3167  * Get the first item in the gengrid
3168  *
3169  * This returns the first item in the list.
3170  *
3171  * @param obj The gengrid object
3172  * @return The first item, or NULL if none
3173  *
3174  * @ingroup Gengrid
3175  */
3176 EAPI Elm_Gengrid_Item *
3177 elm_gengrid_first_item_get(const Evas_Object *obj)
3178 {
3179    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3180    Widget_Data *wd = elm_widget_data_get(obj);
3181    if (!wd) return NULL;
3182    if (!wd->items) return NULL;
3183    Elm_Gengrid_Item *item = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
3184    while ((item) && (item->delete_me))
3185      item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->next);
3186    return item;
3187 }
3188
3189 /**
3190  * Get the last item in the gengrid
3191  *
3192  * This returns the last item in the list.
3193  *
3194  * @return The last item, or NULL if none
3195  *
3196  * @ingroup Gengrid
3197  */
3198 EAPI Elm_Gengrid_Item *
3199 elm_gengrid_last_item_get(const Evas_Object *obj)
3200 {
3201    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3202    Widget_Data *wd = elm_widget_data_get(obj);
3203    if (!wd) return NULL;
3204    if (!wd->items) return NULL;
3205    Elm_Gengrid_Item *item = ELM_GENGRID_ITEM_FROM_INLIST(wd->items->last);
3206    while ((item) && (item->delete_me))
3207      item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->prev);
3208    return item;
3209 }
3210
3211 /**
3212  * Get the next item in the gengrid
3213  *
3214  * This returns the item after the item @p item.
3215  *
3216  * @param item The item
3217  * @return The item after @p item, or NULL if none
3218  *
3219  * @ingroup Gengrid
3220  */
3221 EAPI Elm_Gengrid_Item *
3222 elm_gengrid_item_next_get(const Elm_Gengrid_Item *item)
3223 {
3224    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
3225    while (item)
3226      {
3227         item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->next);
3228         if ((item) && (!item->delete_me)) break;
3229      }
3230    return (Elm_Gengrid_Item *)item;
3231 }
3232
3233 /**
3234  * Get the previous item in the gengrid
3235  *
3236  * This returns the item before the item @p item.
3237  *
3238  * @param item The item
3239  * @return The item before @p item, or NULL if none
3240  *
3241  * @ingroup Gengrid
3242  */
3243 EAPI Elm_Gengrid_Item *
3244 elm_gengrid_item_prev_get(const Elm_Gengrid_Item *item)
3245 {
3246    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
3247    while (item)
3248      {
3249         item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->prev);
3250         if ((item) && (!item->delete_me)) break;
3251      }
3252    return (Elm_Gengrid_Item *)item;
3253 }
3254
3255 /**
3256  * Get the gengrid object from an item
3257  *
3258  * This returns the gengrid object itself that an item belongs to.
3259  *
3260  * @param item The item
3261  * @return The gengrid object
3262  *
3263  * @ingroup Gengrid
3264  */
3265 EAPI Evas_Object *
3266 elm_gengrid_item_gengrid_get(const Elm_Gengrid_Item *item)
3267 {
3268    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
3269    return item->base.widget;
3270 }
3271
3272 /**
3273  * Show the given item
3274  *
3275  * This causes gengrid to jump to the given item @p item and show it
3276  * (by scrolling), if it is not fully visible.
3277  *
3278  * @param item The item
3279  *
3280  * @ingroup Gengrid
3281  */
3282 EAPI void
3283 elm_gengrid_item_show(Elm_Gengrid_Item *item)
3284 {
3285    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
3286    Widget_Data *wd = elm_widget_data_get(item->wd->self);
3287    Evas_Coord minx = 0, miny = 0;
3288
3289    if (!wd) return;
3290    if ((!item) || (item->delete_me)) return;
3291    _pan_min_get(wd->pan_smart, &minx, &miny);
3292
3293    elm_smart_scroller_child_region_show(item->wd->scr,
3294                                         item->x * wd->item_width + minx,
3295                                         item->y * wd->item_height + miny,
3296                                         item->wd->item_width,
3297                                         item->wd->item_height);
3298 }
3299
3300 /**
3301  * Bring in the given item
3302  *
3303  * This causes gengrig to jump to the given item @p item and show it
3304  * (by scrolling), if it is not fully visible. This may use animation
3305  * to do so and take a period of time
3306  *
3307  * @param item The item
3308  *
3309  * @ingroup Gengrid
3310  */
3311 EAPI void
3312 elm_gengrid_item_bring_in(Elm_Gengrid_Item *item)
3313 {
3314    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
3315    if (item->delete_me) return;
3316
3317    Evas_Coord minx = 0, miny = 0;
3318    Widget_Data *wd = elm_widget_data_get(item->wd->self);
3319    if (!wd) return;
3320    _pan_min_get(wd->pan_smart, &minx, &miny);
3321
3322    elm_smart_scroller_region_bring_in(item->wd->scr,
3323                                       item->x * wd->item_width + minx,
3324                                       item->y * wd->item_height + miny,
3325                                       item->wd->item_width,
3326                                       item->wd->item_height);
3327 }