Merge branch 'master' into svn_merge
[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      evas_object_smart_callback_call(item->wd->self, SIG_CLICKED_DOUBLE, item);
919    if (item->long_timer) ecore_timer_del(item->long_timer);
920    if (item->realized)
921      item->long_timer = ecore_timer_add(_elm_config->longpress_timeout,
922                                         _long_press, item);
923    else
924      item->long_timer = NULL;
925 }
926
927 static void
928 _mouse_up(void            *data,
929           Evas *evas       __UNUSED__,
930           Evas_Object *obj __UNUSED__,
931           void            *event_info)
932 {
933    Elm_Gengrid_Item *item = data;
934    Evas_Event_Mouse_Up *ev = event_info;
935    Eina_Bool dragged = EINA_FALSE;
936
937    if (ev->button != 1) return;
938    item->down = EINA_FALSE;
939    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) item->wd->on_hold = EINA_TRUE;
940    else item->wd->on_hold = EINA_FALSE;
941    if (item->long_timer)
942      {
943         ecore_timer_del(item->long_timer);
944         item->long_timer = NULL;
945      }
946    if (item->dragging)
947      {
948         item->dragging = EINA_FALSE;
949         evas_object_smart_callback_call(item->wd->self, SIG_DRAG_STOP, item);
950         dragged = EINA_TRUE;
951      }
952    if (item->wd->on_hold)
953      {
954         item->wd->longpressed = EINA_FALSE;
955         item->wd->on_hold = EINA_FALSE;
956         return;
957      }
958    if ((item->wd->reorder_mode) && (item->wd->reorder_item))
959      {
960         if (item->wd->calc_job) ecore_job_del(item->wd->calc_job);
961           item->wd->calc_job = ecore_job_add(_calc_job, item->wd);
962
963         evas_object_smart_callback_call(item->wd->self, SIG_MOVED, item->wd->reorder_item);
964         item->wd->reorder_item = NULL;
965         elm_smart_scroller_hold_set(item->wd->scr, EINA_FALSE);
966         elm_smart_scroller_bounce_allow_set(item->wd->scr, item->wd->h_bounce, item->wd->v_bounce);
967         edje_object_signal_emit(item->base.view, "elm,state,reorder,disabled", "elm");
968      }
969    if (item->wd->longpressed)
970      {
971         item->wd->longpressed = EINA_FALSE;
972         if (!item->wd->wasselected) _item_unselect(item);
973         item->wd->wasselected = EINA_FALSE;
974         return;
975      }
976    if (dragged)
977      {
978         if (item->want_unrealize) _item_unrealize(item);
979      }
980    if ((item->disabled) || (dragged)) return;
981    if (item->wd->multi)
982      {
983         if (!item->selected)
984           {
985              _item_hilight(item);
986              _item_select(item);
987           }
988         else _item_unselect(item);
989      }
990    else
991      {
992         if (!item->selected)
993           {
994              while (item->wd->selected)
995                _item_unselect(item->wd->selected->data);
996           }
997         else
998           {
999              const Eina_List *l, *l_next;
1000              Elm_Gengrid_Item *item2;
1001
1002              EINA_LIST_FOREACH_SAFE(item->wd->selected, l, l_next, item2)
1003                 if (item2 != item) _item_unselect(item2);
1004           }
1005         _item_hilight(item);
1006         _item_select(item);
1007      }
1008 }
1009
1010 static void
1011 _item_hilight(Elm_Gengrid_Item *item)
1012 {
1013    if ((item->wd->no_select) || (item->delete_me) || (item->hilighted)) return;
1014    edje_object_signal_emit(item->base.view, "elm,state,selected", "elm");
1015    item->hilighted = EINA_TRUE;
1016 }
1017
1018 static void
1019 _item_realize(Elm_Gengrid_Item *item)
1020 {
1021    char buf[1024];
1022    char style[1024];
1023
1024    if ((item->realized) || (item->delete_me)) return;
1025    item->base.view = edje_object_add(evas_object_evas_get(item->wd->self));
1026    edje_object_scale_set(item->base.view, elm_widget_scale_get(item->wd->self) *
1027                          _elm_config->scale);
1028    edje_object_mirrored_set(item->base.view, elm_widget_mirrored_get(item->base.widget));
1029    evas_object_smart_member_add(item->base.view, item->wd->pan_smart);
1030    elm_widget_sub_object_add(item->wd->self, item->base.view);
1031    snprintf(style, sizeof(style), "item/%s",
1032             item->gic->item_style ? item->gic->item_style : "default");
1033    _elm_theme_object_set(item->wd->self, item->base.view, "gengrid", style,
1034                          elm_widget_style_get(item->wd->self));
1035    item->spacer =
1036       evas_object_rectangle_add(evas_object_evas_get(item->wd->self));
1037    evas_object_color_set(item->spacer, 0, 0, 0, 0);
1038    elm_widget_sub_object_add(item->wd->self, item->spacer);
1039    evas_object_size_hint_min_set(item->spacer, 2 * _elm_config->scale, 1);
1040    edje_object_part_swallow(item->base.view, "elm.swallow.pad", item->spacer);
1041
1042    if (item->gic->func.label_get)
1043      {
1044         const Eina_List *l;
1045         const char *key;
1046
1047         item->labels =
1048            elm_widget_stringlist_get(edje_object_data_get(item->base.view,
1049                                                           "labels"));
1050         EINA_LIST_FOREACH(item->labels, l, key)
1051           {
1052              char *s = item->gic->func.label_get
1053                 ((void *)item->base.data, item->wd->self, l->data);
1054              if (s)
1055                {
1056                   edje_object_part_text_set(item->base.view, l->data, s);
1057                   free(s);
1058                }
1059           }
1060      }
1061
1062    if (item->gic->func.icon_get)
1063      {
1064         const Eina_List *l;
1065         const char *key;
1066
1067         item->icons =
1068            elm_widget_stringlist_get(edje_object_data_get(item->base.view,
1069                                                           "icons"));
1070         EINA_LIST_FOREACH(item->icons, l, key)
1071           {
1072              Evas_Object *ic = item->gic->func.icon_get
1073                 ((void *)item->base.data, item->wd->self, l->data);
1074              if (ic)
1075                {
1076                   item->icon_objs = eina_list_append(item->icon_objs, ic);
1077                   edje_object_part_swallow(item->base.view, key, ic);
1078                   evas_object_show(ic);
1079                   elm_widget_sub_object_add(item->wd->self, ic);
1080                }
1081           }
1082      }
1083
1084    if (item->gic->func.state_get)
1085      {
1086         const Eina_List *l;
1087         const char *key;
1088
1089         item->states =
1090            elm_widget_stringlist_get(edje_object_data_get(item->base.view,
1091                                                           "states"));
1092         EINA_LIST_FOREACH(item->states, l, key)
1093           {
1094              Eina_Bool on = item->gic->func.state_get
1095                 ((void *)item->base.data, item->wd->self, l->data);
1096              if (on)
1097                {
1098                   snprintf(buf, sizeof(buf), "elm,state,%s,active", key);
1099                   edje_object_signal_emit(item->base.view, buf, "elm");
1100                }
1101           }
1102      }
1103
1104    if ((!item->wd->item_width) && (!item->wd->item_height))
1105      {
1106         edje_object_size_min_restricted_calc(item->base.view,
1107                                              &item->wd->item_width,
1108                                              &item->wd->item_height,
1109                                              item->wd->item_width,
1110                                              item->wd->item_height);
1111         elm_coords_finger_size_adjust(1, &item->wd->item_width,
1112                                       1, &item->wd->item_height);
1113      }
1114
1115    evas_object_event_callback_add(item->base.view, EVAS_CALLBACK_MOUSE_DOWN,
1116                                   _mouse_down, item);
1117    evas_object_event_callback_add(item->base.view, EVAS_CALLBACK_MOUSE_UP,
1118                                   _mouse_up, item);
1119    evas_object_event_callback_add(item->base.view, EVAS_CALLBACK_MOUSE_MOVE,
1120                                   _mouse_move, item);
1121
1122    if (item->selected)
1123      edje_object_signal_emit(item->base.view, "elm,state,selected", "elm");
1124    if (item->disabled)
1125      edje_object_signal_emit(item->base.view, "elm,state,disabled", "elm");
1126
1127    evas_object_show(item->base.view);
1128
1129    if (item->tooltip.content_cb)
1130      {
1131         elm_widget_item_tooltip_content_cb_set(item,
1132                                                item->tooltip.content_cb,
1133                                                item->tooltip.data, NULL);
1134         elm_widget_item_tooltip_style_set(item, item->tooltip.style);
1135      }
1136
1137    if (item->mouse_cursor)
1138      elm_widget_item_cursor_set(item, item->mouse_cursor);
1139
1140    item->realized = EINA_TRUE;
1141    item->want_unrealize = EINA_FALSE;
1142 }
1143
1144 static void
1145 _item_unrealize(Elm_Gengrid_Item *item)
1146 {
1147    Evas_Object *icon;
1148
1149    if (!item->realized) return;
1150    if (item->long_timer)
1151      {
1152         ecore_timer_del(item->long_timer);
1153         item->long_timer = NULL;
1154      }
1155    evas_object_del(item->base.view);
1156    item->base.view = NULL;
1157    evas_object_del(item->spacer);
1158    item->spacer = NULL;
1159    elm_widget_stringlist_free(item->labels);
1160    item->labels = NULL;
1161    elm_widget_stringlist_free(item->icons);
1162    item->icons = NULL;
1163    elm_widget_stringlist_free(item->states);
1164    item->states = NULL;
1165
1166    EINA_LIST_FREE(item->icon_objs, icon)
1167       evas_object_del(icon);
1168
1169    item->realized = EINA_FALSE;
1170    item->want_unrealize = EINA_FALSE;
1171 }
1172
1173 static Eina_Bool
1174 _reorder_item_moving_effect_timer_cb(void *data)
1175 {
1176    Elm_Gengrid_Item *item = data;
1177    double time, t;
1178    Evas_Coord dx, dy;
1179
1180    time = REORDER_EFFECT_TIME;
1181    t = ((0.0 > (t = ecore_loop_time_get()-item->moving_effect_start_time)) ? 0.0 : t);
1182    dx = ((item->tx - item->ox) / 10) * _elm_config->scale;
1183    dy = ((item->ty - item->oy) / 10) * _elm_config->scale;
1184
1185    if (t <= time)
1186      {
1187         item->rx += (1 * sin((t / time) * (M_PI / 2)) * dx);
1188         item->ry += (1 * sin((t / time) * (M_PI / 2)) * dy);
1189      }
1190    else
1191      {
1192         item->rx += dx;
1193         item->ry += dy;
1194      }
1195
1196    if ((((dx > 0) && (item->rx >= item->tx)) || ((dx <= 0) && (item->rx <= item->tx))) &&
1197        (((dy > 0) && (item->ry >= item->ty)) || ((dy <= 0) && (item->ry <= item->ty))))
1198      {
1199         evas_object_move(item->base.view, item->tx, item->ty);
1200         evas_object_resize(item->base.view, item->wd->item_width, item->wd->item_height);
1201         item->moving = EINA_FALSE;
1202         item->item_moving_effect_timer = NULL;
1203         return ECORE_CALLBACK_CANCEL;
1204      }
1205
1206    evas_object_move(item->base.view, item->rx, item->ry);
1207    evas_object_resize(item->base.view, item->wd->item_width, item->wd->item_height);
1208
1209    return ECORE_CALLBACK_RENEW;
1210 }
1211
1212 static void
1213 _item_place(Elm_Gengrid_Item *item,
1214             Evas_Coord        cx,
1215             Evas_Coord        cy)
1216 {
1217    Evas_Coord x, y, ox, oy, cvx, cvy, cvw, cvh;
1218    Evas_Coord tch, tcw, alignw = 0, alignh = 0, vw, vh;
1219    Eina_Bool reorder_item_move_forward = EINA_FALSE;
1220    item->x = cx;
1221    item->y = cy;
1222    evas_object_geometry_get(item->wd->pan_smart, &ox, &oy, &vw, &vh);
1223
1224    /* Preload rows/columns at each side of the Gengrid */
1225    cvx = ox - PRELOAD * item->wd->item_width;
1226    cvy = oy - PRELOAD * item->wd->item_height;
1227    cvw = vw + 2 * PRELOAD * item->wd->item_width;
1228    cvh = vh + 2 * PRELOAD * item->wd->item_height;
1229
1230    alignh = 0;
1231    alignw = 0;
1232
1233    if (item->wd->horizontal)
1234      {
1235         int columns, items_visible = 0, items_row;
1236
1237         if (item->wd->item_height > 0)
1238           items_visible = vh / item->wd->item_height;
1239         if (items_visible < 1)
1240           items_visible = 1;
1241
1242         columns = item->wd->count / items_visible;
1243         if (item->wd->count % items_visible)
1244           columns++;
1245
1246         tcw = item->wd->item_width * columns;
1247         alignw = (vw - tcw) * item->wd->align_x;
1248
1249         items_row = items_visible;
1250         if (items_row > item->wd->count)
1251           items_row = item->wd->count;
1252         tch = items_row * item->wd->item_height;
1253         alignh = (vh - tch) * item->wd->align_y;
1254      }
1255    else
1256      {
1257         int rows, items_visible = 0, items_col;
1258
1259         if (item->wd->item_width > 0)
1260           items_visible = vw / item->wd->item_width;
1261         if (items_visible < 1)
1262           items_visible = 1;
1263
1264         rows = item->wd->count / items_visible;
1265         if (item->wd->count % items_visible)
1266           rows++;
1267
1268         tch = item->wd->item_height * rows;
1269         alignh = (vh - tch) * item->wd->align_y;
1270
1271         items_col = items_visible;
1272         if (items_col > item->wd->count)
1273           items_col = item->wd->count;
1274         tcw = items_col * item->wd->item_width;
1275         alignw = (vw - tcw) * item->wd->align_x;
1276      }
1277
1278    x = cx * item->wd->item_width - item->wd->pan_x + ox + alignw;
1279    if (elm_widget_mirrored_get(item->wd->self))
1280      {  /* Switch items side and componsate for pan_x when in RTL mode */
1281         Evas_Coord ww;
1282         evas_object_geometry_get(item->wd->self, NULL, NULL, &ww, NULL);
1283         x = ww - x - item->wd->item_width - item->wd->pan_x - item->wd->pan_x;
1284      }
1285
1286    y = cy * item->wd->item_height - item->wd->pan_y + oy + alignh;
1287
1288    Eina_Bool was_realized = item->realized;
1289    if (ELM_RECTS_INTERSECT(x, y, item->wd->item_width, item->wd->item_height,
1290                            cvx, cvy, cvw, cvh))
1291      {
1292         _item_realize(item);
1293         if (!was_realized)
1294           evas_object_smart_callback_call(item->wd->self, SIG_REALIZED, item);
1295         if ((item->wd->reorder_mode) && (item->wd->reorder_item))
1296           {
1297              if (item->moving) return;
1298
1299              if (!item->wd->move_effect_enabled)
1300                {
1301                   item->ox = x;
1302                   item->oy = y;
1303                }
1304              if (item->wd->reorder_item == item)
1305                {
1306                   evas_object_move(item->base.view,
1307                                    item->wd->reorder_item_x, item->wd->reorder_item_y);
1308                   evas_object_resize(item->base.view,
1309                                      item->wd->item_width, item->wd->item_height);
1310                   return;
1311                }
1312              else
1313                {
1314                   if (item->wd->move_effect_enabled)
1315                     {
1316                        if ((item->ox != x) || (item->oy != y))
1317                          {
1318                             if (((item->wd->old_pan_x == item->wd->pan_x) && (item->wd->old_pan_y == item->wd->pan_y)) ||
1319                                 ((item->wd->old_pan_x != item->wd->pan_x) && !(item->ox - item->wd->pan_x + item->wd->old_pan_x == x)) ||
1320                                 ((item->wd->old_pan_y != item->wd->pan_y) && !(item->oy - item->wd->pan_y + item->wd->old_pan_y == y)))
1321                               {
1322                                  item->tx = x;
1323                                  item->ty = y;
1324                                  item->rx = item->ox;
1325                                  item->ry = item->oy;
1326                                  item->moving = EINA_TRUE;
1327                                  item->moving_effect_start_time = ecore_loop_time_get();
1328                                  item->item_moving_effect_timer = ecore_animator_add(_reorder_item_moving_effect_timer_cb, item);
1329                                  return;
1330                               }
1331                          }
1332                     }
1333
1334                   if (ELM_RECTS_INTERSECT(item->wd->reorder_item_x, item->wd->reorder_item_y,
1335                                           item->wd->item_width, item->wd->item_height,
1336                                           x+(item->wd->item_width/2), y+(item->wd->item_height/2),
1337                                           1, 1))
1338                     {
1339                        if (item->wd->horizontal)
1340                          {
1341                             if ((item->wd->nmax * item->wd->reorder_item->x + item->wd->reorder_item->y) >
1342                                 (item->wd->nmax * item->x + item->y))
1343                               reorder_item_move_forward = EINA_TRUE;
1344                          }
1345                        else
1346                          {
1347                             if ((item->wd->nmax * item->wd->reorder_item->y + item->wd->reorder_item->x) >
1348                                 (item->wd->nmax * item->y + item->x))
1349                               reorder_item_move_forward = EINA_TRUE;
1350                          }
1351
1352                        item->wd->items = eina_inlist_remove(item->wd->items,
1353                                                             EINA_INLIST_GET(item->wd->reorder_item));
1354                        if (reorder_item_move_forward)
1355                          item->wd->items = eina_inlist_prepend_relative(item->wd->items,
1356                                                                         EINA_INLIST_GET(item->wd->reorder_item),
1357                                                                         EINA_INLIST_GET(item));
1358                        else
1359                          item->wd->items = eina_inlist_append_relative(item->wd->items,
1360                                                                        EINA_INLIST_GET(item->wd->reorder_item),
1361                                                                        EINA_INLIST_GET(item));
1362
1363                        item->wd->reorder_item_changed = EINA_TRUE;
1364                        item->wd->move_effect_enabled = EINA_TRUE;
1365                        if (item->wd->calc_job) ecore_job_del(item->wd->calc_job);
1366                          item->wd->calc_job = ecore_job_add(_calc_job, item->wd);
1367
1368                        return;
1369                     }
1370                }
1371           }
1372         evas_object_move(item->base.view, x, y);
1373         evas_object_resize(item->base.view, item->wd->item_width,
1374                            item->wd->item_height);
1375      }
1376    else
1377      {
1378         _item_unrealize(item);
1379         if (was_realized)
1380           evas_object_smart_callback_call(item->wd->self, SIG_UNREALIZED, item);
1381      }
1382 }
1383
1384 static Elm_Gengrid_Item *
1385 _item_create(Widget_Data                  *wd,
1386              const Elm_Gengrid_Item_Class *gic,
1387              const void                   *data,
1388              Evas_Smart_Cb                 func,
1389              const void                   *func_data)
1390 {
1391    Elm_Gengrid_Item *item;
1392
1393    item = elm_widget_item_new(wd->self, Elm_Gengrid_Item);
1394    if (!item) return NULL;
1395    wd->count++;
1396    item->wd = wd;
1397    item->gic = gic;
1398    item->base.data = data;
1399    item->func.func = func;
1400    item->func.data = func_data;
1401    item->mouse_cursor = NULL;
1402    return item;
1403 }
1404
1405 static void
1406 _item_del(Elm_Gengrid_Item *item)
1407 {
1408    elm_widget_item_pre_notify_del(item);
1409    if (item->selected)
1410      item->wd->selected = eina_list_remove(item->wd->selected, item);
1411    if (item->realized) _item_unrealize(item);
1412    if ((!item->delete_me) && (item->gic->func.del))
1413      item->gic->func.del((void *)item->base.data, item->wd->self);
1414    item->delete_me = EINA_TRUE;
1415    item->wd->items = eina_inlist_remove(item->wd->items, EINA_INLIST_GET(item));
1416    if (item->long_timer) ecore_timer_del(item->long_timer);
1417    if (item->tooltip.del_cb)
1418      item->tooltip.del_cb((void *)item->tooltip.data, item->base.widget, item);
1419    item->wd->walking -= item->walking;
1420    item->wd->count--;
1421    if (item->wd->calc_job) ecore_job_del(item->wd->calc_job);
1422    item->wd->calc_job = ecore_job_add(_calc_job, item->wd);
1423    elm_widget_item_del(item);
1424 }
1425
1426 static void
1427 _item_select(Elm_Gengrid_Item *item)
1428 {
1429    if ((item->wd->no_select) || (item->delete_me)) return;
1430    if (item->selected)
1431      {
1432         if (item->wd->always_select) goto call;
1433         return;
1434      }
1435    item->selected = EINA_TRUE;
1436    item->wd->selected = eina_list_append(item->wd->selected, item);
1437 call:
1438    item->walking++;
1439    item->wd->walking++;
1440    if (item->func.func)
1441      item->func.func((void *)item->func.data, item->wd->self, item);
1442    if (!item->delete_me)
1443      evas_object_smart_callback_call(item->wd->self, SIG_SELECTED, item);
1444    item->walking--;
1445    item->wd->walking--;
1446    item->wd->last_selected_item = item;
1447    if ((item->wd->clear_me) && (!item->wd->walking))
1448      elm_gengrid_clear(item->base.widget);
1449    else
1450      {
1451         if ((!item->walking) && (item->delete_me))
1452           if (!item->relcount) _item_del(item);
1453      }
1454 }
1455
1456 static void
1457 _item_unselect(Elm_Gengrid_Item *item)
1458 {
1459    if ((item->delete_me) || (!item->hilighted)) return;
1460    edje_object_signal_emit(item->base.view, "elm,state,unselected", "elm");
1461    item->hilighted = EINA_FALSE;
1462    if (item->selected)
1463      {
1464         item->selected = EINA_FALSE;
1465         item->wd->selected = eina_list_remove(item->wd->selected, item);
1466         evas_object_smart_callback_call(item->wd->self, SIG_UNSELECTED, item);
1467      }
1468 }
1469
1470 static void
1471 _calc_job(void *data)
1472 {
1473    Widget_Data *wd = data;
1474    Evas_Coord minw = 0, minh = 0, nmax = 0, cvw, cvh;
1475    int count;
1476
1477    evas_object_geometry_get(wd->pan_smart, NULL, NULL, &cvw, &cvh);
1478    if ((cvw != 0) || (cvh != 0))
1479      {
1480         if ((wd->horizontal) && (wd->item_height > 0))
1481           nmax = cvh / wd->item_height;
1482         else if (wd->item_width > 0)
1483           nmax = cvw / wd->item_width;
1484
1485         if (nmax < 1)
1486           nmax = 1;
1487
1488         count = wd->count;
1489         if (wd->horizontal)
1490           {
1491              minw = ceil(count / (float)nmax) * wd->item_width;
1492              minh = nmax * wd->item_height;
1493           }
1494         else
1495           {
1496              minw = nmax * wd->item_width;
1497              minh = ceil(count / (float)nmax) * wd->item_height;
1498           }
1499
1500         if ((minw != wd->minw) || (minh != wd->minh))
1501           {
1502              wd->minh = minh;
1503              wd->minw = minw;
1504              evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
1505           }
1506
1507         wd->nmax = nmax;
1508         evas_object_smart_changed(wd->pan_smart);
1509      }
1510    wd->calc_job = NULL;
1511 }
1512
1513 static void
1514 _pan_add(Evas_Object *obj)
1515 {
1516    Pan *sd;
1517    Evas_Object_Smart_Clipped_Data *cd;
1518
1519    _pan_sc.add(obj);
1520    cd = evas_object_smart_data_get(obj);
1521    sd = ELM_NEW(Pan);
1522    if (!sd) return;
1523    sd->__clipped_data = *cd;
1524    free(cd);
1525    evas_object_smart_data_set(obj, sd);
1526 }
1527
1528 static void
1529 _pan_del(Evas_Object *obj)
1530 {
1531    Pan *sd = evas_object_smart_data_get(obj);
1532
1533    if (!sd) return;
1534    _pan_sc.del(obj);
1535 }
1536
1537 static void
1538 _pan_set(Evas_Object *obj,
1539          Evas_Coord   x,
1540          Evas_Coord   y)
1541 {
1542    Pan *sd = evas_object_smart_data_get(obj);
1543    if ((x == sd->wd->pan_x) && (y == sd->wd->pan_y)) return;
1544    sd->wd->pan_x = x;
1545    sd->wd->pan_y = y;
1546    evas_object_smart_changed(obj);
1547 }
1548
1549 static void
1550 _pan_get(Evas_Object *obj,
1551          Evas_Coord  *x,
1552          Evas_Coord  *y)
1553 {
1554    Pan *sd = evas_object_smart_data_get(obj);
1555    if (x) *x = sd->wd->pan_x;
1556    if (y) *y = sd->wd->pan_y;
1557 }
1558
1559 static void
1560 _pan_child_size_get(Evas_Object *obj,
1561                     Evas_Coord  *w,
1562                     Evas_Coord  *h)
1563 {
1564    Pan *sd = evas_object_smart_data_get(obj);
1565    if (w) *w = sd->wd->minw;
1566    if (h) *h = sd->wd->minh;
1567 }
1568
1569 static void
1570 _pan_max_get(Evas_Object *obj,
1571              Evas_Coord  *x,
1572              Evas_Coord  *y)
1573 {
1574    Pan *sd = evas_object_smart_data_get(obj);
1575    Evas_Coord ow, oh;
1576
1577    if (!sd) return;
1578    evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
1579    if (x)
1580      *x = (ow < sd->wd->minw) ? sd->wd->minw - ow : 0;
1581    if (y)
1582      *y = (oh < sd->wd->minh) ? sd->wd->minh - oh : 0;
1583 }
1584
1585 static void
1586 _pan_min_get(Evas_Object *obj,
1587              Evas_Coord  *x,
1588              Evas_Coord  *y)
1589 {
1590    Pan *sd = evas_object_smart_data_get(obj);
1591    Evas_Coord mx, my;
1592
1593    if (!sd) return;
1594    _pan_max_get(obj, &mx, &my);
1595    if (x)
1596      *x = -mx * sd->wd->align_x;
1597    if (y)
1598      *y = -my * sd->wd->align_y;
1599 }
1600
1601 static void
1602 _pan_resize(Evas_Object *obj,
1603             Evas_Coord   w,
1604             Evas_Coord   h)
1605 {
1606    Pan *sd = evas_object_smart_data_get(obj);
1607    Evas_Coord ow, oh;
1608
1609    evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
1610    if ((ow == w) && (oh == h)) return;
1611    if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
1612    sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
1613 }
1614
1615 static void
1616 _pan_calculate(Evas_Object *obj)
1617 {
1618    Pan *sd = evas_object_smart_data_get(obj);
1619    Evas_Coord cx = 0, cy = 0;
1620    Elm_Gengrid_Item *item;
1621
1622    if (!sd) return;
1623    if (!sd->wd->nmax) return;
1624
1625    sd->wd->reorder_item_changed = EINA_FALSE;
1626
1627    EINA_INLIST_FOREACH(sd->wd->items, item)
1628      {
1629         _item_place(item, cx, cy);
1630         if (sd->wd->reorder_item_changed) return;
1631         if (sd->wd->horizontal)
1632           {
1633              cy = (cy + 1) % sd->wd->nmax;
1634              if (!cy) cx++;
1635           }
1636         else
1637           {
1638              cx = (cx + 1) % sd->wd->nmax;
1639              if (!cx) cy++;
1640           }
1641      }
1642
1643    if ((sd->wd->reorder_mode) && (sd->wd->reorder_item))
1644      {
1645         if (!sd->wd->reorder_item_changed)
1646           {
1647              sd->wd->old_pan_x = sd->wd->pan_x;
1648              sd->wd->old_pan_y = sd->wd->pan_y;
1649           }
1650         sd->wd->move_effect_enabled = EINA_FALSE;
1651      }
1652    evas_object_smart_callback_call(sd->wd->self, SIG_CHANGED, NULL);
1653 }
1654
1655 static void
1656 _pan_move(Evas_Object *obj,
1657           Evas_Coord x __UNUSED__,
1658           Evas_Coord y __UNUSED__)
1659 {
1660    Pan *sd = evas_object_smart_data_get(obj);
1661    if (!sd) return;
1662    if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
1663    sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
1664 }
1665
1666 static void
1667 _hold_on(void *data       __UNUSED__,
1668          Evas_Object     *obj,
1669          void *event_info __UNUSED__)
1670 {
1671    Widget_Data *wd = elm_widget_data_get(obj);
1672    if (!wd) return;
1673    elm_smart_scroller_hold_set(wd->scr, 1);
1674 }
1675
1676 static void
1677 _hold_off(void *data       __UNUSED__,
1678           Evas_Object     *obj,
1679           void *event_info __UNUSED__)
1680 {
1681    Widget_Data *wd = elm_widget_data_get(obj);
1682    if (!wd) return;
1683    elm_smart_scroller_hold_set(wd->scr, 0);
1684 }
1685
1686 static void
1687 _freeze_on(void *data       __UNUSED__,
1688            Evas_Object     *obj,
1689            void *event_info __UNUSED__)
1690 {
1691    Widget_Data *wd = elm_widget_data_get(obj);
1692    if (!wd) return;
1693    elm_smart_scroller_freeze_set(wd->scr, 1);
1694 }
1695
1696 static void
1697 _freeze_off(void *data       __UNUSED__,
1698             Evas_Object     *obj,
1699             void *event_info __UNUSED__)
1700 {
1701    Widget_Data *wd = elm_widget_data_get(obj);
1702    if (!wd) return;
1703    elm_smart_scroller_freeze_set(wd->scr, 0);
1704 }
1705
1706 static void
1707 _scr_drag_start(void            *data,
1708                 Evas_Object *obj __UNUSED__,
1709                 void *event_info __UNUSED__)
1710 {
1711    evas_object_smart_callback_call(data, SIG_SCROLL_DRAG_START, NULL);
1712 }
1713
1714 static void
1715 _scr_drag_stop(void            *data,
1716                Evas_Object *obj __UNUSED__,
1717                void *event_info __UNUSED__)
1718 {
1719    evas_object_smart_callback_call(data, SIG_SCROLL_DRAG_STOP, NULL);
1720 }
1721
1722 static void
1723 _scr_scroll(void            *data,
1724             Evas_Object *obj __UNUSED__,
1725             void *event_info __UNUSED__)
1726 {
1727    evas_object_smart_callback_call(data, SIG_SCROLL, NULL);
1728 }
1729
1730 static int
1731 _elm_gengrid_item_compare_data(const void *data, const void *data1)
1732 {
1733    const Elm_Gengrid_Item *item = data;
1734    const Elm_Gengrid_Item *item1 = data1;
1735
1736    return _elm_gengrid_item_compare_data_cb(item->base.data, item1->base.data);
1737 }
1738
1739 static int
1740 _elm_gengrid_item_compare(const void *data, const void *data1)
1741 {
1742    Elm_Gengrid_Item *item, *item1;
1743    item = ELM_GENGRID_ITEM_FROM_INLIST(data);
1744    item1 = ELM_GENGRID_ITEM_FROM_INLIST(data1);
1745    return _elm_gengrid_item_compare_cb(item, item1);
1746 }
1747
1748 /**
1749  * Add a new Gengrid object.
1750  *
1751  * @param parent The parent object.
1752  * @return  The new object or NULL if it cannot be created.
1753  *
1754  * @see elm_gengrid_item_size_set()
1755  * @see elm_gengrid_horizontal_set()
1756  * @see elm_gengrid_item_append()
1757  * @see elm_gengrid_item_del()
1758  * @see elm_gengrid_clear()
1759  *
1760  * @ingroup Gengrid
1761  */
1762 EAPI Evas_Object *
1763 elm_gengrid_add(Evas_Object *parent)
1764 {
1765    Evas_Object *obj;
1766    Evas *e;
1767    Widget_Data *wd;
1768    static Evas_Smart *smart = NULL;
1769    Eina_Bool bounce = _elm_config->thumbscroll_bounce_enable;
1770
1771    ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
1772
1773    ELM_SET_WIDTYPE(widtype, "gengrid");
1774    elm_widget_type_set(obj, "gengrid");
1775    elm_widget_sub_object_add(parent, obj);
1776    elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
1777    elm_widget_data_set(obj, wd);
1778    elm_widget_del_hook_set(obj, _del_hook);
1779    elm_widget_del_pre_hook_set(obj, _del_pre_hook);
1780    elm_widget_theme_hook_set(obj, _theme_hook);
1781    elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
1782    elm_widget_can_focus_set(obj, EINA_TRUE);
1783    elm_widget_event_hook_set(obj, _event_hook);
1784
1785    wd->scr = elm_smart_scroller_add(e);
1786    elm_smart_scroller_widget_set(wd->scr, obj);
1787    elm_smart_scroller_object_theme_set(obj, wd->scr, "gengrid", "base",
1788                                        "default");
1789    elm_widget_resize_object_set(obj, wd->scr);
1790
1791    evas_object_smart_callback_add(wd->scr, "drag,start", _scr_drag_start, obj);
1792    evas_object_smart_callback_add(wd->scr, "drag,stop", _scr_drag_stop, obj);
1793    evas_object_smart_callback_add(wd->scr, "scroll", _scr_scroll, obj);
1794
1795    elm_smart_scroller_bounce_allow_set(wd->scr, bounce, bounce);
1796
1797    wd->self = obj;
1798    wd->align_x = 0.5;
1799    wd->align_y = 0.5;
1800    wd->h_bounce = bounce;
1801    wd->v_bounce = bounce;
1802    wd->no_select = EINA_FALSE;
1803
1804    evas_object_smart_callback_add(obj, "scroll-hold-on", _hold_on, obj);
1805    evas_object_smart_callback_add(obj, "scroll-hold-off", _hold_off, obj);
1806    evas_object_smart_callback_add(obj, "scroll-freeze-on", _freeze_on, obj);
1807    evas_object_smart_callback_add(obj, "scroll-freeze-off", _freeze_off, obj);
1808
1809    evas_object_smart_callbacks_descriptions_set(obj, _signals);
1810
1811    if (!smart)
1812      {
1813         static Evas_Smart_Class sc;
1814
1815         evas_object_smart_clipped_smart_set(&_pan_sc);
1816         sc = _pan_sc;
1817         sc.name = "elm_gengrid_pan";
1818         sc.version = EVAS_SMART_CLASS_VERSION;
1819         sc.add = _pan_add;
1820         sc.del = _pan_del;
1821         sc.resize = _pan_resize;
1822         sc.move = _pan_move;
1823         sc.calculate = _pan_calculate;
1824         smart = evas_smart_class_new(&sc);
1825      }
1826    if (smart)
1827      {
1828         wd->pan_smart = evas_object_smart_add(e, smart);
1829         wd->pan = evas_object_smart_data_get(wd->pan_smart);
1830         wd->pan->wd = wd;
1831      }
1832
1833    elm_smart_scroller_extern_pan_set(wd->scr, wd->pan_smart,
1834                                      _pan_set, _pan_get, _pan_max_get,
1835                                      _pan_min_get, _pan_child_size_get);
1836
1837    _mirrored_set(obj, elm_widget_mirrored_get(obj));
1838    return obj;
1839 }
1840
1841 /**
1842  * Set the size for the item of the Gengrid.
1843  *
1844  * @param obj The Gengrid object.
1845  * @param w The item's width.
1846  * @param h The item's height;
1847  *
1848  * @see elm_gengrid_item_size_get()
1849  *
1850  * @ingroup Gengrid
1851  */
1852 EAPI void
1853 elm_gengrid_item_size_set(Evas_Object *obj,
1854                           Evas_Coord   w,
1855                           Evas_Coord   h)
1856 {
1857    ELM_CHECK_WIDTYPE(obj, widtype);
1858    Widget_Data *wd = elm_widget_data_get(obj);
1859    if (!wd) return;
1860    if ((wd->item_width == w) && (wd->item_height == h)) return;
1861    wd->item_width = w;
1862    wd->item_height = h;
1863    if (wd->calc_job) ecore_job_del(wd->calc_job);
1864    wd->calc_job = ecore_job_add(_calc_job, wd);
1865 }
1866
1867 /**
1868  * Get the size of the item of the Gengrid.
1869  *
1870  * @param obj The Gengrid object.
1871  * @param w Pointer to the item's width.
1872  * @param h Pointer to the item's height.
1873  *
1874  * @see elm_gengrid_item_size_get()
1875  *
1876  * @ingroup Gengrid
1877  */
1878 EAPI void
1879 elm_gengrid_item_size_get(const Evas_Object *obj,
1880                           Evas_Coord        *w,
1881                           Evas_Coord        *h)
1882 {
1883    ELM_CHECK_WIDTYPE(obj, widtype);
1884    Widget_Data *wd = elm_widget_data_get(obj);
1885    if (!wd) return;
1886    if (w) *w = wd->item_width;
1887    if (h) *h = wd->item_height;
1888 }
1889
1890 /**
1891  * Set item's alignment within the scroller.
1892  *
1893  * @param obj The Gengrid object.
1894  * @param align_x The x alignment (0 <= x <= 1).
1895  * @param align_y The y alignment (0 <= y <= 1).
1896  *
1897  * @see elm_gengrid_align_get()
1898  *
1899  * @ingroup Gengrid
1900  */
1901 EAPI void
1902 elm_gengrid_align_set(Evas_Object *obj,
1903                       double       align_x,
1904                       double       align_y)
1905 {
1906    ELM_CHECK_WIDTYPE(obj, widtype);
1907    Widget_Data *wd = elm_widget_data_get(obj);
1908
1909    if (align_x > 1.0)
1910      align_x = 1.0;
1911    else if (align_x < 0.0)
1912      align_x = 0.0;
1913    wd->align_x = align_x;
1914
1915    if (align_y > 1.0)
1916      align_y = 1.0;
1917    else if (align_y < 0.0)
1918      align_y = 0.0;
1919    wd->align_y = align_y;
1920 }
1921
1922 /**
1923  * Get the alignenment set for the Gengrid object.
1924  *
1925  * @param obj The Gengrid object.
1926  * @param align_x Pointer to x alignenment.
1927  * @param align_y Pointer to y alignenment.
1928  *
1929  * @see elm_gengrid_align_set()
1930  *
1931  * @ingroup Gengrid
1932  */
1933 EAPI void
1934 elm_gengrid_align_get(const Evas_Object *obj,
1935                       double            *align_x,
1936                       double            *align_y)
1937 {
1938    ELM_CHECK_WIDTYPE(obj, widtype);
1939    Widget_Data *wd = elm_widget_data_get(obj);
1940    if (align_x) *align_x = wd->align_x;
1941    if (align_y) *align_y = wd->align_y;
1942 }
1943
1944 /**
1945  * Add item to the end of the Gengrid.
1946  *
1947  * @param obj The Gengrid object.
1948  * @param gic The item class for the item.
1949  * @param data The item data.
1950  * @param func Convenience function called when item is selected.
1951  * @param func_data Data passed to @p func above.
1952  * @return A handle to the item added or NULL if not possible.
1953  *
1954  * @see elm_gengrid_item_prepend()
1955  * @see elm_gengrid_item_insert_before()
1956  * @see elm_gengrid_item_insert_after()
1957  * @see elm_gengrid_item_del()
1958  *
1959  * @ingroup Gengrid
1960  */
1961 EAPI Elm_Gengrid_Item *
1962 elm_gengrid_item_append(Evas_Object                  *obj,
1963                         const Elm_Gengrid_Item_Class *gic,
1964                         const void                   *data,
1965                         Evas_Smart_Cb                 func,
1966                         const void                   *func_data)
1967 {
1968    Elm_Gengrid_Item *item;
1969    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1970    Widget_Data *wd = elm_widget_data_get(obj);
1971    if (!wd) return NULL;
1972
1973    item = _item_create(wd, gic, data, func, func_data);
1974    if (!item) return NULL;
1975    wd->items = eina_inlist_append(wd->items, EINA_INLIST_GET(item));
1976
1977    if (wd->calc_job) ecore_job_del(wd->calc_job);
1978    wd->calc_job = ecore_job_add(_calc_job, wd);
1979
1980    return item;
1981 }
1982
1983 /**
1984  * Add item at start of the Gengrid.
1985  *
1986  * This adds an item to the beginning of the grid.
1987  *
1988  * @param obj The Gengrid object.
1989  * @param gic The item class for the item.
1990  * @param data The item data.
1991  * @param func Convenience function called when item is selected.
1992  * @param func_data Data passed to @p func above.
1993  * @return A handle to the item added or NULL if not possible.
1994  *
1995  * @see elm_gengrid_item_append()
1996  * @see elm_gengrid_item_insert_before()
1997  * @see elm_gengrid_item_insert_after()
1998  * @see elm_gengrid_item_del()
1999  *
2000  * @ingroup Gengrid
2001  */
2002 EAPI Elm_Gengrid_Item *
2003 elm_gengrid_item_prepend(Evas_Object                  *obj,
2004                          const Elm_Gengrid_Item_Class *gic,
2005                          const void                   *data,
2006                          Evas_Smart_Cb                 func,
2007                          const void                   *func_data)
2008 {
2009    Elm_Gengrid_Item *item;
2010    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2011    Widget_Data *wd = elm_widget_data_get(obj);
2012    if (!wd) return NULL;
2013
2014    item = _item_create(wd, gic, data, func, func_data);
2015    if (!item) return NULL;
2016    wd->items = eina_inlist_prepend(wd->items, EINA_INLIST_GET(item));
2017
2018    if (wd->calc_job) ecore_job_del(wd->calc_job);
2019    wd->calc_job = ecore_job_add(_calc_job, wd);
2020
2021    return item;
2022 }
2023
2024 /**
2025  * Insert and item before another in the Gengrid.
2026  *
2027  * This inserts an item before another in the grid.
2028  *
2029  * @param obj The Gengrid object.
2030  * @param gic The item class for the item.
2031  * @param data The item data.
2032  * @param relative The item to which insert before.
2033  * @param func Convenience function called when item is selected.
2034  * @param func_data Data passed to @p func above.
2035  * @return A handle to the item added or NULL if not possible.
2036  *
2037  * @see elm_gengrid_item_append()
2038  * @see elm_gengrid_item_prepend()
2039  * @see elm_gengrid_item_insert_after()
2040  * @see elm_gengrid_item_del()
2041  *
2042  * @ingroup Gengrid
2043  */
2044 EAPI Elm_Gengrid_Item *
2045 elm_gengrid_item_insert_before(Evas_Object                  *obj,
2046                                const Elm_Gengrid_Item_Class *gic,
2047                                const void                   *data,
2048                                Elm_Gengrid_Item             *relative,
2049                                Evas_Smart_Cb                 func,
2050                                const void                   *func_data)
2051 {
2052    Elm_Gengrid_Item *item;
2053    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2054    EINA_SAFETY_ON_NULL_RETURN_VAL(relative, NULL);
2055    Widget_Data *wd = elm_widget_data_get(obj);
2056    if (!wd) return NULL;
2057
2058    item = _item_create(wd, gic, data, func, func_data);
2059    if (!item) return NULL;
2060    wd->items = eina_inlist_prepend_relative
2061       (wd->items, EINA_INLIST_GET(item), EINA_INLIST_GET(relative));
2062
2063    if (wd->calc_job) ecore_job_del(wd->calc_job);
2064    wd->calc_job = ecore_job_add(_calc_job, wd);
2065
2066    return item;
2067 }
2068
2069 /**
2070  * Insert and item after another in the Gengrid.
2071  *
2072  * This inserts an item after another in the grid.
2073  *
2074  * @param obj The Gengrid object.
2075  * @param gic The item class for the item.
2076  * @param data The item data.
2077  * @param relative The item to which insert after.
2078  * @param func Convenience function called when item is selected.
2079  * @param func_data Data passed to @p func above.
2080  * @return A handle to the item added or NULL if not possible.
2081  *
2082  * @see elm_gengrid_item_append()
2083  * @see elm_gengrid_item_prepend()
2084  * @see elm_gengrid_item_insert_before()
2085  * @see elm_gengrid_item_del()
2086  *
2087  * @ingroup Gengrid
2088  */
2089 EAPI Elm_Gengrid_Item *
2090 elm_gengrid_item_insert_after(Evas_Object                  *obj,
2091                               const Elm_Gengrid_Item_Class *gic,
2092                               const void                   *data,
2093                               Elm_Gengrid_Item             *relative,
2094                               Evas_Smart_Cb                 func,
2095                               const void                   *func_data)
2096 {
2097    Elm_Gengrid_Item *item;
2098    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2099    EINA_SAFETY_ON_NULL_RETURN_VAL(relative, NULL);
2100    Widget_Data *wd = elm_widget_data_get(obj);
2101    if (!wd) return NULL;
2102
2103    item = _item_create(wd, gic, data, func, func_data);
2104    if (!item) return NULL;
2105    wd->items = eina_inlist_append_relative
2106       (wd->items, EINA_INLIST_GET(item), EINA_INLIST_GET(relative));
2107
2108    if (wd->calc_job) ecore_job_del(wd->calc_job);
2109    wd->calc_job = ecore_job_add(_calc_job, wd);
2110
2111    return item;
2112 }
2113
2114 EAPI Elm_Gengrid_Item *
2115 elm_gengrid_item_direct_sorted_insert(Evas_Object                  *obj,
2116                                       const Elm_Gengrid_Item_Class *gic,
2117                                       const void                   *data,
2118                                       Eina_Compare_Cb               comp,
2119                                       Evas_Smart_Cb                 func,
2120                                       const void                   *func_data)
2121 {
2122    Elm_Gengrid_Item *item;
2123    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2124    Widget_Data *wd = elm_widget_data_get(obj);
2125    if (!wd) return NULL;
2126
2127    item = _item_create(wd, gic, data, func, func_data);
2128    if (!item) return NULL;
2129
2130    _elm_gengrid_item_compare_cb = comp;
2131    wd->items = eina_inlist_sorted_insert(wd->items, EINA_INLIST_GET(item),
2132                                          _elm_gengrid_item_compare);
2133    if (wd->calc_job) ecore_job_del(wd->calc_job);
2134    wd->calc_job = ecore_job_add(_calc_job, wd);
2135
2136    return item;
2137 }
2138
2139 EAPI Elm_Gengrid_Item *
2140 elm_gengrid_item_sorted_insert(Evas_Object                  *obj,
2141                                const Elm_Gengrid_Item_Class *gic,
2142                                const void                   *data,
2143                                Eina_Compare_Cb               comp,
2144                                Evas_Smart_Cb                 func,
2145                                const void                   *func_data)
2146 {
2147    _elm_gengrid_item_compare_data_cb = comp;
2148
2149    return elm_gengrid_item_direct_sorted_insert(obj, gic, data, _elm_gengrid_item_compare_data, func, func_data);
2150 }
2151
2152 /**
2153  * Remove an item from the Gengrid.
2154  *
2155  * @param item The item to be removed.
2156  * @return @c EINA_TRUE on success or @c EINA_FALSE otherwise.
2157  *
2158  * @see elm_gengrid_clear() to remove all items of the Gengrid.
2159  *
2160  * @ingroup Gengrid
2161  */
2162 EAPI void
2163 elm_gengrid_item_del(Elm_Gengrid_Item *item)
2164 {
2165    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2166    if ((item->relcount > 0) || (item->walking > 0))
2167      {
2168         item->delete_me = EINA_TRUE;
2169         elm_widget_item_pre_notify_del(item);
2170         if (item->selected)
2171           item->wd->selected = eina_list_remove(item->wd->selected, item);
2172         if (item->gic->func.del)
2173           item->gic->func.del((void *)item->base.data, item->wd->self);
2174         return;
2175      }
2176
2177    _item_del(item);
2178 }
2179
2180 /**
2181  * Set for what direction the Gengrid will expand.
2182  *
2183  * @param obj The Gengrid object.
2184  * @param setting If @c EINA_TRUE the Gengrid will expand horizontally
2185  * or vertically if @c EINA_FALSE.
2186  *
2187  * @ingroup Gengrid
2188  */
2189 EAPI void
2190 elm_gengrid_horizontal_set(Evas_Object *obj,
2191                            Eina_Bool    setting)
2192 {
2193    ELM_CHECK_WIDTYPE(obj, widtype);
2194    Widget_Data *wd = elm_widget_data_get(obj);
2195    if (!wd) return;
2196    if (setting == wd->horizontal) return;
2197    wd->horizontal = setting;
2198
2199    /* Update the items to conform to the new layout */
2200    if (wd->calc_job) ecore_job_del(wd->calc_job);
2201    wd->calc_job = ecore_job_add(_calc_job, wd);
2202 }
2203
2204 /**
2205  * Get for what direction the Gengrid is expanded.
2206  *
2207  * @param obj The Gengrid object.
2208  * @return If the Gengrid is expanded horizontally return @c EINA_TRUE
2209  * else @c EINA_FALSE.
2210  *
2211  * @ingroup Gengrid
2212  */
2213 EAPI Eina_Bool
2214 elm_gengrid_horizontal_get(const Evas_Object *obj)
2215 {
2216    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2217    Widget_Data *wd = elm_widget_data_get(obj);
2218    if (!wd) return EINA_FALSE;
2219    return wd->horizontal;
2220 }
2221
2222 /**
2223  * Clear the Gengrid
2224  *
2225  * This clears all items in the Gengrid, leaving it empty.
2226  *
2227  * @param obj The Gengrid object.
2228  *
2229  * @see elm_gengrid_item_del() to remove just one item.
2230  *
2231  * @ingroup Gengrid
2232  */
2233 EAPI void
2234 elm_gengrid_clear(Evas_Object *obj)
2235 {
2236    ELM_CHECK_WIDTYPE(obj, widtype);
2237    Widget_Data *wd = elm_widget_data_get(obj);
2238    if (!wd) return;
2239
2240    if (wd->calc_job)
2241      {
2242         ecore_job_del(wd->calc_job);
2243         wd->calc_job = NULL;
2244      }
2245
2246    if (wd->walking > 0)
2247      {
2248         Elm_Gengrid_Item *item;
2249         wd->clear_me = 1;
2250         EINA_INLIST_FOREACH(wd->items, item)
2251            item->delete_me = 1;
2252         return;
2253      }
2254    wd->clear_me = 0;
2255    while (wd->items)
2256      {
2257         Elm_Gengrid_Item *item = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
2258
2259         wd->items = eina_inlist_remove(wd->items, wd->items);
2260         elm_widget_item_pre_notify_del(item);
2261         if (item->realized) _item_unrealize(item);
2262         if (item->gic->func.del)
2263           item->gic->func.del((void *)item->base.data, wd->self);
2264         if (item->long_timer) ecore_timer_del(item->long_timer);
2265         elm_widget_item_del(item);
2266      }
2267
2268    if (wd->selected)
2269      {
2270         eina_list_free(wd->selected);
2271         wd->selected = NULL;
2272      }
2273
2274    wd->pan_x = 0;
2275    wd->pan_y = 0;
2276    wd->minw = 0;
2277    wd->minh = 0;
2278    wd->count = 0;
2279    evas_object_size_hint_min_set(wd->pan_smart, wd->minw, wd->minh);
2280    evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
2281 }
2282
2283 /**
2284  * Get the real evas object of the Gengrid item
2285  *
2286  * This returns the actual evas object used for the specified Gengrid
2287  * item.  This may be NULL as it may not be created, and may be
2288  * deleted at any time by Gengrid. Do not modify this object (move,
2289  * resize, show, hide etc.) as Gengrid is controlling it. This
2290  * function is for querying, emitting custom signals or hooking lower
2291  * level callbacks for events. Do not delete this object under any
2292  * circumstances.
2293  *
2294  * @param item The Gengrid item.
2295  * @return the evas object associated to this item.
2296  *
2297  * @see elm_gengrid_item_data_get()
2298  *
2299  * @ingroup Gengrid
2300  */
2301 EAPI const Evas_Object *
2302 elm_gengrid_item_object_get(const Elm_Gengrid_Item *item)
2303 {
2304    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2305    return item->base.view;
2306 }
2307
2308 /**
2309  * Update the contents of an item
2310  *
2311  * This updates an item by calling all the item class functions again
2312  * to get the icons, labels and states. Use this when the original
2313  * item data has changed and the changes are desired to be reflected.
2314  *
2315  * @param item The item
2316  *
2317  * @ingroup Gengrid
2318  */
2319 EAPI void
2320 elm_gengrid_item_update(Elm_Gengrid_Item *item)
2321 {
2322    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2323    if (!item->realized) return;
2324    if (item->want_unrealize) return;
2325    _item_unrealize(item);
2326    _item_realize(item);
2327    _item_place(item, item->x, item->y);
2328 }
2329
2330 /**
2331  * Returns the data associated to an item
2332  *
2333  * This returns the data value passed on the elm_gengrid_item_append()
2334  * and related item addition calls.
2335  *
2336  * @param item The Gengrid item.
2337  * @return the data associated to this item.
2338  *
2339  * @see elm_gengrid_item_append()
2340  * @see elm_gengrid_item_object_get()
2341  *
2342  * @ingroup Gengrid
2343  */
2344 EAPI void *
2345 elm_gengrid_item_data_get(const Elm_Gengrid_Item *item)
2346 {
2347    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2348    return elm_widget_item_data_get(item);
2349 }
2350
2351 /**
2352  * Set the datan item from the gengrid item
2353  *
2354  * This set the data value passed on the elm_gengrid_item_append() and
2355  * related item addition calls. This function will also call
2356  * elm_gengrid_item_update() so the item will be updated to reflect
2357  * the new data.
2358  *
2359  * @param item The item
2360  * @param data The new data pointer to set
2361  *
2362  * @ingroup Gengrid
2363  */
2364 EAPI void
2365 elm_gengrid_item_data_set(Elm_Gengrid_Item *item,
2366                           const void       *data)
2367 {
2368    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2369    elm_widget_item_data_set(item, data);
2370    elm_gengrid_item_update(item);
2371 }
2372
2373 EAPI const Elm_Gengrid_Item_Class *
2374 elm_gengrid_item_item_class_get(const Elm_Gengrid_Item *item)
2375 {
2376    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2377    if (item->delete_me) return NULL;
2378    return item->gic;
2379 }
2380
2381 EAPI void
2382 elm_gengrid_item_item_class_set(Elm_Gengrid_Item *item,
2383                                 const Elm_Gengrid_Item_Class *gic)
2384 {
2385    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2386    EINA_SAFETY_ON_NULL_RETURN(gic);
2387    if (item->delete_me) return;
2388    item->gic = gic;
2389    elm_gengrid_item_update(item);
2390 }
2391
2392 /**
2393  * Get the item's coordinates.
2394  *
2395  * This returns the logical position of the item whithin the Gengrid.
2396  *
2397  * @param item The Gengrid item.
2398  * @param x The x-axis coordinate pointer.
2399  * @param y The y-axis coordinate pointer.
2400  *
2401  * @ingroup Gengrid
2402  */
2403 EAPI void
2404 elm_gengrid_item_pos_get(const Elm_Gengrid_Item *item,
2405                          unsigned int           *x,
2406                          unsigned int           *y)
2407 {
2408    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2409    if (x) *x = item->x;
2410    if (y) *y = item->y;
2411 }
2412
2413 /**
2414  * Enable or disable multi-select in the Gengrid.
2415  *
2416  * This enables (EINA_TRUE) or disables (EINA_FALSE) multi-select in
2417  * the Gengrid.  This allows more than 1 item to be selected.
2418  *
2419  * @param obj The Gengrid object.
2420  * @param multi Multi-select enabled/disabled
2421  *
2422  * @ingroup Gengrid
2423  */
2424 EAPI void
2425 elm_gengrid_multi_select_set(Evas_Object *obj,
2426                              Eina_Bool    multi)
2427 {
2428    ELM_CHECK_WIDTYPE(obj, widtype);
2429    Widget_Data *wd = elm_widget_data_get(obj);
2430    if (!wd) return;
2431    wd->multi = multi;
2432 }
2433
2434 /**
2435  * Get if multi-select in Gengrid is enabled or disabled
2436  *
2437  * @param obj The Gengrid object
2438  * @return Multi-select enable/disable
2439  * (EINA_TRUE = enabled / EINA_FALSE = disabled)
2440  *
2441  * @ingroup Gengrid
2442  */
2443 EAPI Eina_Bool
2444 elm_gengrid_multi_select_get(const Evas_Object *obj)
2445 {
2446    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2447    Widget_Data *wd = elm_widget_data_get(obj);
2448    if (!wd) return EINA_FALSE;
2449    return wd->multi;
2450 }
2451
2452 /**
2453  * Get the selected item in the Gengrid
2454  *
2455  * This gets the selected item in the Gengrid (if multi-select is
2456  * enabled only the first item in the list is selected - which is not
2457  * very useful, so see elm_gengrid_selected_items_get() for when
2458  * multi-select is used).
2459  *
2460  * If no item is selected, NULL is returned.
2461  *
2462  * @param obj The Gengrid object.
2463  * @return The selected item, or NULL if none.
2464  *
2465  * @ingroup Gengrid
2466  */
2467 EAPI Elm_Gengrid_Item *
2468 elm_gengrid_selected_item_get(const Evas_Object *obj)
2469 {
2470    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2471    Widget_Data *wd = elm_widget_data_get(obj);
2472    if (!wd) return NULL;
2473    if (wd->selected) return wd->selected->data;
2474    return NULL;
2475 }
2476
2477 /**
2478  * Get a list of selected items in the Gengrid.
2479  *
2480  * This returns a list of the selected items. This list pointer is
2481  * only valid so long as no items are selected or unselected (or
2482  * unselected implictly by deletion). The list contains
2483  * Elm_Gengrid_Item pointers.
2484  *
2485  * @param obj The Gengrid object.
2486  * @return The list of selected items, or NULL if none are selected.
2487  *
2488  * @ingroup Gengrid
2489  */
2490 EAPI const Eina_List *
2491 elm_gengrid_selected_items_get(const Evas_Object *obj)
2492 {
2493    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2494    Widget_Data *wd = elm_widget_data_get(obj);
2495    if (!wd) return NULL;
2496    return wd->selected;
2497 }
2498
2499 /**
2500  * Set the selected state of an item.
2501  *
2502  * This sets the selected state of an item. If multi-select is not
2503  * enabled and selected is EINA_TRUE, previously selected items are
2504  * unselected.
2505  *
2506  * @param item The item
2507  * @param selected The selected state.
2508  *
2509  * @ingroup Gengrid
2510  */
2511 EAPI void
2512 elm_gengrid_item_selected_set(Elm_Gengrid_Item *item,
2513                               Eina_Bool         selected)
2514 {
2515    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2516    Widget_Data *wd = item->wd;
2517    if (!wd) return;
2518    if (item->delete_me) return;
2519    selected = !!selected;
2520    if (item->selected == selected) return;
2521
2522    if (selected)
2523      {
2524         if (!wd->multi)
2525           {
2526              while (wd->selected)
2527                _item_unselect(wd->selected->data);
2528           }
2529         _item_hilight(item);
2530         _item_select(item);
2531      }
2532    else
2533      _item_unselect(item);
2534 }
2535
2536 /**
2537  * Get the selected state of an item.
2538  *
2539  * This gets the selected state of an item (1 selected, 0 not selected).
2540  *
2541  * @param item The item
2542  * @return The selected state
2543  *
2544  * @ingroup Gengrid
2545  */
2546 EAPI Eina_Bool
2547 elm_gengrid_item_selected_get(const Elm_Gengrid_Item *item)
2548 {
2549    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
2550    return item->selected;
2551 }
2552
2553 /**
2554  * Sets the disabled state of an item.
2555  *
2556  * A disabled item cannot be selected or unselected. It will also
2557  * change appearance to disabled. This sets the disabled state (1
2558  * disabled, 0 not disabled).
2559  *
2560  * @param item The item
2561  * @param disabled The disabled state
2562  *
2563  * @ingroup Gengrid
2564  */
2565 EAPI void
2566 elm_gengrid_item_disabled_set(Elm_Gengrid_Item *item,
2567                               Eina_Bool         disabled)
2568 {
2569    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2570    if (item->disabled == disabled) return;
2571    if (item->delete_me) return;
2572    item->disabled = !!disabled;
2573    if (item->realized)
2574      {
2575         if (item->disabled)
2576           edje_object_signal_emit(item->base.view, "elm,state,disabled", "elm");
2577         else
2578           edje_object_signal_emit(item->base.view, "elm,state,enabled", "elm");
2579      }
2580 }
2581
2582 /**
2583  * Get the disabled state of an item.
2584  *
2585  * This gets the disabled state of the given item.
2586  *
2587  * @param item The item
2588  * @return The disabled state
2589  *
2590  * @ingroup Gengrid
2591  */
2592 EAPI Eina_Bool
2593 elm_gengrid_item_disabled_get(const Elm_Gengrid_Item *item)
2594 {
2595    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
2596    if (item->delete_me) return EINA_FALSE;
2597    return item->disabled;
2598 }
2599
2600 static Evas_Object *
2601 _elm_gengrid_item_label_create(void        *data,
2602                                Evas_Object *obj,
2603                                void *item   __UNUSED__)
2604 {
2605    Evas_Object *label = elm_label_add(obj);
2606    if (!label)
2607      return NULL;
2608    elm_object_style_set(label, "tooltip");
2609    elm_object_text_set(label, data);
2610    return label;
2611 }
2612
2613 static void
2614 _elm_gengrid_item_label_del_cb(void            *data,
2615                                Evas_Object *obj __UNUSED__,
2616                                void *event_info __UNUSED__)
2617 {
2618    eina_stringshare_del(data);
2619 }
2620
2621 /**
2622  * Set the text to be shown in the gengrid item.
2623  *
2624  * @param item Target item
2625  * @param text The text to set in the content
2626  *
2627  * Setup the text as tooltip to object. The item can have only one
2628  * tooltip, so any previous tooltip data is removed.
2629  *
2630  * @ingroup Gengrid
2631  */
2632 EAPI void
2633 elm_gengrid_item_tooltip_text_set(Elm_Gengrid_Item *item,
2634                                   const char       *text)
2635 {
2636    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2637    text = eina_stringshare_add(text);
2638    elm_gengrid_item_tooltip_content_cb_set(item, _elm_gengrid_item_label_create,
2639                                            text,
2640                                            _elm_gengrid_item_label_del_cb);
2641 }
2642
2643 /**
2644  * Set the content to be shown in the tooltip item
2645  *
2646  * Setup the tooltip to item. The item can have only one tooltip, so
2647  * any previous tooltip data is removed. @p func(with @p data) will be
2648  * called every time that need show the tooltip and it should return a
2649  * valid Evas_Object. This object is then managed fully by tooltip
2650  * system and is deleted when the tooltip is gone.
2651  *
2652  * @param item the gengrid item being attached a tooltip.
2653  * @param func the function used to create the tooltip contents.
2654  * @param data what to provide to @a func as callback data/context.
2655  * @param del_cb called when data is not needed anymore, either when
2656  *        another callback replaces @func, the tooltip is unset with
2657  *        elm_gengrid_item_tooltip_unset() or the owner @an item
2658  *        dies. This callback receives as the first parameter the
2659  *        given @a data, and @c event_info is the item.
2660  *
2661  * @ingroup Gengrid
2662  */
2663 EAPI void
2664 elm_gengrid_item_tooltip_content_cb_set(Elm_Gengrid_Item           *item,
2665                                         Elm_Tooltip_Item_Content_Cb func,
2666                                         const void                 *data,
2667                                         Evas_Smart_Cb               del_cb)
2668 {
2669    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_GOTO(item, error);
2670
2671    if ((item->tooltip.content_cb == func) && (item->tooltip.data == data))
2672      return;
2673
2674    if (item->tooltip.del_cb)
2675      item->tooltip.del_cb((void *)item->tooltip.data,
2676                           item->base.widget, item);
2677    item->tooltip.content_cb = func;
2678    item->tooltip.data = data;
2679    item->tooltip.del_cb = del_cb;
2680    if (item->base.view)
2681      {
2682         elm_widget_item_tooltip_content_cb_set(item,
2683                                                item->tooltip.content_cb,
2684                                                item->tooltip.data, NULL);
2685         elm_widget_item_tooltip_style_set(item, item->tooltip.style);
2686      }
2687
2688    return;
2689
2690 error:
2691    if (del_cb) del_cb((void *)data, NULL, NULL);
2692 }
2693
2694 /**
2695  * Unset tooltip from item
2696  *
2697  * @param item gengrid item to remove previously set tooltip.
2698  *
2699  * Remove tooltip from item. The callback provided as del_cb to
2700  * elm_gengrid_item_tooltip_content_cb_set() will be called to notify
2701  * it is not used anymore.
2702  *
2703  * @see elm_gengrid_item_tooltip_content_cb_set()
2704  *
2705  * @ingroup Gengrid
2706  */
2707 EAPI void
2708 elm_gengrid_item_tooltip_unset(Elm_Gengrid_Item *item)
2709 {
2710    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2711    if ((item->base.view) && (item->tooltip.content_cb))
2712      elm_widget_item_tooltip_unset(item);
2713
2714    if (item->tooltip.del_cb)
2715      item->tooltip.del_cb((void *)item->tooltip.data, item->base.widget, item);
2716    item->tooltip.del_cb = NULL;
2717    item->tooltip.content_cb = NULL;
2718    item->tooltip.data = NULL;
2719    if (item->tooltip.style)
2720      elm_gengrid_item_tooltip_style_set(item, NULL);
2721 }
2722
2723 /**
2724  * Sets a different style for this item tooltip.
2725  *
2726  * @note before you set a style you should define a tooltip with
2727  *       elm_gengrid_item_tooltip_content_cb_set() or
2728  *       elm_gengrid_item_tooltip_text_set()
2729  *
2730  * @param item gengrid item with tooltip already set.
2731  * @param style the theme style to use (default, transparent, ...)
2732  *
2733  * @ingroup Gengrid
2734  */
2735 EAPI void
2736 elm_gengrid_item_tooltip_style_set(Elm_Gengrid_Item *item,
2737                                    const char       *style)
2738 {
2739    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2740    eina_stringshare_replace(&item->tooltip.style, style);
2741    if (item->base.view) elm_widget_item_tooltip_style_set(item, style);
2742 }
2743
2744 /**
2745  * Get the style for this item tooltip.
2746  *
2747  * @param item gengrid item with tooltip already set.
2748  * @return style the theme style in use, defaults to "default". If the
2749  *         object does not have a tooltip set, then NULL is returned.
2750  *
2751  * @ingroup Gengrid
2752  */
2753 EAPI const char *
2754 elm_gengrid_item_tooltip_style_get(const Elm_Gengrid_Item *item)
2755 {
2756    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2757    return item->tooltip.style;
2758 }
2759
2760 /**
2761  * Set the cursor to be shown when mouse is over the gengrid item
2762  *
2763  * @param item Target item
2764  * @param cursor the cursor name to be used.
2765  *
2766  * @see elm_object_cursor_set()
2767  * @ingroup Gengrid
2768  */
2769 EAPI void
2770 elm_gengrid_item_cursor_set(Elm_Gengrid_Item *item,
2771                             const char       *cursor)
2772 {
2773    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2774    eina_stringshare_replace(&item->mouse_cursor, cursor);
2775    if (item->base.view) elm_widget_item_cursor_set(item, cursor);
2776 }
2777
2778 /**
2779  * Get the cursor to be shown when mouse is over the gengrid item
2780  *
2781  * @param item gengrid item with cursor already set.
2782  * @return the cursor name.
2783  *
2784  * @ingroup Gengrid
2785  */
2786 EAPI const char *
2787 elm_gengrid_item_cursor_get(const Elm_Gengrid_Item *item)
2788 {
2789    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2790    return elm_widget_item_cursor_get(item);
2791 }
2792
2793 /**
2794  * Unset the cursor to be shown when mouse is over the gengrid item
2795  *
2796  * @param item Target item
2797  *
2798  * @see elm_object_cursor_unset()
2799  * @ingroup Gengrid
2800  */
2801 EAPI void
2802 elm_gengrid_item_cursor_unset(Elm_Gengrid_Item *item)
2803 {
2804    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2805    if (!item->mouse_cursor)
2806      return;
2807
2808    if (item->base.view)
2809      elm_widget_item_cursor_unset(item);
2810
2811    eina_stringshare_del(item->mouse_cursor);
2812    item->mouse_cursor = NULL;
2813 }
2814
2815 /**
2816  * Sets a different style for this item cursor.
2817  *
2818  * @note before you set a style you should define a cursor with
2819  *       elm_gengrid_item_cursor_set()
2820  *
2821  * @param item gengrid item with cursor already set.
2822  * @param style the theme style to use (default, transparent, ...)
2823  *
2824  * @ingroup Gengrid
2825  */
2826 EAPI void
2827 elm_gengrid_item_cursor_style_set(Elm_Gengrid_Item *item,
2828                                   const char       *style)
2829 {
2830    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2831    elm_widget_item_cursor_style_set(item, style);
2832 }
2833
2834 /**
2835  * Get the style for this item cursor.
2836  *
2837  * @param item gengrid item with cursor already set.
2838  * @return style the theme style in use, defaults to "default". If the
2839  *         object does not have a cursor set, then NULL is returned.
2840  *
2841  * @ingroup Gengrid
2842  */
2843 EAPI const char *
2844 elm_gengrid_item_cursor_style_get(const Elm_Gengrid_Item *item)
2845 {
2846    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2847    return elm_widget_item_cursor_style_get(item);
2848 }
2849
2850 /**
2851  * Set if the cursor set should be searched on the theme or should use
2852  * the provided by the engine, only.
2853  *
2854  * @note before you set if should look on theme you should define a
2855  * cursor with elm_object_cursor_set(). By default it will only look
2856  * for cursors provided by the engine.
2857  *
2858  * @param item widget item with cursor already set.
2859  * @param engine_only boolean to define it cursors should be looked
2860  * only between the provided by the engine or searched on widget's
2861  * theme as well.
2862  *
2863  * @ingroup Gengrid
2864  */
2865 EAPI void
2866 elm_gengrid_item_cursor_engine_only_set(Elm_Gengrid_Item *item,
2867                                         Eina_Bool         engine_only)
2868 {
2869    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2870    elm_widget_item_cursor_engine_only_set(item, engine_only);
2871 }
2872
2873 /**
2874  * Get the cursor engine only usage for this item cursor.
2875  *
2876  * @param item widget item with cursor already set.
2877  * @return engine_only boolean to define it cursors should be looked
2878  * only between the provided by the engine or searched on widget's
2879  * theme as well. If the object does not have a cursor set, then
2880  * EINA_FALSE is returned.
2881  *
2882  * @ingroup Gengrid
2883  */
2884 EAPI Eina_Bool
2885 elm_gengrid_item_cursor_engine_only_get(const Elm_Gengrid_Item *item)
2886 {
2887    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
2888    return elm_widget_item_cursor_engine_only_get(item);
2889 }
2890
2891 /**
2892  * Set the reorder mode
2893  *
2894  * @param obj The Gengrid object
2895  * @param reorder_mode The reorder mode
2896  * (EINA_TRUE = on, EINA_FALSE = off)
2897  *
2898  * @ingroup Gengrid
2899  */
2900 EAPI void
2901 elm_gengrid_reorder_mode_set(Evas_Object *obj,
2902                              Eina_Bool    reorder_mode)
2903 {
2904    ELM_CHECK_WIDTYPE(obj, widtype);
2905    Widget_Data *wd = elm_widget_data_get(obj);
2906    if (!wd) return;
2907    wd->reorder_mode = reorder_mode;
2908 }
2909
2910 /**
2911  * Get the reorder mode
2912  *
2913  * @param obj The Gengrid object
2914  * @return The reorder mode
2915  * (EINA_TRUE = on, EINA_FALSE = off)
2916  *
2917  * @ingroup Gengrid
2918  */
2919 EAPI Eina_Bool
2920 elm_gengrid_reorder_mode_get(const Evas_Object *obj)
2921 {
2922    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2923    Widget_Data *wd = elm_widget_data_get(obj);
2924    if (!wd) return EINA_FALSE;
2925    return wd->reorder_mode;
2926 }
2927
2928 /**
2929  * Set the always select mode.
2930  *
2931  * Cells will only call their selection func and callback when first
2932  * becoming selected. Any further clicks will do nothing, unless you
2933  * enable always select with
2934  * elm_gengrid_always_select_mode_set(). This means even if selected,
2935  * every click will make the selected callbacks be called.
2936  *
2937  * @param obj The Gengrid object
2938  * @param always_select The always select mode (EINA_TRUE = on,
2939  * EINA_FALSE = off)
2940  *
2941  * @ingroup Gengrid
2942  */
2943 EAPI void
2944 elm_gengrid_always_select_mode_set(Evas_Object *obj,
2945                                    Eina_Bool    always_select)
2946 {
2947    ELM_CHECK_WIDTYPE(obj, widtype);
2948    Widget_Data *wd = elm_widget_data_get(obj);
2949    if (!wd) return;
2950    wd->always_select = always_select;
2951 }
2952
2953 /**
2954  * Get the always select mode.
2955  *
2956  * @param obj The Gengrid object.
2957  * @return The always select mode (EINA_TRUE = on, EINA_FALSE = off)
2958  *
2959  * @ingroup Gengrid
2960  */
2961 EAPI Eina_Bool
2962 elm_gengrid_always_select_mode_get(const Evas_Object *obj)
2963 {
2964    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2965    Widget_Data *wd = elm_widget_data_get(obj);
2966    if (!wd) return EINA_FALSE;
2967    return wd->always_select;
2968 }
2969
2970 /**
2971  * Set no select mode.
2972  *
2973  * This will turn off the ability to select items entirely and they
2974  * will neither appear selected nor call selected callback functions.
2975  *
2976  * @param obj The Gengrid object
2977  * @param no_select The no select mode (EINA_TRUE = on, EINA_FALSE = off)
2978  *
2979  * @ingroup Gengrid
2980  */
2981 EAPI void
2982 elm_gengrid_no_select_mode_set(Evas_Object *obj,
2983                                Eina_Bool    no_select)
2984 {
2985    ELM_CHECK_WIDTYPE(obj, widtype);
2986    Widget_Data *wd = elm_widget_data_get(obj);
2987    if (!wd) return;
2988    wd->no_select = no_select;
2989 }
2990
2991 /**
2992  * Gets no select mode.
2993  *
2994  * @param obj The Gengrid object
2995  * @return The no select mode (EINA_TRUE = on, EINA_FALSE = off)
2996  *
2997  * @ingroup Gengrid
2998  */
2999 EAPI Eina_Bool
3000 elm_gengrid_no_select_mode_get(const Evas_Object *obj)
3001 {
3002    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3003    Widget_Data *wd = elm_widget_data_get(obj);
3004    if (!wd) return EINA_FALSE;
3005    return wd->no_select;
3006 }
3007
3008 /**
3009  * Set bounce mode.
3010  *
3011  * This will enable or disable the scroller bounce mode for the
3012  * Gengrid. See elm_scroller_bounce_set() for details.
3013  *
3014  * @param obj The Gengrid object
3015  * @param h_bounce Allow bounce horizontally
3016  * @param v_bounce Allow bounce vertically
3017  *
3018  * @ingroup Gengrid
3019  */
3020 EAPI void
3021 elm_gengrid_bounce_set(Evas_Object *obj,
3022                        Eina_Bool    h_bounce,
3023                        Eina_Bool    v_bounce)
3024 {
3025    ELM_CHECK_WIDTYPE(obj, widtype);
3026    Widget_Data *wd = elm_widget_data_get(obj);
3027    if (!wd) return;
3028    elm_smart_scroller_bounce_allow_set(wd->scr, h_bounce, v_bounce);
3029    wd->h_bounce = h_bounce;
3030    wd->v_bounce = v_bounce;
3031 }
3032
3033 /**
3034  * Get the bounce mode
3035  *
3036  * @param obj The Gengrid object
3037  * @param h_bounce Allow bounce horizontally
3038  * @param v_bounce Allow bounce vertically
3039  *
3040  * @ingroup Gengrid
3041  */
3042 EAPI void
3043 elm_gengrid_bounce_get(const Evas_Object *obj,
3044                        Eina_Bool         *h_bounce,
3045                        Eina_Bool         *v_bounce)
3046 {
3047    ELM_CHECK_WIDTYPE(obj, widtype);
3048    Widget_Data *wd = elm_widget_data_get(obj);
3049    if (!wd) return;
3050    *h_bounce = wd->h_bounce;
3051    *v_bounce = wd->v_bounce;
3052 }
3053
3054 /**
3055  * Get all items in the Gengrid.
3056  *
3057  * This returns a list of the Gengrid items. The list contains
3058  * Elm_Gengrid_Item pointers.
3059  *
3060  * @param obj The Gengrid object.
3061  * @return The list of items, or NULL if none.
3062  *
3063  * @ingroup Gengrid
3064  */
3065
3066 /**
3067  * Set gengrid scroll page size relative to viewport size.
3068  *
3069  * The gengrid scroller is capable of limiting scrolling by the user
3070  * to "pages" That is to jump by and only show a "whole page" at a
3071  * time as if the continuous area of the scroller content is split
3072  * into page sized pieces.  This sets the size of a page relative to
3073  * the viewport of the scroller. 1.0 is "1 viewport" is size
3074  * (horizontally or vertically). 0.0 turns it off in that axis. This
3075  * is mutually exclusive with page size (see
3076  * elm_gengrid_page_size_set() for more information). Likewise 0.5 is
3077  * "half a viewport". Sane usable valus are normally between 0.0 and
3078  * 1.0 including 1.0. If you only want 1 axis to be page "limited",
3079  * use 0.0 for the other axis.
3080  *
3081  * @param obj The gengrid object
3082  * @param h_pagerel The horizontal page relative size
3083  * @param v_pagerel The vertical page relative size
3084  *
3085  * @ingroup Gengrid
3086  */
3087 EAPI void
3088 elm_gengrid_page_relative_set(Evas_Object *obj,
3089                               double       h_pagerel,
3090                               double       v_pagerel)
3091 {
3092    Evas_Coord pagesize_h;
3093    Evas_Coord pagesize_v;
3094
3095    ELM_CHECK_WIDTYPE(obj, widtype);
3096    Widget_Data *wd = elm_widget_data_get(obj);
3097    if (!wd) return;
3098
3099    elm_smart_scroller_paging_get(wd->scr, NULL, NULL, &pagesize_h, &pagesize_v);
3100    elm_smart_scroller_paging_set(wd->scr, h_pagerel, v_pagerel, pagesize_h,
3101                                  pagesize_v);
3102 }
3103
3104 /*
3105  * Get gengrid scroll page size relative to viewport size.
3106  *
3107  * The gengrid scroller is capable of limiting scrolling by the user
3108  * to "pages" That is to jump by and only show a "whole page" at a
3109  * time as if the continuous area of the scroller content is split
3110  * into page sized pieces.  This sets the size of a page relative to
3111  * the viewport of the scroller. 1.0 is "1 viewport" is size
3112  * (horizontally or vertically). 0.0 turns it off in that axis. This
3113  * is mutually exclusive with page size (see
3114  * elm_gengrid_page_size_set() for more information). Likewise 0.5 is
3115  * "half a viewport". Sane usable valus are normally between 0.0 and
3116  * 1.0 including 1.0. If you only want 1 axis to be page "limited",
3117  * use 0.0 for the other axis.
3118  *
3119  * @param obj The gengrid object
3120  * @param h_pagerel The horizontal page relative size
3121  * @param v_pagerel The vertical page relative size
3122  *
3123  @ingroup Gengrid
3124  */
3125 EAPI void
3126 elm_gengrid_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel)
3127 {
3128    ELM_CHECK_WIDTYPE(obj, widtype);
3129    Widget_Data *wd = elm_widget_data_get(obj);
3130    if (!wd) return;
3131
3132    elm_smart_scroller_paging_get(wd->scr, h_pagerel, v_pagerel, NULL, NULL);
3133 }
3134
3135 /**
3136  * Set gengrid scroll page size.
3137  *
3138  * See also elm_gengrid_page_relative_set(). This, instead of a page
3139  * size being relative to the viewport, sets it to an absolute fixed
3140  * value, with 0 turning it off for that axis.
3141  *
3142  * @param obj The gengrid object
3143  * @param h_pagesize The horizontal page size
3144  * @param v_pagesize The vertical page size
3145  *
3146  * @ingroup Gengrid
3147  */
3148 EAPI void
3149 elm_gengrid_page_size_set(Evas_Object *obj,
3150                           Evas_Coord   h_pagesize,
3151                           Evas_Coord   v_pagesize)
3152 {
3153    double pagerel_h;
3154    double pagerel_v;
3155
3156    ELM_CHECK_WIDTYPE(obj, widtype);
3157    Widget_Data *wd = elm_widget_data_get(obj);
3158    if (!wd) return;
3159    elm_smart_scroller_paging_get(wd->scr, &pagerel_h, &pagerel_v, NULL, NULL);
3160    elm_smart_scroller_paging_set(wd->scr, pagerel_h, pagerel_v, h_pagesize,
3161                                  v_pagesize);
3162 }
3163
3164 /**
3165  * Get the first item in the gengrid
3166  *
3167  * This returns the first item in the list.
3168  *
3169  * @param obj The gengrid object
3170  * @return The first item, or NULL if none
3171  *
3172  * @ingroup Gengrid
3173  */
3174 EAPI Elm_Gengrid_Item *
3175 elm_gengrid_first_item_get(const Evas_Object *obj)
3176 {
3177    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3178    Widget_Data *wd = elm_widget_data_get(obj);
3179    if (!wd) return NULL;
3180    if (!wd->items) return NULL;
3181    Elm_Gengrid_Item *item = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
3182    while ((item) && (item->delete_me))
3183      item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->next);
3184    return item;
3185 }
3186
3187 /**
3188  * Get the last item in the gengrid
3189  *
3190  * This returns the last item in the list.
3191  *
3192  * @return The last item, or NULL if none
3193  *
3194  * @ingroup Gengrid
3195  */
3196 EAPI Elm_Gengrid_Item *
3197 elm_gengrid_last_item_get(const Evas_Object *obj)
3198 {
3199    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3200    Widget_Data *wd = elm_widget_data_get(obj);
3201    if (!wd) return NULL;
3202    if (!wd->items) return NULL;
3203    Elm_Gengrid_Item *item = ELM_GENGRID_ITEM_FROM_INLIST(wd->items->last);
3204    while ((item) && (item->delete_me))
3205      item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->prev);
3206    return item;
3207 }
3208
3209 /**
3210  * Get the next item in the gengrid
3211  *
3212  * This returns the item after the item @p item.
3213  *
3214  * @param item The item
3215  * @return The item after @p item, or NULL if none
3216  *
3217  * @ingroup Gengrid
3218  */
3219 EAPI Elm_Gengrid_Item *
3220 elm_gengrid_item_next_get(const Elm_Gengrid_Item *item)
3221 {
3222    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
3223    while (item)
3224      {
3225         item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->next);
3226         if ((item) && (!item->delete_me)) break;
3227      }
3228    return (Elm_Gengrid_Item *)item;
3229 }
3230
3231 /**
3232  * Get the previous item in the gengrid
3233  *
3234  * This returns the item before the item @p item.
3235  *
3236  * @param item The item
3237  * @return The item before @p item, or NULL if none
3238  *
3239  * @ingroup Gengrid
3240  */
3241 EAPI Elm_Gengrid_Item *
3242 elm_gengrid_item_prev_get(const Elm_Gengrid_Item *item)
3243 {
3244    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
3245    while (item)
3246      {
3247         item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->prev);
3248         if ((item) && (!item->delete_me)) break;
3249      }
3250    return (Elm_Gengrid_Item *)item;
3251 }
3252
3253 /**
3254  * Get the gengrid object from an item
3255  *
3256  * This returns the gengrid object itself that an item belongs to.
3257  *
3258  * @param item The item
3259  * @return The gengrid object
3260  *
3261  * @ingroup Gengrid
3262  */
3263 EAPI Evas_Object *
3264 elm_gengrid_item_gengrid_get(const Elm_Gengrid_Item *item)
3265 {
3266    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
3267    return item->base.widget;
3268 }
3269
3270 /**
3271  * Show the given item
3272  *
3273  * This causes gengrid to jump to the given item @p item and show it
3274  * (by scrolling), if it is not fully visible.
3275  *
3276  * @param item The item
3277  *
3278  * @ingroup Gengrid
3279  */
3280 EAPI void
3281 elm_gengrid_item_show(Elm_Gengrid_Item *item)
3282 {
3283    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
3284    Widget_Data *wd = elm_widget_data_get(item->wd->self);
3285    Evas_Coord minx = 0, miny = 0;
3286
3287    if (!wd) return;
3288    if ((!item) || (item->delete_me)) return;
3289    _pan_min_get(wd->pan_smart, &minx, &miny);
3290
3291    elm_smart_scroller_child_region_show(item->wd->scr,
3292                                         item->x * wd->item_width + minx,
3293                                         item->y * wd->item_height + miny,
3294                                         item->wd->item_width,
3295                                         item->wd->item_height);
3296 }
3297
3298 /**
3299  * Bring in the given item
3300  *
3301  * This causes gengrig to jump to the given item @p item and show it
3302  * (by scrolling), if it is not fully visible. This may use animation
3303  * to do so and take a period of time
3304  *
3305  * @param item The item
3306  *
3307  * @ingroup Gengrid
3308  */
3309 EAPI void
3310 elm_gengrid_item_bring_in(Elm_Gengrid_Item *item)
3311 {
3312    ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
3313    if (item->delete_me) return;
3314
3315    Evas_Coord minx = 0, miny = 0;
3316    Widget_Data *wd = elm_widget_data_get(item->wd->self);
3317    if (!wd) return;
3318    _pan_min_get(wd->pan_smart, &minx, &miny);
3319
3320    elm_smart_scroller_region_bring_in(item->wd->scr,
3321                                       item->x * wd->item_width + minx,
3322                                       item->y * wd->item_height + miny,
3323                                       item->wd->item_width,
3324                                       item->wd->item_height);
3325 }