1 #include <Elementary.h>
2 #include <Elementary_Cursor.h>
6 * @defgroup Gengrid Gengrid
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.
13 * Signals that you can add callbacks for are:
15 * clicked - The user has double-clicked or pressed enter on
16 * a item. The event_infoparameter is the Gengrid item
17 * that was double-clicked.
19 * selected - The user has made an item selected. The event_info
20 * parameter is the Gengrid item that was selected.
22 * unselected - The user has made an item unselected. The event_info
23 * parameter is the Gengrid item that was unselected.
25 * realized - This is called when the item in the Gengrid is created
26 * as a real evas object. event_info is the Gengrid item that was
27 * created. The object may be deleted at any time, so it is up to the
28 * caller to not use the object pointer from
29 * elm_gengrid_item_object_get() in a way where it may point to freed
32 * unrealized - This is called when the real evas object for this item
33 * is deleted. event_info is the Gengrid item that was created.
35 * changed - Called when an item is added, removed, resized or moved
36 * and when gengrid is resized or horizontal property changes.
38 * drag,start,up - Called when the item in the Gengrid has been
39 * dragged (not scrolled) up.
41 * drag,start,down - Called when the item in the Gengrid has been
42 * dragged (not scrolled) down.
44 * drag,start,left - Called when the item in the Gengrid has been
45 * dragged (not scrolled) left.
47 * drag,start,right - Called when the item in the Gengrid has been
48 * dragged (not scrolled) right.
50 * drag,stop - Called when the item in the Gengrid has stopped being
53 * drag - Called when the item in the Gengrid is being dragged.
55 * scroll - called when the content has been scrolled (moved).
57 * scroll,drag,start - called when dragging the content has started.
59 * scroll,drag,stop - called when dragging the content has stopped.
62 * A item in the Gengrid can have 0 or more text labels (they can be
63 * regular text or textblock - that's up to the style to determine), 0
64 * or more icons (which are simply objects swallowed into the Gengrid
65 * item) and 0 or more boolean states that can be used for check,
66 * radio or other indicators by the edje theme style. A item may be
67 * one of several styles (Elementary provides 1 by default -
68 * "default", but this can be extended by system or application custom
69 * themes/overlays/extensions).
71 * In order to implement the ability to add and delete items on the
72 * fly, Gengrid implements a class/callback system where the
73 * application provides a structure with information about that type
74 * of item (Gengrid may contain multiple different items with
75 * different classes, states and styles). Gengrid will call the
76 * functions in this struct (methods) when a item is "realized" (that
77 * is created dynamically while scrolling). All objects will simply be
78 * deleted when no longer needed with evas_object_del(). The
79 * Elm_GenGrid_Item_Class structure contains the following members:
81 * item_style - This is a constant string and simply defines the name
82 * of the item style. It must be specified and the default should be
85 * func.label_get - This function is called when an actual item object
86 * is created. The data parameter is the one passed to
87 * elm_gengrid_item_append() and related item creation functions. The
88 * obj parameter is the Gengrid object and the part parameter is the
89 * string name of the text part in the edje design that is listed as
90 * one of the possible labels that can be set. This function must
91 * return a strdup'()ed string as the caller will free() it when done.
93 * func.icon_get - This function is called when an actual item object
94 * is created. The data parameter is the one passed to
95 * elm_gengrid_item_append() and related item creation functions. The
96 * obj parameter is the Gengrid object and the part parameter is the
97 * string name of the icon part in the edje design that is listed as
98 * one of the possible icons that can be set. This must return NULL
99 * for no object or a valid object. The object will be deleted by
100 * Gengrid on shutdown or when the item is unrealized.
102 * func.state_get - This function is called when an actual item object
103 * is created. The data parameter is the one passed to
104 * elm_gengrid_item_append() and related item creation functions. The
105 * obj parameter is the Gengrid object and the part parameter is the
106 * string name of th state part in the edje design that is listed as
107 * one of the possible states that can be set. Return 0 for false and
108 * 1 for true. Gengrid will emit a signal to the edje object with
109 * "elm,state,XXX,active" "elm" when true (the default is false),
110 * where XXX is the name of the part.
112 * func.del - This is called when elm_gengrid_item_del() is called on
113 * a item or elm_gengrid_clear() is called on the Gengrid. This is
114 * intended for use when actual Gengrid items are deleted, so any
115 * backing data attached to the item (e.g. its data parameter on
116 * creation) can be deleted.
118 * If the application wants multiple items to be able to be selected,
119 * elm_gengrid_multi_select_set() can enable this. If the Gengrid is
120 * single-selection only (the default), then
121 * elm_gengrid_select_item_get() will return the selected item, if
122 * any, or NULL if none is selected. If the Gengrid is multi-select
123 * then elm_gengrid_selected_items_get() will return a list (that is
124 * only valid as long as no items are modified (added, deleted,
125 * selected or unselected).
127 * If a item changes (state of boolean changes, label or icons
128 * change), then use elm_gengrid_item_update() to have Gengrid update
129 * the item with the new state. Gengrid will re-realize the item thus
130 * call the functions in the _Elm_Gengrid_Item_Class for that item.
132 * To programmatically (un)select a item use
133 * elm_gengrid_item_selected_set(). To get its selected state use
134 * elm_gengrid_item_selected_get(). To make a item disabled (unable to
135 * be selected and appear differently) use
136 * elm_gengrid_item_disabled_set() to set this and
137 * elm_gengrid_item_disabled_get() to get the disabled state.
139 * Cells will only call their selection func and callback when first
140 * becoming selected. Any further clicks will do nothing, unless you
141 * enable always select with
142 * elm_gengrid_always_select_mode_set(). This means event if selected,
143 * every click will make the selected callbacks be called.
144 * elm_gengrid_no_select_mode_set() will turn off the ability to
145 * select items entirely and they will neither appear selected nor
146 * call selected callback function.
148 * Remember that you can create new styles and add your own theme
149 * augmentation per application with elm_theme_extension_add(). If you
150 * absolutely must have a specific style that overrides any theme the
151 * user or system sets up you can use elm_theme_overlay_add() to add
156 * * Handle non-homogeneous objects too.
159 typedef struct _Widget_Data Widget_Data;
160 typedef struct _Pan Pan;
164 struct _Elm_Gengrid_Item
166 Elm_Widget_Item base;
169 const Elm_Gengrid_Item_Class *gic;
170 Ecore_Timer *long_timer;
172 Eina_List *labels, *icons, *states, *icon_objs;
179 Evas_Coord x, y, dx, dy;
186 Elm_Tooltip_Item_Content_Cb content_cb;
187 Evas_Smart_Cb del_cb;
191 const char *mouse_cursor;
193 Eina_Bool want_unrealize : 1;
194 Eina_Bool realized : 1;
195 Eina_Bool dragging : 1;
197 Eina_Bool delete_me : 1;
198 Eina_Bool display_only : 1;
199 Eina_Bool disabled : 1;
200 Eina_Bool selected : 1;
201 Eina_Bool hilighted : 1;
206 Evas_Object *self, *scr;
207 Evas_Object *pan_smart;
212 Elm_Gengrid_Item *last_selected_item;
213 double align_x, align_y;
215 Evas_Coord pan_x, pan_y;
216 Evas_Coord item_width, item_height; /* Each item size */
217 Evas_Coord minw, minh; /* Total obj size */
222 Eina_Bool horizontal : 1;
223 Eina_Bool on_hold : 1;
224 Eina_Bool longpressed : 1;
226 Eina_Bool no_select : 1;
227 Eina_Bool wasselected : 1;
228 Eina_Bool always_select : 1;
229 Eina_Bool clear_me : 1;
232 #define ELM_GENGRID_ITEM_FROM_INLIST(item) \
233 ((item) ? EINA_INLIST_CONTAINER_GET(item, Elm_Gengrid_Item) : NULL)
237 Evas_Object_Smart_Clipped_Data __clipped_data;
241 static const char *widtype = NULL;
242 static void _item_hilight(Elm_Gengrid_Item *item);
243 static void _item_unrealize(Elm_Gengrid_Item *item);
244 static void _item_select(Elm_Gengrid_Item *item);
245 static void _item_unselect(Elm_Gengrid_Item *item);
246 static void _calc_job(void *data);
247 static void _on_focus_hook(void *data,
249 static Eina_Bool _item_multi_select_up(Widget_Data *wd);
250 static Eina_Bool _item_multi_select_down(Widget_Data *wd);
251 static Eina_Bool _item_multi_select_left(Widget_Data *wd);
252 static Eina_Bool _item_multi_select_right(Widget_Data *wd);
253 static Eina_Bool _item_single_select_up(Widget_Data *wd);
254 static Eina_Bool _item_single_select_down(Widget_Data *wd);
255 static Eina_Bool _item_single_select_left(Widget_Data *wd);
256 static Eina_Bool _item_single_select_right(Widget_Data *wd);
257 static Eina_Bool _event_hook(Evas_Object *obj,
259 Evas_Callback_Type type,
261 static Eina_Bool _deselect_all_items(Widget_Data *wd);
263 static Evas_Smart_Class _pan_sc = EVAS_SMART_CLASS_INIT_VERSION;
264 static void _mirrored_set(Evas_Object *obj, Eina_Bool rtl);
267 _event_hook(Evas_Object *obj,
268 Evas_Object *src __UNUSED__,
269 Evas_Callback_Type type,
272 if (type != EVAS_CALLBACK_KEY_DOWN) return EINA_FALSE;
273 Evas_Event_Key_Down *ev = event_info;
274 Widget_Data *wd = elm_widget_data_get(obj);
275 if (!wd) return EINA_FALSE;
276 if (!wd->items) return EINA_FALSE;
277 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return EINA_FALSE;
278 if (elm_widget_disabled_get(obj)) return EINA_FALSE;
280 Elm_Gengrid_Item *item = NULL;
283 Evas_Coord step_x = 0;
284 Evas_Coord step_y = 0;
287 Evas_Coord page_x = 0;
288 Evas_Coord page_y = 0;
290 elm_smart_scroller_child_pos_get(wd->scr, &x, &y);
291 elm_smart_scroller_step_size_get(wd->scr, &step_x, &step_y);
292 elm_smart_scroller_page_size_get(wd->scr, &page_x, &page_y);
293 elm_smart_scroller_child_viewport_size_get(wd->scr, &v_w, &v_h);
295 if ((!strcmp(ev->keyname, "Left")) || (!strcmp(ev->keyname, "KP_Left")))
297 if ((wd->horizontal) &&
298 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
299 (_item_multi_select_up(wd)))
300 || (_item_single_select_up(wd))))
302 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
305 else if ((!wd->horizontal) &&
306 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
307 (_item_multi_select_left(wd)))
308 || (_item_single_select_left(wd))))
310 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
316 else if ((!strcmp(ev->keyname, "Right")) || (!strcmp(ev->keyname, "KP_Right")))
318 if ((wd->horizontal) &&
319 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
320 (_item_multi_select_down(wd)))
321 || (_item_single_select_down(wd))))
323 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
326 else if ((!wd->horizontal) &&
327 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
328 (_item_multi_select_right(wd)))
329 || (_item_single_select_right(wd))))
331 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
337 else if ((!strcmp(ev->keyname, "Up")) || (!strcmp(ev->keyname, "KP_Up")))
339 if ((wd->horizontal) &&
340 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
341 (_item_multi_select_left(wd)))
342 || (_item_single_select_left(wd))))
344 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
347 else if ((!wd->horizontal) &&
348 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
349 (_item_multi_select_up(wd)))
350 || (_item_single_select_up(wd))))
352 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
358 else if ((!strcmp(ev->keyname, "Down")) || (!strcmp(ev->keyname, "KP_Down")))
360 if ((wd->horizontal) &&
361 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
362 (_item_multi_select_right(wd)))
363 || (_item_single_select_right(wd))))
365 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
368 else if ((!wd->horizontal) &&
369 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
370 (_item_multi_select_down(wd)))
371 || (_item_single_select_down(wd))))
373 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
379 else if ((!strcmp(ev->keyname, "Home")) || (!strcmp(ev->keyname, "KP_Home")))
381 item = elm_gengrid_first_item_get(obj);
382 elm_gengrid_item_bring_in(item);
383 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
386 else if ((!strcmp(ev->keyname, "End")) || (!strcmp(ev->keyname, "KP_End")))
388 item = elm_gengrid_last_item_get(obj);
389 elm_gengrid_item_bring_in(item);
390 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
393 else if ((!strcmp(ev->keyname, "Prior")) ||
394 (!strcmp(ev->keyname, "KP_Prior")))
399 x -= -(page_x * v_w) / 100;
406 y -= -(page_y * v_h) / 100;
411 else if ((!strcmp(ev->keyname, "Next")) || (!strcmp(ev->keyname, "KP_Next")))
416 x += -(page_x * v_w) / 100;
423 y += -(page_y * v_h) / 100;
428 else if (!strcmp(ev->keyname, "Escape"))
430 if (!_deselect_all_items(wd)) return EINA_FALSE;
431 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
434 else if ((!strcmp(ev->keyname, "Return")) ||
435 (!strcmp(ev->keyname, "KP_Enter")) ||
436 (!strcmp(ev->keyname, "space")))
438 item = elm_gengrid_selected_item_get(obj);
439 evas_object_smart_callback_call(item->wd->self, "clicked", item);
441 else return EINA_FALSE;
443 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
444 elm_smart_scroller_child_pos_set(wd->scr, x, y);
449 _deselect_all_items(Widget_Data *wd)
451 if (!wd->selected) return EINA_FALSE;
453 elm_gengrid_item_selected_set(wd->selected->data, EINA_FALSE);
459 _item_multi_select_left(Widget_Data *wd)
461 if (!wd->selected) return EINA_FALSE;
463 Elm_Gengrid_Item *prev = elm_gengrid_item_prev_get(wd->last_selected_item);
464 if (!prev) return EINA_TRUE;
465 if (elm_gengrid_item_selected_get(prev))
467 elm_gengrid_item_selected_set(wd->last_selected_item, EINA_FALSE);
468 wd->last_selected_item = prev;
469 elm_gengrid_item_show(wd->last_selected_item);
473 elm_gengrid_item_selected_set(prev, EINA_TRUE);
474 elm_gengrid_item_show(prev);
481 _item_multi_select_right(Widget_Data *wd)
483 if (!wd->selected) return EINA_FALSE;
485 Elm_Gengrid_Item *next = elm_gengrid_item_next_get(wd->last_selected_item);
486 if (!next) return EINA_TRUE;
487 if (elm_gengrid_item_selected_get(next))
489 elm_gengrid_item_selected_set(wd->last_selected_item, EINA_FALSE);
490 wd->last_selected_item = next;
491 elm_gengrid_item_show(wd->last_selected_item);
495 elm_gengrid_item_selected_set(next, EINA_TRUE);
496 elm_gengrid_item_show(next);
503 _item_multi_select_up(Widget_Data *wd)
506 Eina_Bool r = EINA_TRUE;
508 if (!wd->selected) return EINA_FALSE;
510 for (i = 0; (r) && (i < wd->nmax); i++)
511 r &= _item_multi_select_left(wd);
517 _item_multi_select_down(Widget_Data *wd)
520 Eina_Bool r = EINA_TRUE;
522 if (!wd->selected) return EINA_FALSE;
524 for (i = 0; (r) && (i < wd->nmax); i++)
525 r &= _item_multi_select_right(wd);
531 _item_single_select_up(Widget_Data *wd)
535 Elm_Gengrid_Item *prev;
539 prev = ELM_GENGRID_ITEM_FROM_INLIST(wd->items->last);
540 while ((prev) && (prev->delete_me))
541 prev = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(prev)->prev);
542 elm_gengrid_item_selected_set(prev, EINA_TRUE);
543 elm_gengrid_item_show(prev);
546 else prev = elm_gengrid_item_prev_get(wd->last_selected_item);
548 if (!prev) return EINA_FALSE;
550 for (i = 1; i < wd->nmax; i++)
552 Elm_Gengrid_Item *tmp = elm_gengrid_item_prev_get(prev);
553 if (!tmp) return EINA_FALSE;
557 _deselect_all_items(wd);
559 elm_gengrid_item_selected_set(prev, EINA_TRUE);
560 elm_gengrid_item_show(prev);
565 _item_single_select_down(Widget_Data *wd)
569 Elm_Gengrid_Item *next;
573 next = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
574 while ((next) && (next->delete_me))
575 next = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(next)->next);
576 elm_gengrid_item_selected_set(next, EINA_TRUE);
577 elm_gengrid_item_show(next);
580 else next = elm_gengrid_item_next_get(wd->last_selected_item);
582 if (!next) return EINA_FALSE;
584 for (i = 1; i < wd->nmax; i++)
586 Elm_Gengrid_Item *tmp = elm_gengrid_item_next_get(next);
587 if (!tmp) return EINA_FALSE;
591 _deselect_all_items(wd);
593 elm_gengrid_item_selected_set(next, EINA_TRUE);
594 elm_gengrid_item_show(next);
599 _item_single_select_left(Widget_Data *wd)
601 Elm_Gengrid_Item *prev;
604 prev = ELM_GENGRID_ITEM_FROM_INLIST(wd->items->last);
605 while ((prev) && (prev->delete_me))
606 prev = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(prev)->prev);
608 else prev = elm_gengrid_item_prev_get(wd->last_selected_item);
610 if (!prev) return EINA_FALSE;
612 _deselect_all_items(wd);
614 elm_gengrid_item_selected_set(prev, EINA_TRUE);
615 elm_gengrid_item_show(prev);
620 _item_single_select_right(Widget_Data *wd)
622 Elm_Gengrid_Item *next;
625 next = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
626 while ((next) && (next->delete_me))
627 next = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(next)->next);
629 else next = elm_gengrid_item_next_get(wd->last_selected_item);
631 if (!next) return EINA_FALSE;
633 _deselect_all_items(wd);
635 elm_gengrid_item_selected_set(next, EINA_TRUE);
636 elm_gengrid_item_show(next);
641 _on_focus_hook(void *data __UNUSED__,
644 Widget_Data *wd = elm_widget_data_get(obj);
646 if (elm_widget_focus_get(obj))
648 edje_object_signal_emit(wd->self, "elm,action,focus", "elm");
649 evas_object_focus_set(wd->self, EINA_TRUE);
650 if ((wd->selected) && (!wd->last_selected_item))
651 wd->last_selected_item = eina_list_data_get(wd->selected);
655 edje_object_signal_emit(wd->self, "elm,action,unfocus", "elm");
656 evas_object_focus_set(wd->self, EINA_FALSE);
661 _mirrored_set(Evas_Object *obj, Eina_Bool rtl)
663 Widget_Data *wd = elm_widget_data_get(obj);
664 Elm_Gengrid_Item *item;
666 elm_smart_scroller_mirrored_set(wd->scr, rtl);
667 if (!wd->items) return;
668 item = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
672 edje_object_mirrored_set(item->base.view, rtl);
673 elm_gengrid_item_update(item);
674 item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->next);
679 _theme_hook(Evas_Object *obj)
681 Widget_Data *wd = elm_widget_data_get(obj);
683 _elm_widget_mirrored_reload(obj);
684 _mirrored_set(obj, elm_widget_mirrored_get(obj));
685 elm_smart_scroller_object_theme_set(obj, wd->scr, "gengrid", "base",
686 elm_widget_style_get(obj));
690 _del_pre_hook(Evas_Object *obj)
692 Widget_Data *wd = elm_widget_data_get(obj);
694 elm_gengrid_clear(obj);
695 evas_object_del(wd->pan_smart);
696 wd->pan_smart = NULL;
700 _del_hook(Evas_Object *obj)
702 Widget_Data *wd = elm_widget_data_get(obj);
707 _signal_emit_hook(Evas_Object *obj,
708 const char *emission,
711 Widget_Data *wd = elm_widget_data_get(obj);
713 edje_object_signal_emit(elm_smart_scroller_edje_object_get(wd->scr),
718 _mouse_move(void *data,
719 Evas *evas __UNUSED__,
723 Elm_Gengrid_Item *item = data;
724 Evas_Event_Mouse_Move *ev = event_info;
725 Evas_Coord minw = 0, minh = 0, x, y, dx, dy, adx, ady;
727 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
729 if (!item->wd->on_hold)
731 item->wd->on_hold = EINA_TRUE;
732 if (!item->wd->wasselected)
733 _item_unselect(item);
736 if ((item->dragging) && (item->down))
738 if (item->long_timer)
740 ecore_timer_del(item->long_timer);
741 item->long_timer = NULL;
743 evas_object_smart_callback_call(item->wd->self, "drag", item);
746 if ((!item->down) || (item->wd->longpressed))
748 if (item->long_timer)
750 ecore_timer_del(item->long_timer);
751 item->long_timer = NULL;
755 if (!item->display_only)
756 elm_coords_finger_size_adjust(1, &minw, 1, &minh);
757 evas_object_geometry_get(obj, &x, &y, NULL, NULL);
758 x = ev->cur.canvas.x - x;
759 y = ev->cur.canvas.y - y;
762 if (adx < 0) adx = -dx;
765 if (ady < 0) ady = -dy;
768 if ((adx > minw) || (ady > minh))
770 const char *left_drag, *right_drag;
771 if (!elm_widget_mirrored_get(item->wd->self))
773 left_drag = "drag,start,left";
774 right_drag = "drag,start,right";
778 left_drag = "drag,start,right";
779 right_drag = "drag,start,left";
783 if (item->long_timer)
785 ecore_timer_del(item->long_timer);
786 item->long_timer = NULL;
788 if (!item->wd->wasselected)
789 _item_unselect(item);
793 evas_object_smart_callback_call(item->wd->self, "drag,start,up",
798 evas_object_smart_callback_call(item->wd->self,
805 evas_object_smart_callback_call(item->wd->self,
806 "drag,start,down", item);
810 evas_object_smart_callback_call(item->wd->self,
813 evas_object_smart_callback_call(item->wd->self,
821 _long_press(void *data)
823 Elm_Gengrid_Item *item = data;
825 item->long_timer = NULL;
826 if ((item->disabled) || (item->dragging)) return ECORE_CALLBACK_CANCEL;
827 item->wd->longpressed = EINA_TRUE;
828 evas_object_smart_callback_call(item->wd->self, "longpressed", item);
829 return ECORE_CALLBACK_CANCEL;
833 _mouse_down(void *data,
834 Evas *evas __UNUSED__,
838 Elm_Gengrid_Item *item = data;
839 Evas_Event_Mouse_Down *ev = event_info;
842 if (ev->button != 1) return;
845 evas_object_geometry_get(obj, &x, &y, NULL, NULL);
846 item->dx = ev->canvas.x - x;
847 item->dy = ev->canvas.y - y;
848 item->wd->longpressed = EINA_FALSE;
849 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) item->wd->on_hold = EINA_TRUE;
850 else item->wd->on_hold = EINA_FALSE;
851 item->wd->wasselected = item->selected;
853 if (ev->flags & EVAS_BUTTON_DOUBLE_CLICK)
854 evas_object_smart_callback_call(item->wd->self, "clicked", item);
855 if (item->long_timer) ecore_timer_del(item->long_timer);
857 item->long_timer = ecore_timer_add(_elm_config->longpress_timeout,
860 item->long_timer = NULL;
864 _mouse_up(void *data,
865 Evas *evas __UNUSED__,
866 Evas_Object *obj __UNUSED__,
869 Elm_Gengrid_Item *item = data;
870 Evas_Event_Mouse_Up *ev = event_info;
871 Eina_Bool dragged = EINA_FALSE;
873 if (ev->button != 1) return;
874 item->down = EINA_FALSE;
875 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) item->wd->on_hold = EINA_TRUE;
876 else item->wd->on_hold = EINA_FALSE;
877 if (item->long_timer)
879 ecore_timer_del(item->long_timer);
880 item->long_timer = NULL;
884 item->dragging = EINA_FALSE;
885 evas_object_smart_callback_call(item->wd->self, "drag,stop", item);
888 if (item->wd->on_hold)
890 item->wd->longpressed = EINA_FALSE;
891 item->wd->on_hold = EINA_FALSE;
894 if (item->wd->longpressed)
896 item->wd->longpressed = EINA_FALSE;
897 if (!item->wd->wasselected) _item_unselect(item);
898 item->wd->wasselected = EINA_FALSE;
903 if (item->want_unrealize) _item_unrealize(item);
905 if ((item->disabled) || (dragged)) return;
913 else _item_unselect(item);
919 while (item->wd->selected)
920 _item_unselect(item->wd->selected->data);
924 const Eina_List *l, *l_next;
925 Elm_Gengrid_Item *item2;
927 EINA_LIST_FOREACH_SAFE(item->wd->selected, l, l_next, item2)
928 if (item2 != item) _item_unselect(item2);
936 _item_hilight(Elm_Gengrid_Item *item)
938 if ((item->wd->no_select) || (item->delete_me) || (item->hilighted)) return;
939 edje_object_signal_emit(item->base.view, "elm,state,selected", "elm");
940 item->hilighted = EINA_TRUE;
944 _item_realize(Elm_Gengrid_Item *item)
949 if ((item->realized) || (item->delete_me)) return;
950 item->base.view = edje_object_add(evas_object_evas_get(item->wd->self));
951 edje_object_scale_set(item->base.view, elm_widget_scale_get(item->wd->self) *
953 edje_object_mirrored_set(item->base.view, elm_widget_mirrored_get(item->base.widget));
954 evas_object_smart_member_add(item->base.view, item->wd->pan_smart);
955 elm_widget_sub_object_add(item->wd->self, item->base.view);
956 snprintf(style, sizeof(style), "item/%s",
957 item->gic->item_style ? item->gic->item_style : "default");
958 _elm_theme_object_set(item->wd->self, item->base.view, "gengrid", style,
959 elm_widget_style_get(item->wd->self));
961 evas_object_rectangle_add(evas_object_evas_get(item->wd->self));
962 evas_object_color_set(item->spacer, 0, 0, 0, 0);
963 elm_widget_sub_object_add(item->wd->self, item->spacer);
964 evas_object_size_hint_min_set(item->spacer, 2 * _elm_config->scale, 1);
965 edje_object_part_swallow(item->base.view, "elm.swallow.pad", item->spacer);
967 if (item->gic->func.label_get)
973 elm_widget_stringlist_get(edje_object_data_get(item->base.view,
975 EINA_LIST_FOREACH(item->labels, l, key)
977 char *s = item->gic->func.label_get
978 ((void *)item->base.data, item->wd->self, l->data);
981 edje_object_part_text_set(item->base.view, l->data, s);
987 if (item->gic->func.icon_get)
993 elm_widget_stringlist_get(edje_object_data_get(item->base.view,
995 EINA_LIST_FOREACH(item->icons, l, key)
997 Evas_Object *ic = item->gic->func.icon_get
998 ((void *)item->base.data, item->wd->self, l->data);
1001 item->icon_objs = eina_list_append(item->icon_objs, ic);
1002 edje_object_part_swallow(item->base.view, key, ic);
1003 evas_object_show(ic);
1004 elm_widget_sub_object_add(item->wd->self, ic);
1009 if (item->gic->func.state_get)
1015 elm_widget_stringlist_get(edje_object_data_get(item->base.view,
1017 EINA_LIST_FOREACH(item->states, l, key)
1019 Eina_Bool on = item->gic->func.state_get
1020 ((void *)item->base.data, item->wd->self, l->data);
1023 snprintf(buf, sizeof(buf), "elm,state,%s,active", key);
1024 edje_object_signal_emit(item->base.view, buf, "elm");
1029 if ((!item->wd->item_width) && (!item->wd->item_height))
1031 edje_object_size_min_restricted_calc(item->base.view,
1032 &item->wd->item_width,
1033 &item->wd->item_height,
1034 item->wd->item_width,
1035 item->wd->item_height);
1036 elm_coords_finger_size_adjust(1, &item->wd->item_width,
1037 1, &item->wd->item_height);
1040 evas_object_event_callback_add(item->base.view, EVAS_CALLBACK_MOUSE_DOWN,
1042 evas_object_event_callback_add(item->base.view, EVAS_CALLBACK_MOUSE_UP,
1044 evas_object_event_callback_add(item->base.view, EVAS_CALLBACK_MOUSE_MOVE,
1048 edje_object_signal_emit(item->base.view, "elm,state,selected", "elm");
1050 edje_object_signal_emit(item->base.view, "elm,state,disabled", "elm");
1052 evas_object_show(item->base.view);
1054 if (item->tooltip.content_cb)
1056 elm_widget_item_tooltip_content_cb_set(item,
1057 item->tooltip.content_cb,
1058 item->tooltip.data, NULL);
1059 elm_widget_item_tooltip_style_set(item, item->tooltip.style);
1062 if (item->mouse_cursor)
1063 elm_widget_item_cursor_set(item, item->mouse_cursor);
1065 item->realized = EINA_TRUE;
1066 item->want_unrealize = EINA_FALSE;
1070 _item_unrealize(Elm_Gengrid_Item *item)
1074 if (!item->realized) return;
1075 if (item->long_timer)
1077 ecore_timer_del(item->long_timer);
1078 item->long_timer = NULL;
1080 evas_object_del(item->base.view);
1081 item->base.view = NULL;
1082 evas_object_del(item->spacer);
1083 item->spacer = NULL;
1084 elm_widget_stringlist_free(item->labels);
1085 item->labels = NULL;
1086 elm_widget_stringlist_free(item->icons);
1088 elm_widget_stringlist_free(item->states);
1089 item->states = NULL;
1091 EINA_LIST_FREE(item->icon_objs, icon)
1092 evas_object_del(icon);
1094 item->realized = EINA_FALSE;
1095 item->want_unrealize = EINA_FALSE;
1099 _item_place(Elm_Gengrid_Item *item,
1103 Evas_Coord x, y, ox, oy, cvx, cvy, cvw, cvh;
1104 Evas_Coord tch, tcw, alignw = 0, alignh = 0, vw, vh;
1107 evas_object_geometry_get(item->wd->pan_smart, &ox, &oy, &vw, &vh);
1109 /* Preload rows/columns at each side of the Gengrid */
1110 cvx = ox - PRELOAD * item->wd->item_width;
1111 cvy = oy - PRELOAD * item->wd->item_height;
1112 cvw = vw + 2 * PRELOAD * item->wd->item_width;
1113 cvh = vh + 2 * PRELOAD * item->wd->item_height;
1118 if (item->wd->horizontal)
1120 int columns, items_visible = 0, items_row;
1122 if (item->wd->item_height > 0)
1123 items_visible = vh / item->wd->item_height;
1124 if (items_visible < 1)
1127 columns = item->wd->count / items_visible;
1128 if (item->wd->count % items_visible)
1131 tcw = item->wd->item_width * columns;
1132 alignw = (vw - tcw) * item->wd->align_x;
1134 items_row = items_visible;
1135 if (items_row > item->wd->count)
1136 items_row = item->wd->count;
1137 tch = items_row * item->wd->item_height;
1138 alignh = (vh - tch) * item->wd->align_y;
1142 int rows, items_visible = 0, items_col;
1144 if (item->wd->item_width > 0)
1145 items_visible = vw / item->wd->item_width;
1146 if (items_visible < 1)
1149 rows = item->wd->count / items_visible;
1150 if (item->wd->count % items_visible)
1153 tch = item->wd->item_height * rows;
1154 alignh = (vh - tch) * item->wd->align_y;
1156 items_col = items_visible;
1157 if (items_col > item->wd->count)
1158 items_col = item->wd->count;
1159 tcw = items_col * item->wd->item_width;
1160 alignw = (vw - tcw) * item->wd->align_x;
1163 x = cx * item->wd->item_width - item->wd->pan_x + ox + alignw;
1164 if (elm_widget_mirrored_get(item->wd->self))
1165 { /* Switch items side and componsate for pan_x when in RTL mode */
1167 evas_object_geometry_get(item->wd->self, NULL, NULL, &ww, NULL);
1168 x = ww - x - item->wd->item_width - item->wd->pan_x - item->wd->pan_x;
1171 y = cy * item->wd->item_height - item->wd->pan_y + oy + alignh;
1173 Eina_Bool was_realized = item->realized;
1174 if (ELM_RECTS_INTERSECT(x, y, item->wd->item_width, item->wd->item_height,
1175 cvx, cvy, cvw, cvh))
1177 _item_realize(item);
1179 evas_object_smart_callback_call(item->wd->self, "realized", item);
1180 evas_object_move(item->base.view, x, y);
1181 evas_object_resize(item->base.view, item->wd->item_width,
1182 item->wd->item_height);
1186 _item_unrealize(item);
1188 evas_object_smart_callback_call(item->wd->self, "unrealized", item);
1192 static Elm_Gengrid_Item *
1193 _item_create(Widget_Data *wd,
1194 const Elm_Gengrid_Item_Class *gic,
1197 const void *func_data)
1199 Elm_Gengrid_Item *item;
1201 item = elm_widget_item_new(wd->self, Elm_Gengrid_Item);
1202 if (!item) return NULL;
1206 item->base.data = data;
1207 item->func.func = func;
1208 item->func.data = func_data;
1209 item->mouse_cursor = NULL;
1214 _item_del(Elm_Gengrid_Item *item)
1216 elm_widget_item_pre_notify_del(item);
1218 item->wd->selected = eina_list_remove(item->wd->selected, item);
1219 if (item->realized) _item_unrealize(item);
1220 if ((!item->delete_me) && (item->gic->func.del))
1221 item->gic->func.del((void *)item->base.data, item->wd->self);
1222 item->delete_me = EINA_TRUE;
1223 item->wd->items = eina_inlist_remove(item->wd->items, EINA_INLIST_GET(item));
1224 if (item->long_timer) ecore_timer_del(item->long_timer);
1225 if (item->tooltip.del_cb)
1226 item->tooltip.del_cb((void *)item->tooltip.data, item->base.widget, item);
1227 item->wd->walking -= item->walking;
1229 if (item->wd->calc_job) ecore_job_del(item->wd->calc_job);
1230 item->wd->calc_job = ecore_job_add(_calc_job, item->wd);
1231 elm_widget_item_del(item);
1235 _item_select(Elm_Gengrid_Item *item)
1237 if ((item->wd->no_select) || (item->delete_me)) return;
1240 if (item->wd->always_select) goto call;
1243 item->selected = EINA_TRUE;
1244 item->wd->selected = eina_list_append(item->wd->selected, item);
1247 item->wd->walking++;
1248 if (item->func.func)
1249 item->func.func((void *)item->func.data, item->wd->self, item);
1250 if (!item->delete_me)
1251 evas_object_smart_callback_call(item->wd->self, "selected", item);
1253 item->wd->walking--;
1254 if ((item->wd->clear_me) && (!item->wd->walking))
1255 elm_gengrid_clear(item->base.widget);
1258 if ((!item->walking) && (item->delete_me))
1259 if (!item->relcount) _item_del(item);
1261 item->wd->last_selected_item = item;
1265 _item_unselect(Elm_Gengrid_Item *item)
1267 if ((item->delete_me) || (!item->hilighted)) return;
1268 edje_object_signal_emit(item->base.view, "elm,state,unselected", "elm");
1269 item->hilighted = EINA_FALSE;
1272 item->selected = EINA_FALSE;
1273 item->wd->selected = eina_list_remove(item->wd->selected, item);
1274 evas_object_smart_callback_call(item->wd->self, "unselected", item);
1279 _calc_job(void *data)
1281 Widget_Data *wd = data;
1282 Evas_Coord minw = 0, minh = 0, nmax = 0, cvw, cvh;
1285 evas_object_geometry_get(wd->pan_smart, NULL, NULL, &cvw, &cvh);
1286 if ((cvw != 0) || (cvh != 0))
1288 if ((wd->horizontal) && (wd->item_height > 0))
1289 nmax = cvh / wd->item_height;
1290 else if (wd->item_width > 0)
1291 nmax = cvw / wd->item_width;
1299 minw = ceil(count / (float)nmax) * wd->item_width;
1300 minh = nmax * wd->item_height;
1304 minw = nmax * wd->item_width;
1305 minh = ceil(count / (float)nmax) * wd->item_height;
1308 if ((minw != wd->minw) || (minh != wd->minh))
1312 evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
1316 wd->calc_job = NULL;
1317 evas_object_smart_changed(wd->pan_smart);
1322 _pan_add(Evas_Object *obj)
1325 Evas_Object_Smart_Clipped_Data *cd;
1328 cd = evas_object_smart_data_get(obj);
1331 sd->__clipped_data = *cd;
1333 evas_object_smart_data_set(obj, sd);
1337 _pan_del(Evas_Object *obj)
1339 Pan *sd = evas_object_smart_data_get(obj);
1346 _pan_set(Evas_Object *obj,
1350 Pan *sd = evas_object_smart_data_get(obj);
1351 if ((x == sd->wd->pan_x) && (y == sd->wd->pan_y)) return;
1354 evas_object_smart_changed(obj);
1358 _pan_get(Evas_Object *obj,
1362 Pan *sd = evas_object_smart_data_get(obj);
1363 if (x) *x = sd->wd->pan_x;
1364 if (y) *y = sd->wd->pan_y;
1368 _pan_child_size_get(Evas_Object *obj,
1372 Pan *sd = evas_object_smart_data_get(obj);
1373 if (w) *w = sd->wd->minw;
1374 if (h) *h = sd->wd->minh;
1378 _pan_max_get(Evas_Object *obj,
1382 Pan *sd = evas_object_smart_data_get(obj);
1386 evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
1388 *x = (ow < sd->wd->minw) ? sd->wd->minw - ow : 0;
1390 *y = (oh < sd->wd->minh) ? sd->wd->minh - oh : 0;
1394 _pan_min_get(Evas_Object *obj,
1398 Pan *sd = evas_object_smart_data_get(obj);
1402 _pan_max_get(obj, &mx, &my);
1404 *x = -mx * sd->wd->align_x;
1406 *y = -my * sd->wd->align_y;
1410 _pan_resize(Evas_Object *obj,
1414 Pan *sd = evas_object_smart_data_get(obj);
1417 evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
1418 if ((ow == w) && (oh == h)) return;
1419 if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
1420 sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
1424 _pan_calculate(Evas_Object *obj)
1426 Pan *sd = evas_object_smart_data_get(obj);
1427 Evas_Coord cx = 0, cy = 0;
1428 Elm_Gengrid_Item *item;
1431 if (!sd->wd->nmax) return;
1433 EINA_INLIST_FOREACH(sd->wd->items, item)
1435 _item_place(item, cx, cy);
1436 if (sd->wd->horizontal)
1438 cy = (cy + 1) % sd->wd->nmax;
1443 cx = (cx + 1) % sd->wd->nmax;
1447 evas_object_smart_callback_call(sd->wd->self, "changed", NULL);
1451 _pan_move(Evas_Object *obj,
1452 Evas_Coord x __UNUSED__,
1453 Evas_Coord y __UNUSED__)
1455 Pan *sd = evas_object_smart_data_get(obj);
1457 if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
1458 sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
1462 _hold_on(void *data __UNUSED__,
1464 void *event_info __UNUSED__)
1466 Widget_Data *wd = elm_widget_data_get(obj);
1468 elm_smart_scroller_hold_set(wd->scr, 1);
1472 _hold_off(void *data __UNUSED__,
1474 void *event_info __UNUSED__)
1476 Widget_Data *wd = elm_widget_data_get(obj);
1478 elm_smart_scroller_hold_set(wd->scr, 0);
1482 _freeze_on(void *data __UNUSED__,
1484 void *event_info __UNUSED__)
1486 Widget_Data *wd = elm_widget_data_get(obj);
1488 elm_smart_scroller_freeze_set(wd->scr, 1);
1492 _freeze_off(void *data __UNUSED__,
1494 void *event_info __UNUSED__)
1496 Widget_Data *wd = elm_widget_data_get(obj);
1498 elm_smart_scroller_freeze_set(wd->scr, 0);
1502 _scr_drag_start(void *data,
1503 Evas_Object *obj __UNUSED__,
1504 void *event_info __UNUSED__)
1506 evas_object_smart_callback_call(data, "scroll,drag,start", NULL);
1510 _scr_drag_stop(void *data,
1511 Evas_Object *obj __UNUSED__,
1512 void *event_info __UNUSED__)
1514 evas_object_smart_callback_call(data, "scroll,drag,stop", NULL);
1518 _scr_scroll(void *data,
1519 Evas_Object *obj __UNUSED__,
1520 void *event_info __UNUSED__)
1522 evas_object_smart_callback_call(data, "scroll", NULL);
1526 * Add a new Gengrid object.
1528 * @param parent The parent object.
1529 * @return The new object or NULL if it cannot be created.
1531 * @see elm_gengrid_item_size_set()
1532 * @see elm_gengrid_horizontal_set()
1533 * @see elm_gengrid_item_append()
1534 * @see elm_gengrid_item_del()
1535 * @see elm_gengrid_clear()
1540 elm_gengrid_add(Evas_Object *parent)
1545 static Evas_Smart *smart = NULL;
1546 Eina_Bool bounce = _elm_config->thumbscroll_bounce_enable;
1548 ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
1550 ELM_SET_WIDTYPE(widtype, "gengrid");
1551 elm_widget_type_set(obj, "gengrid");
1552 elm_widget_sub_object_add(parent, obj);
1553 elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
1554 elm_widget_data_set(obj, wd);
1555 elm_widget_del_hook_set(obj, _del_hook);
1556 elm_widget_del_pre_hook_set(obj, _del_pre_hook);
1557 elm_widget_theme_hook_set(obj, _theme_hook);
1558 elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
1559 elm_widget_can_focus_set(obj, EINA_TRUE);
1560 elm_widget_event_hook_set(obj, _event_hook);
1562 wd->scr = elm_smart_scroller_add(e);
1563 elm_smart_scroller_widget_set(wd->scr, obj);
1564 elm_smart_scroller_object_theme_set(obj, wd->scr, "gengrid", "base",
1566 elm_widget_resize_object_set(obj, wd->scr);
1568 evas_object_smart_callback_add(wd->scr, "drag,start", _scr_drag_start, obj);
1569 evas_object_smart_callback_add(wd->scr, "drag,stop", _scr_drag_stop, obj);
1570 evas_object_smart_callback_add(wd->scr, "scroll", _scr_scroll, obj);
1572 elm_smart_scroller_bounce_allow_set(wd->scr, bounce, bounce);
1577 wd->no_select = EINA_FALSE;
1579 evas_object_smart_callback_add(obj, "scroll-hold-on", _hold_on, obj);
1580 evas_object_smart_callback_add(obj, "scroll-hold-off", _hold_off, obj);
1581 evas_object_smart_callback_add(obj, "scroll-freeze-on", _freeze_on, obj);
1582 evas_object_smart_callback_add(obj, "scroll-freeze-off", _freeze_off, obj);
1586 static Evas_Smart_Class sc;
1588 evas_object_smart_clipped_smart_set(&_pan_sc);
1590 sc.name = "elm_gengrid_pan";
1591 sc.version = EVAS_SMART_CLASS_VERSION;
1594 sc.resize = _pan_resize;
1595 sc.move = _pan_move;
1596 sc.calculate = _pan_calculate;
1597 smart = evas_smart_class_new(&sc);
1601 wd->pan_smart = evas_object_smart_add(e, smart);
1602 wd->pan = evas_object_smart_data_get(wd->pan_smart);
1606 elm_smart_scroller_extern_pan_set(wd->scr, wd->pan_smart,
1607 _pan_set, _pan_get, _pan_max_get,
1608 _pan_min_get, _pan_child_size_get);
1610 _mirrored_set(obj, elm_widget_mirrored_get(obj));
1615 * Set the size for the item of the Gengrid.
1617 * @param obj The Gengrid object.
1618 * @param w The item's width.
1619 * @param h The item's height;
1621 * @see elm_gengrid_item_size_get()
1626 elm_gengrid_item_size_set(Evas_Object *obj,
1630 ELM_CHECK_WIDTYPE(obj, widtype);
1631 Widget_Data *wd = elm_widget_data_get(obj);
1633 if ((wd->item_width == w) && (wd->item_height == h)) return;
1635 wd->item_height = h;
1636 if (wd->calc_job) ecore_job_del(wd->calc_job);
1637 wd->calc_job = ecore_job_add(_calc_job, wd);
1641 * Get the size of the item of the Gengrid.
1643 * @param obj The Gengrid object.
1644 * @param w Pointer to the item's width.
1645 * @param h Pointer to the item's height.
1647 * @see elm_gengrid_item_size_get()
1652 elm_gengrid_item_size_get(const Evas_Object *obj,
1656 ELM_CHECK_WIDTYPE(obj, widtype);
1657 Widget_Data *wd = elm_widget_data_get(obj);
1659 if (w) *w = wd->item_width;
1660 if (h) *h = wd->item_height;
1664 * Set item's alignment within the scroller.
1666 * @param obj The Gengrid object.
1667 * @param align_x The x alignment (0 <= x <= 1).
1668 * @param align_y The y alignment (0 <= y <= 1).
1670 * @see elm_gengrid_align_get()
1675 elm_gengrid_align_set(Evas_Object *obj,
1679 ELM_CHECK_WIDTYPE(obj, widtype);
1680 Widget_Data *wd = elm_widget_data_get(obj);
1684 else if (align_x < 0.0)
1686 wd->align_x = align_x;
1690 else if (align_y < 0.0)
1692 wd->align_y = align_y;
1696 * Get the alignenment set for the Gengrid object.
1698 * @param obj The Gengrid object.
1699 * @param align_x Pointer to x alignenment.
1700 * @param align_y Pointer to y alignenment.
1702 * @see elm_gengrid_align_set()
1707 elm_gengrid_align_get(const Evas_Object *obj,
1711 ELM_CHECK_WIDTYPE(obj, widtype);
1712 Widget_Data *wd = elm_widget_data_get(obj);
1713 if (align_x) *align_x = wd->align_x;
1714 if (align_y) *align_y = wd->align_y;
1718 * Add item to the end of the Gengrid.
1720 * @param obj The Gengrid object.
1721 * @param gic The item class for the item.
1722 * @param data The item data.
1723 * @param func Convenience function called when item is selected.
1724 * @param func_data Data passed to @p func above.
1725 * @return A handle to the item added or NULL if not possible.
1727 * @see elm_gengrid_item_prepend()
1728 * @see elm_gengrid_item_insert_before()
1729 * @see elm_gengrid_item_insert_after()
1730 * @see elm_gengrid_item_del()
1734 EAPI Elm_Gengrid_Item *
1735 elm_gengrid_item_append(Evas_Object *obj,
1736 const Elm_Gengrid_Item_Class *gic,
1739 const void *func_data)
1741 Elm_Gengrid_Item *item;
1742 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1743 Widget_Data *wd = elm_widget_data_get(obj);
1744 if (!wd) return NULL;
1746 item = _item_create(wd, gic, data, func, func_data);
1747 if (!item) return NULL;
1748 wd->items = eina_inlist_append(wd->items, EINA_INLIST_GET(item));
1750 if (wd->calc_job) ecore_job_del(wd->calc_job);
1751 wd->calc_job = ecore_job_add(_calc_job, wd);
1757 * Add item at start of the Gengrid.
1759 * This adds an item to the beginning of the grid.
1761 * @param obj The Gengrid object.
1762 * @param gic The item class for the item.
1763 * @param data The item data.
1764 * @param func Convenience function called when item is selected.
1765 * @param func_data Data passed to @p func above.
1766 * @return A handle to the item added or NULL if not possible.
1768 * @see elm_gengrid_item_append()
1769 * @see elm_gengrid_item_insert_before()
1770 * @see elm_gengrid_item_insert_after()
1771 * @see elm_gengrid_item_del()
1775 EAPI Elm_Gengrid_Item *
1776 elm_gengrid_item_prepend(Evas_Object *obj,
1777 const Elm_Gengrid_Item_Class *gic,
1780 const void *func_data)
1782 Elm_Gengrid_Item *item;
1783 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1784 Widget_Data *wd = elm_widget_data_get(obj);
1785 if (!wd) return NULL;
1787 item = _item_create(wd, gic, data, func, func_data);
1788 if (!item) return NULL;
1789 wd->items = eina_inlist_prepend(wd->items, EINA_INLIST_GET(item));
1791 if (wd->calc_job) ecore_job_del(wd->calc_job);
1792 wd->calc_job = ecore_job_add(_calc_job, wd);
1798 * Insert and item before another in the Gengrid.
1800 * This inserts an item before another in the grid.
1802 * @param obj The Gengrid object.
1803 * @param gic The item class for the item.
1804 * @param data The item data.
1805 * @param relative The item to which insert before.
1806 * @param func Convenience function called when item is selected.
1807 * @param func_data Data passed to @p func above.
1808 * @return A handle to the item added or NULL if not possible.
1810 * @see elm_gengrid_item_append()
1811 * @see elm_gengrid_item_prepend()
1812 * @see elm_gengrid_item_insert_after()
1813 * @see elm_gengrid_item_del()
1817 EAPI Elm_Gengrid_Item *
1818 elm_gengrid_item_insert_before(Evas_Object *obj,
1819 const Elm_Gengrid_Item_Class *gic,
1821 Elm_Gengrid_Item *relative,
1823 const void *func_data)
1825 Elm_Gengrid_Item *item;
1826 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1827 EINA_SAFETY_ON_NULL_RETURN_VAL(relative, NULL);
1828 Widget_Data *wd = elm_widget_data_get(obj);
1829 if (!wd) return NULL;
1831 item = _item_create(wd, gic, data, func, func_data);
1832 if (!item) return NULL;
1833 wd->items = eina_inlist_prepend_relative
1834 (wd->items, EINA_INLIST_GET(item), EINA_INLIST_GET(relative));
1836 if (wd->calc_job) ecore_job_del(wd->calc_job);
1837 wd->calc_job = ecore_job_add(_calc_job, wd);
1843 * Insert and item after another in the Gengrid.
1845 * This inserts an item after another in the grid.
1847 * @param obj The Gengrid object.
1848 * @param gic The item class for the item.
1849 * @param data The item data.
1850 * @param relative The item to which insert after.
1851 * @param func Convenience function called when item is selected.
1852 * @param func_data Data passed to @p func above.
1853 * @return A handle to the item added or NULL if not possible.
1855 * @see elm_gengrid_item_append()
1856 * @see elm_gengrid_item_prepend()
1857 * @see elm_gengrid_item_insert_before()
1858 * @see elm_gengrid_item_del()
1862 EAPI Elm_Gengrid_Item *
1863 elm_gengrid_item_insert_after(Evas_Object *obj,
1864 const Elm_Gengrid_Item_Class *gic,
1866 Elm_Gengrid_Item *relative,
1868 const void *func_data)
1870 Elm_Gengrid_Item *item;
1871 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1872 EINA_SAFETY_ON_NULL_RETURN_VAL(relative, NULL);
1873 Widget_Data *wd = elm_widget_data_get(obj);
1874 if (!wd) return NULL;
1876 item = _item_create(wd, gic, data, func, func_data);
1877 if (!item) return NULL;
1878 wd->items = eina_inlist_append_relative
1879 (wd->items, EINA_INLIST_GET(item), EINA_INLIST_GET(relative));
1881 if (wd->calc_job) ecore_job_del(wd->calc_job);
1882 wd->calc_job = ecore_job_add(_calc_job, wd);
1888 * Remove a item from the Gengrid.
1890 * @param item The item to be removed.
1891 * @return @c EINA_TRUE on success or @c EINA_FALSE otherwise.
1893 * @see elm_gengrid_clear() to remove all items of the Gengrid.
1898 elm_gengrid_item_del(Elm_Gengrid_Item *item)
1900 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
1901 if ((item->relcount > 0) || (item->walking > 0))
1903 item->delete_me = EINA_TRUE;
1904 elm_widget_item_pre_notify_del(item);
1906 item->wd->selected = eina_list_remove(item->wd->selected, item);
1907 if (item->gic->func.del)
1908 item->gic->func.del((void *)item->base.data, item->wd->self);
1916 * Set for what direction the Gengrid will expand.
1918 * @param obj The Gengrid object.
1919 * @param setting If @c EINA_TRUE the Gengrid will expand horizontally
1920 * or vertically if @c EINA_FALSE.
1925 elm_gengrid_horizontal_set(Evas_Object *obj,
1928 ELM_CHECK_WIDTYPE(obj, widtype);
1929 Widget_Data *wd = elm_widget_data_get(obj);
1931 if (setting == wd->horizontal) return;
1932 wd->horizontal = setting;
1934 /* Update the items to conform to the new layout */
1935 if (wd->calc_job) ecore_job_del(wd->calc_job);
1936 wd->calc_job = ecore_job_add(_calc_job, wd);
1942 * This clears all items in the Gengrid, leaving it empty.
1944 * @param obj The Gengrid object.
1946 * @see elm_gengrid_item_del() to remove just one item.
1951 elm_gengrid_clear(Evas_Object *obj)
1953 ELM_CHECK_WIDTYPE(obj, widtype);
1954 Widget_Data *wd = elm_widget_data_get(obj);
1959 ecore_job_del(wd->calc_job);
1960 wd->calc_job = NULL;
1963 if (wd->walking > 0)
1965 Elm_Gengrid_Item *item;
1967 EINA_INLIST_FOREACH(wd->items, item)
1968 item->delete_me = 1;
1974 Elm_Gengrid_Item *item = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
1976 wd->items = eina_inlist_remove(wd->items, wd->items);
1977 elm_widget_item_pre_notify_del(item);
1978 if (item->realized) _item_unrealize(item);
1979 if (item->gic->func.del)
1980 item->gic->func.del((void *)item->base.data, wd->self);
1981 if (item->long_timer) ecore_timer_del(item->long_timer);
1982 elm_widget_item_del(item);
1987 eina_list_free(wd->selected);
1988 wd->selected = NULL;
1996 evas_object_size_hint_min_set(wd->pan_smart, wd->minw, wd->minh);
1997 evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
2001 * Get the real evas object of the Gengrid item
2003 * This returns the actual evas object used for the specified Gengrid
2004 * item. This may be NULL as it may not be created, and may be
2005 * deleted at any time by Gengrid. Do not modify this object (move,
2006 * resize, show, hide etc.) as Gengrid is controlling it. This
2007 * function is for querying, emitting custom signals or hooking lower
2008 * level callbacks for events. Do not delete this object under any
2011 * @param item The Gengrid item.
2012 * @return the evas object associated to this item.
2014 * @see elm_gengrid_item_data_get()
2018 EAPI const Evas_Object *
2019 elm_gengrid_item_object_get(const Elm_Gengrid_Item *item)
2021 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2022 return item->base.view;
2026 * Update the contents of an item
2028 * This updates an item by calling all the item class functions again
2029 * to get the icons, labels and states. Use this when the original
2030 * item data has changed and the changes are desired to be reflected.
2032 * @param item The item
2037 elm_gengrid_item_update(Elm_Gengrid_Item *item)
2039 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2040 if (!item->realized) return;
2041 if (item->want_unrealize) return;
2042 _item_unrealize(item);
2043 _item_realize(item);
2044 _item_place(item, item->x, item->y);
2048 * Returns the data associated to a item
2050 * This returns the data value passed on the elm_gengrid_item_append()
2051 * and related item addition calls.
2053 * @param item The Gengrid item.
2054 * @return the data associated to this item.
2056 * @see elm_gengrid_item_append()
2057 * @see elm_gengrid_item_object_get()
2062 elm_gengrid_item_data_get(const Elm_Gengrid_Item *item)
2064 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2065 return elm_widget_item_data_get(item);
2069 * Set the data item from the gengrid item
2071 * This set the data value passed on the elm_gengrid_item_append() and
2072 * related item addition calls. This function will also call
2073 * elm_gengrid_item_update() so the item will be updated to reflect
2076 * @param item The item
2077 * @param data The new data pointer to set
2082 elm_gengrid_item_data_set(Elm_Gengrid_Item *item,
2085 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2086 elm_widget_item_data_set(item, data);
2087 elm_gengrid_item_update(item);
2091 * Get the item's coordinates.
2093 * This returns the logical position of the item whithin the Gengrid.
2095 * @param item The Gengrid item.
2096 * @param x The x-axis coordinate pointer.
2097 * @param y The y-axis coordinate pointer.
2102 elm_gengrid_item_pos_get(const Elm_Gengrid_Item *item,
2106 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2107 if (x) *x = item->x;
2108 if (y) *y = item->y;
2112 * Enable or disable multi-select in the Gengrid.
2114 * This enables (EINA_TRUE) or disables (EINA_FALSE) multi-select in
2115 * the Gengrid. This allows more than 1 item to be selected.
2117 * @param obj The Gengrid object.
2118 * @param multi Multi-select enabled/disabled
2123 elm_gengrid_multi_select_set(Evas_Object *obj,
2126 ELM_CHECK_WIDTYPE(obj, widtype);
2127 Widget_Data *wd = elm_widget_data_get(obj);
2133 * Get if multi-select in Gengrid is enabled or disabled
2135 * @param obj The Gengrid object
2136 * @return Multi-select enable/disable
2137 * (EINA_TRUE = enabled / EINA_FALSE = disabled)
2142 elm_gengrid_multi_select_get(const Evas_Object *obj)
2144 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2145 Widget_Data *wd = elm_widget_data_get(obj);
2146 if (!wd) return EINA_FALSE;
2151 * Get the selected item in the Gengrid
2153 * This gets the selected item in the Gengrid (if multi-select is
2154 * enabled only the first item in the list is selected - which is not
2155 * very useful, so see elm_gengrid_selected_items_get() for when
2156 * multi-select is used).
2158 * If no item is selected, NULL is returned.
2160 * @param obj The Gengrid object.
2161 * @return The selected item, or NULL if none.
2165 EAPI Elm_Gengrid_Item *
2166 elm_gengrid_selected_item_get(const Evas_Object *obj)
2168 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2169 Widget_Data *wd = elm_widget_data_get(obj);
2170 if (!wd) return NULL;
2171 if (wd->selected) return wd->selected->data;
2176 * Get a list of selected items in the Gengrid.
2178 * This returns a list of the selected items. This list pointer is
2179 * only valid so long as no items are selected or unselected (or
2180 * unselected implictly by deletion). The list contains
2181 * Elm_Gengrid_Item pointers.
2183 * @param obj The Gengrid object.
2184 * @return The list of selected items, or NULL if none are selected.
2188 EAPI const Eina_List *
2189 elm_gengrid_selected_items_get(const Evas_Object *obj)
2191 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2192 Widget_Data *wd = elm_widget_data_get(obj);
2193 if (!wd) return NULL;
2194 return wd->selected;
2198 * Set the selected state of a item.
2200 * This sets the selected state of a item. If multi-select is not
2201 * enabled and selected is EINA_TRUE, previously selected items are
2204 * @param item The item
2205 * @param selected The selected state.
2210 elm_gengrid_item_selected_set(Elm_Gengrid_Item *item,
2213 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2214 Widget_Data *wd = item->wd;
2216 if (item->delete_me) return;
2217 selected = !!selected;
2218 if (item->selected == selected) return;
2224 while (wd->selected)
2225 _item_unselect(wd->selected->data);
2227 _item_hilight(item);
2231 _item_unselect(item);
2235 * Get the selected state of a item.
2237 * This gets the selected state of a item (1 selected, 0 not selected).
2239 * @param item The item
2240 * @return The selected state
2245 elm_gengrid_item_selected_get(const Elm_Gengrid_Item *item)
2247 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
2248 return item->selected;
2252 * Sets the disabled state of a item.
2254 * A disabled item cannot be selected or unselected. It will also
2255 * change appearance to disabled. This sets the disabled state (1
2256 * disabled, 0 not disabled).
2258 * @param item The item
2259 * @param disabled The disabled state
2264 elm_gengrid_item_disabled_set(Elm_Gengrid_Item *item,
2267 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2268 if (item->disabled == disabled) return;
2269 if (item->delete_me) return;
2270 item->disabled = disabled;
2274 edje_object_signal_emit(item->base.view, "elm,state,disabled", "elm");
2276 edje_object_signal_emit(item->base.view, "elm,state,enabled", "elm");
2281 * Get the disabled state of a item.
2283 * This gets the disabled state of the given item.
2285 * @param item The item
2286 * @return The disabled state
2291 elm_gengrid_item_disabled_get(const Elm_Gengrid_Item *item)
2293 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
2294 if (item->delete_me) return EINA_FALSE;
2295 return item->disabled;
2298 static Evas_Object *
2299 _elm_gengrid_item_label_create(void *data,
2301 void *item __UNUSED__)
2303 Evas_Object *label = elm_label_add(obj);
2306 elm_object_style_set(label, "tooltip");
2307 elm_label_label_set(label, data);
2312 _elm_gengrid_item_label_del_cb(void *data,
2313 Evas_Object *obj __UNUSED__,
2314 void *event_info __UNUSED__)
2316 eina_stringshare_del(data);
2320 * Set the text to be shown in the gengrid item.
2322 * @param item Target item
2323 * @param text The text to set in the content
2325 * Setup the text as tooltip to object. The item can have only one
2326 * tooltip, so any previous tooltip data is removed.
2331 elm_gengrid_item_tooltip_text_set(Elm_Gengrid_Item *item,
2334 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2335 text = eina_stringshare_add(text);
2336 elm_gengrid_item_tooltip_content_cb_set(item, _elm_gengrid_item_label_create,
2338 _elm_gengrid_item_label_del_cb);
2342 * Set the content to be shown in the tooltip item
2344 * Setup the tooltip to item. The item can have only one tooltip, so
2345 * any previous tooltip data is removed. @p func(with @p data) will be
2346 * called every time that need show the tooltip and it should return a
2347 * valid Evas_Object. This object is then managed fully by tooltip
2348 * system and is deleted when the tooltip is gone.
2350 * @param item the gengrid item being attached a tooltip.
2351 * @param func the function used to create the tooltip contents.
2352 * @param data what to provide to @a func as callback data/context.
2353 * @param del_cb called when data is not needed anymore, either when
2354 * another callback replaces @func, the tooltip is unset with
2355 * elm_gengrid_item_tooltip_unset() or the owner @a item
2356 * dies. This callback receives as the first parameter the
2357 * given @a data, and @c event_info is the item.
2362 elm_gengrid_item_tooltip_content_cb_set(Elm_Gengrid_Item *item,
2363 Elm_Tooltip_Item_Content_Cb func,
2365 Evas_Smart_Cb del_cb)
2367 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_GOTO(item, error);
2369 if ((item->tooltip.content_cb == func) && (item->tooltip.data == data))
2372 if (item->tooltip.del_cb)
2373 item->tooltip.del_cb((void *)item->tooltip.data,
2374 item->base.widget, item);
2375 item->tooltip.content_cb = func;
2376 item->tooltip.data = data;
2377 item->tooltip.del_cb = del_cb;
2378 if (item->base.view)
2380 elm_widget_item_tooltip_content_cb_set(item,
2381 item->tooltip.content_cb,
2382 item->tooltip.data, NULL);
2383 elm_widget_item_tooltip_style_set(item, item->tooltip.style);
2389 if (del_cb) del_cb((void *)data, NULL, NULL);
2393 * Unset tooltip from item
2395 * @param item gengrid item to remove previously set tooltip.
2397 * Remove tooltip from item. The callback provided as del_cb to
2398 * elm_gengrid_item_tooltip_content_cb_set() will be called to notify
2399 * it is not used anymore.
2401 * @see elm_gengrid_item_tooltip_content_cb_set()
2406 elm_gengrid_item_tooltip_unset(Elm_Gengrid_Item *item)
2408 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2409 if ((item->base.view) && (item->tooltip.content_cb))
2410 elm_widget_item_tooltip_unset(item);
2412 if (item->tooltip.del_cb)
2413 item->tooltip.del_cb((void *)item->tooltip.data, item->base.widget, item);
2414 item->tooltip.del_cb = NULL;
2415 item->tooltip.content_cb = NULL;
2416 item->tooltip.data = NULL;
2417 if (item->tooltip.style)
2418 elm_gengrid_item_tooltip_style_set(item, NULL);
2422 * Sets a different style for this item tooltip.
2424 * @note before you set a style you should define a tooltip with
2425 * elm_gengrid_item_tooltip_content_cb_set() or
2426 * elm_gengrid_item_tooltip_text_set()
2428 * @param item gengrid item with tooltip already set.
2429 * @param style the theme style to use (default, transparent, ...)
2434 elm_gengrid_item_tooltip_style_set(Elm_Gengrid_Item *item,
2437 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2438 eina_stringshare_replace(&item->tooltip.style, style);
2439 if (item->base.view) elm_widget_item_tooltip_style_set(item, style);
2443 * Get the style for this item tooltip.
2445 * @param item gengrid item with tooltip already set.
2446 * @return style the theme style in use, defaults to "default". If the
2447 * object does not have a tooltip set, then NULL is returned.
2452 elm_gengrid_item_tooltip_style_get(const Elm_Gengrid_Item *item)
2454 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2455 return item->tooltip.style;
2459 * Set the cursor to be shown when mouse is over the gengrid item
2461 * @param item Target item
2462 * @param cursor the cursor name to be used.
2464 * @see elm_object_cursor_set()
2468 elm_gengrid_item_cursor_set(Elm_Gengrid_Item *item,
2471 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2472 eina_stringshare_replace(&item->mouse_cursor, cursor);
2473 if (item->base.view) elm_widget_item_cursor_set(item, cursor);
2477 * Get the cursor to be shown when mouse is over the gengrid item
2479 * @param item gengrid item with cursor already set.
2480 * @return the cursor name.
2485 elm_gengrid_item_cursor_get(const Elm_Gengrid_Item *item)
2487 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2488 return elm_widget_item_cursor_get(item);
2492 * Unset the cursor to be shown when mouse is over the gengrid item
2494 * @param item Target item
2496 * @see elm_object_cursor_unset()
2500 elm_gengrid_item_cursor_unset(Elm_Gengrid_Item *item)
2502 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2503 if (!item->mouse_cursor)
2506 if (item->base.view)
2507 elm_widget_item_cursor_unset(item);
2509 eina_stringshare_del(item->mouse_cursor);
2510 item->mouse_cursor = NULL;
2514 * Sets a different style for this item cursor.
2516 * @note before you set a style you should define a cursor with
2517 * elm_gengrid_item_cursor_set()
2519 * @param item gengrid item with cursor already set.
2520 * @param style the theme style to use (default, transparent, ...)
2525 elm_gengrid_item_cursor_style_set(Elm_Gengrid_Item *item,
2528 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2529 elm_widget_item_cursor_style_set(item, style);
2533 * Get the style for this item cursor.
2535 * @param item gengrid item with cursor already set.
2536 * @return style the theme style in use, defaults to "default". If the
2537 * object does not have a cursor set, then NULL is returned.
2542 elm_gengrid_item_cursor_style_get(const Elm_Gengrid_Item *item)
2544 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2545 return elm_widget_item_cursor_style_get(item);
2549 * Set if the cursor set should be searched on the theme or should use
2550 * the provided by the engine, only.
2552 * @note before you set if should look on theme you should define a
2553 * cursor with elm_object_cursor_set(). By default it will only look
2554 * for cursors provided by the engine.
2556 * @param item widget item with cursor already set.
2557 * @param engine_only boolean to define it cursors should be looked
2558 * only between the provided by the engine or searched on widget's
2564 elm_gengrid_item_cursor_engine_only_set(Elm_Gengrid_Item *item,
2565 Eina_Bool engine_only)
2567 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2568 elm_widget_item_cursor_engine_only_set(item, engine_only);
2572 * Get the cursor engine only usage for this item cursor.
2574 * @param item widget item with cursor already set.
2575 * @return engine_only boolean to define it cursors should be looked
2576 * only between the provided by the engine or searched on widget's
2577 * theme as well. If the object does not have a cursor set, then
2578 * EINA_FALSE is returned.
2583 elm_gengrid_item_cursor_engine_only_get(const Elm_Gengrid_Item *item)
2585 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
2586 return elm_widget_item_cursor_engine_only_get(item);
2590 * Set the always select mode.
2592 * Cells will only call their selection func and callback when first
2593 * becoming selected. Any further clicks will do nothing, unless you
2594 * enable always select with
2595 * elm_gengrid_always_select_mode_set(). This means even if selected,
2596 * every click will make the selected callbacks be called.
2598 * @param obj The Gengrid object
2599 * @param always_select The always select mode (EINA_TRUE = on,
2605 elm_gengrid_always_select_mode_set(Evas_Object *obj,
2606 Eina_Bool always_select)
2608 ELM_CHECK_WIDTYPE(obj, widtype);
2609 Widget_Data *wd = elm_widget_data_get(obj);
2611 wd->always_select = always_select;
2615 * Get the always select mode.
2617 * @param obj The Gengrid object.
2618 * @return The always select mode (EINA_TRUE = on, EINA_FALSE = off)
2623 elm_gengrid_always_select_mode_get(const Evas_Object *obj)
2625 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2626 Widget_Data *wd = elm_widget_data_get(obj);
2627 if (!wd) return EINA_FALSE;
2628 return wd->always_select;
2632 * Set no select mode.
2634 * This will turn off the ability to select items entirely and they
2635 * will neither appear selected nor call selected callback functions.
2637 * @param obj The Gengrid object
2638 * @param no_select The no select mode (EINA_TRUE = on, EINA_FALSE = off)
2643 elm_gengrid_no_select_mode_set(Evas_Object *obj,
2644 Eina_Bool no_select)
2646 ELM_CHECK_WIDTYPE(obj, widtype);
2647 Widget_Data *wd = elm_widget_data_get(obj);
2649 wd->no_select = no_select;
2653 * Gets no select mode.
2655 * @param obj The Gengrid object
2656 * @return The no select mode (EINA_TRUE = on, EINA_FALSE = off)
2661 elm_gengrid_no_select_mode_get(const Evas_Object *obj)
2663 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2664 Widget_Data *wd = elm_widget_data_get(obj);
2665 if (!wd) return EINA_FALSE;
2666 return wd->no_select;
2672 * This will enable or disable the scroller bounce mode for the
2673 * Gengrid. See elm_scroller_bounce_set() for details.
2675 * @param obj The Gengrid object
2676 * @param h_bounce Allow bounce horizontally
2677 * @param v_bounce Allow bounce vertically
2682 elm_gengrid_bounce_set(Evas_Object *obj,
2686 ELM_CHECK_WIDTYPE(obj, widtype);
2687 Widget_Data *wd = elm_widget_data_get(obj);
2689 elm_smart_scroller_bounce_allow_set(wd->scr, h_bounce, v_bounce);
2693 * Get the bounce mode
2695 * @param obj The Gengrid object
2696 * @param h_bounce Allow bounce horizontally
2697 * @param v_bounce Allow bounce vertically
2702 elm_gengrid_bounce_get(const Evas_Object *obj,
2703 Eina_Bool *h_bounce,
2704 Eina_Bool *v_bounce)
2706 ELM_CHECK_WIDTYPE(obj, widtype);
2707 Widget_Data *wd = elm_widget_data_get(obj);
2709 elm_smart_scroller_bounce_allow_get(wd->scr, h_bounce, v_bounce);
2713 * Get all items in the Gengrid.
2715 * This returns a list of the Gengrid items. The list contains
2716 * Elm_Gengrid_Item pointers.
2718 * @param obj The Gengrid object.
2719 * @return The list of items, or NULL if none.
2725 * Set gengrid scroll page size relative to viewport size.
2727 * The gengrid scroller is capable of limiting scrolling by the user
2728 * to "pages" That is to jump by and only show a "whole page" at a
2729 * time as if the continuous area of the scroller content is split
2730 * into page sized pieces. This sets the size of a page relative to
2731 * the viewport of the scroller. 1.0 is "1 viewport" is size
2732 * (horizontally or vertically). 0.0 turns it off in that axis. This
2733 * is mutually exclusive with page size (see
2734 * elm_gengrid_page_size_set() for more information). Likewise 0.5 is
2735 * "half a viewport". Sane usable valus are normally between 0.0 and
2736 * 1.0 including 1.0. If you only want 1 axis to be page "limited",
2737 * use 0.0 for the other axis.
2739 * @param obj The gengrid object
2740 * @param h_pagerel The horizontal page relative size
2741 * @param v_pagerel The vertical page relative size
2746 elm_gengrid_page_relative_set(Evas_Object *obj,
2750 Evas_Coord pagesize_h;
2751 Evas_Coord pagesize_v;
2753 ELM_CHECK_WIDTYPE(obj, widtype);
2754 Widget_Data *wd = elm_widget_data_get(obj);
2757 elm_smart_scroller_paging_get(wd->scr, NULL, NULL, &pagesize_h, &pagesize_v);
2758 elm_smart_scroller_paging_set(wd->scr, h_pagerel, v_pagerel, pagesize_h,
2763 * Set gengrid scroll page size.
2765 * See also elm_gengrid_page_relative_set(). This, instead of a page
2766 * size being relative to the viewport, sets it to an absolute fixed
2767 * value, with 0 turning it off for that axis.
2769 * @param obj The gengrid object
2770 * @param h_pagesize The horizontal page size
2771 * @param v_pagesize The vertical page size
2776 elm_gengrid_page_size_set(Evas_Object *obj,
2777 Evas_Coord h_pagesize,
2778 Evas_Coord v_pagesize)
2783 ELM_CHECK_WIDTYPE(obj, widtype);
2784 Widget_Data *wd = elm_widget_data_get(obj);
2786 elm_smart_scroller_paging_get(wd->scr, &pagerel_h, &pagerel_v, NULL, NULL);
2787 elm_smart_scroller_paging_set(wd->scr, pagerel_h, pagerel_v, h_pagesize,
2792 * Get the first item in the gengrid
2794 * This returns the first item in the list.
2796 * @param obj The gengrid object
2797 * @return The first item, or NULL if none
2801 EAPI Elm_Gengrid_Item *
2802 elm_gengrid_first_item_get(const Evas_Object *obj)
2804 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2805 Widget_Data *wd = elm_widget_data_get(obj);
2806 if (!wd) return NULL;
2807 if (!wd->items) return NULL;
2808 Elm_Gengrid_Item *item = ELM_GENGRID_ITEM_FROM_INLIST(wd->items);
2809 while ((item) && (item->delete_me))
2810 item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->next);
2815 * Get the last item in the gengrid
2817 * This returns the last item in the list.
2819 * @return The last item, or NULL if none
2823 EAPI Elm_Gengrid_Item *
2824 elm_gengrid_last_item_get(const Evas_Object *obj)
2826 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2827 Widget_Data *wd = elm_widget_data_get(obj);
2828 if (!wd) return NULL;
2829 if (!wd->items) return NULL;
2830 Elm_Gengrid_Item *item = ELM_GENGRID_ITEM_FROM_INLIST(wd->items->last);
2831 while ((item) && (item->delete_me))
2832 item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->prev);
2837 * Get the next item in the gengrid
2839 * This returns the item after the item @p item.
2841 * @param item The item
2842 * @return The item after @p item, or NULL if none
2846 EAPI Elm_Gengrid_Item *
2847 elm_gengrid_item_next_get(const Elm_Gengrid_Item *item)
2849 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2852 item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->next);
2853 if ((item) && (!item->delete_me)) break;
2855 return (Elm_Gengrid_Item *)item;
2859 * Get the previous item in the gengrid
2861 * This returns the item before the item @p item.
2863 * @param item The item
2864 * @return The item before @p item, or NULL if none
2868 EAPI Elm_Gengrid_Item *
2869 elm_gengrid_item_prev_get(const Elm_Gengrid_Item *item)
2871 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2874 item = ELM_GENGRID_ITEM_FROM_INLIST(EINA_INLIST_GET(item)->prev);
2875 if ((item) && (!item->delete_me)) break;
2877 return (Elm_Gengrid_Item *)item;
2881 * Get the gengrid object from an item
2883 * This returns the gengrid object itself that an item belongs to.
2885 * @param item The item
2886 * @return The gengrid object
2891 elm_gengrid_item_gengrid_get(const Elm_Gengrid_Item *item)
2893 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
2894 return item->base.widget;
2898 * Show the given item
2900 * This causes gengrid to jump to the given item @p item and show it
2901 * (by scrolling), if it is not fully visible.
2903 * @param item The item
2908 elm_gengrid_item_show(Elm_Gengrid_Item *item)
2910 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2911 Widget_Data *wd = elm_widget_data_get(item->wd->self);
2912 Evas_Coord minx = 0, miny = 0;
2915 if ((!item) || (item->delete_me)) return;
2916 _pan_min_get(wd->pan_smart, &minx, &miny);
2918 elm_smart_scroller_child_region_show(item->wd->scr,
2919 item->x * wd->item_width + minx,
2920 item->y * wd->item_height + miny,
2921 item->wd->item_width,
2922 item->wd->item_height);
2926 * Bring in the given item
2928 * This causes gengrig to jump to the given item @p item and show it
2929 * (by scrolling), if it is not fully visible. This may use animation
2930 * to do so and take a period of time
2932 * @param item The item
2937 elm_gengrid_item_bring_in(Elm_Gengrid_Item *item)
2939 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
2940 if (item->delete_me) return;
2942 Evas_Coord minx = 0, miny = 0;
2943 Widget_Data *wd = elm_widget_data_get(item->wd->self);
2945 _pan_min_get(wd->pan_smart, &minx, &miny);
2947 elm_smart_scroller_region_bring_in(item->wd->scr,
2948 item->x * wd->item_width + minx,
2949 item->y * wd->item_height + miny,
2950 item->wd->item_width,
2951 item->wd->item_height);