3 #include <Elementary.h>
4 #include <Elementary_Cursor.h>
8 #define MAX_ITEMS_PER_BLOCK 32
9 #define REORDER_EFFECT_TIME 0.5
12 * @defgroup Genlist Genlist
14 * The aim was to have more expansive list than the simple list in
15 * Elementary that could have more flexible items and allow many more entries
16 * while still being fast and low on memory usage. At the same time it was
17 * also made to be able to do tree structures. But the price to pay is more
18 * complex when it comes to usage. If all you want is a simple list with
19 * icons and a single label, use the normal List object.
21 * Genlist has a fairly large API, mostly because it's relatively complex,
22 * trying to be both expansive, powerful and efficient. First we will begin
23 * an overview on the theory behind genlist.
25 * Evas tracks every object you create. Every time it processes an event
26 * (mouse move, down, up etc.) it needs to walk through objects and find out
27 * what event that affects. Even worse every time it renders display updates,
28 * in order to just calculate what to re-draw, it needs to walk through many
29 * many many objects. Thus, the more objects you keep active, the more
30 * overhead Evas has in just doing its work. It is advisable to keep your
31 * active objects to the minimum working set you need. Also remember that
32 * object creation and deletion carries an overhead, so there is a
33 * middle-ground, which is not easily determined. But don't keep massive lists
34 * of objects you can't see or use. Genlist does this with list objects. It
35 * creates and destroys them dynamically as you scroll around. It groups them
36 * into blocks so it can determine the visibility etc. of a whole block at
37 * once as opposed to having to walk the whole list. This 2-level list allows
38 * for very large numbers of items to be in the list (tests have used up to
39 * 2,000,000 items). Also genlist employs a queue for adding items. As items
40 * may be different sizes, every item added needs to be calculated as to its
41 * size and thus this presents a lot of overhead on populating the list, this
42 * genlist employs a queue. Any item added is queued and spooled off over
43 * time, actually appearing some time later, so if your list has many members
44 * you may find it takes a while for them to all appear, with your process
45 * consuming a lot of CPU while it is busy spooling.
47 * Genlist also implements a tree structure, but it does so with callbacks to
48 * the application, with the application filling in tree structures when
49 * requested (allowing for efficient building of a very deep tree that could
50 * even be used for file-management). See the above smart signal callbacks for
53 * An item in the genlist world can have 0 or more text labels (they can be
54 * regular text or textblock - that's up to the style to determine), 0 or
55 * more icons (which are simply objects swallowed into the genlist item) and
56 * 0 or more boolean states that can be used for check, radio or other
57 * indicators by the edje theme style. An item may be one of several styles
58 * (Elementary provides 4 by default - "default", "double_label", "group_index"
59 * and "icon_top_text_bottom", but this can be extended by system or
60 * application custom themes/overlays/extensions).
62 * In order to implement the ability to add and delete items on the fly,
63 * Genlist implements a class/callback system where the application provides
64 * a structure with information about that type of item (genlist may contain
65 * multiple different items with different classes, states and styles).
66 * Genlist will call the functions in this struct (methods) when an item is
67 * "realized" (that is created dynamically while scrolling). All objects will
68 * simply be deleted when no longer needed with evas_object_del(). The
69 * Elm_Genlist_Item_Class structure contains the following members:
71 * item_style - This is a constant string and simply defines the name of the
72 * item style. It must be specified and the default should be "default".
74 * func.label_get - This function is called when an actual item object is
75 * created. The data parameter is the data parameter passed to
76 * elm_genlist_item_append() and related item creation functions. The obj
77 * parameter is the genlist object and the part parameter is the string name
78 * of the text part in the edje design that is listed as one of the possible
79 * labels that can be set. This function must return a strudup()'ed string as
80 * the caller will free() it when done.
82 * func.icon_get - This function is called when an actual item object is
83 * created. The data parameter is the data parameter passed to
84 * elm_genlist_item_append() and related item creation functions. The obj
85 * parameter is the genlist object and the part parameter is the string name
86 * of the icon part in the edje design that is listed as one of the possible
87 * icons that can be set. This must return NULL for no object or a valid
88 * object. The object will be deleted by genlist on shutdown or when the item
91 * func.state_get - This function is called when an actual item object is
92 * created. The data parameter is the data parameter passed to
93 * elm_genlist_item_append() and related item creation functions. The obj
94 * parameter is the genlist object and the part parameter is the string name
95 * of the state part in the edje design that is listed as one of the possible
96 * states that can be set. Return 0 for false or 1 for true. Genlist will
97 * emit a signal to the edje object with "elm,state,XXX,active" "elm" when
98 * true (the default is false), where XXX is the name of the part.
100 * func.del - This is called when elm_genlist_item_del() is called on an
101 * item, elm_genlist_clear() is called on the genlist, or
102 * elm_genlist_item_subitems_clear() is called to clear sub-items. This is
103 * intended for use when actual genlist items are deleted, so any backing
104 * data attached to the item (e.g. its data parameter on creation) can be
107 * Items can be added by several calls. All of them return a Elm_Genlist_Item
108 * handle that is an internal member inside the genlist. They all take a data
109 * parameter that is meant to be used for a handle to the applications
110 * internal data (eg the struct with the original item data). The parent
111 * parameter is the parent genlist item this belongs to if it is a tree or
112 * an indexed group, and NULL if there is no parent. The flags can be a bitmask
113 * of ELM_GENLIST_ITEM_NONE, ELM_GENLIST_ITEM_SUBITEMS and
114 * ELM_GENLIST_ITEM_GROUP. If ELM_GENLIST_ITEM_SUBITEMS is set then this item
115 * is displayed as an item that is able to expand and have child items.
116 * If ELM_GENLIST_ITEM_GROUP is set then this item is group idex item that is
117 * displayed at the top until the next group comes. The func parameter is a
118 * convenience callback that is called when the item is selected and the data
119 * parameter will be the func_data parameter, obj be the genlist object and
120 * event_info will be the genlist item.
122 * elm_genlist_item_append() appends an item to the end of the list, or if
123 * there is a parent, to the end of all the child items of the parent.
124 * elm_genlist_item_prepend() is the same but prepends to the beginning of
125 * the list or children list. elm_genlist_item_insert_before() inserts at
126 * item before another item and elm_genlist_item_insert_after() inserts after
127 * the indicated item.
129 * The application can clear the list with elm_genlist_clear() which deletes
130 * all the items in the list and elm_genlist_item_del() will delete a specific
131 * item. elm_genlist_item_subitems_clear() will clear all items that are
132 * children of the indicated parent item.
134 * If the application wants multiple items to be able to be selected,
135 * elm_genlist_multi_select_set() can enable this. If the list is
136 * single-selection only (the default), then elm_genlist_selected_item_get()
137 * will return the selected item, if any, or NULL I none is selected. If the
138 * list is multi-select then elm_genlist_selected_items_get() will return a
139 * list (that is only valid as long as no items are modified (added, deleted,
140 * selected or unselected)).
142 * To help inspect list items you can jump to the item at the top of the list
143 * with elm_genlist_first_item_get() which will return the item pointer, and
144 * similarly elm_genlist_last_item_get() gets the item at the end of the list.
145 * elm_genlist_item_next_get() and elm_genlist_item_prev_get() get the next
146 * and previous items respectively relative to the indicated item. Using
147 * these calls you can walk the entire item list/tree. Note that as a tree
148 * the items are flattened in the list, so elm_genlist_item_parent_get() will
149 * let you know which item is the parent (and thus know how to skip them if
152 * There are also convenience functions. elm_genlist_item_genlist_get() will
153 * return the genlist object the item belongs to. elm_genlist_item_show()
154 * will make the scroller scroll to show that specific item so its visible.
155 * elm_genlist_item_data_get() returns the data pointer set by the item
156 * creation functions.
158 * If an item changes (state of boolean changes, label or icons change),
159 * then use elm_genlist_item_update() to have genlist update the item with
160 * the new state. Genlist will re-realize the item thus call the functions
161 * in the _Elm_Genlist_Item_Class for that item.
163 * To programmatically (un)select an item use elm_genlist_item_selected_set().
164 * To get its selected state use elm_genlist_item_selected_get(). Similarly
165 * to expand/contract an item and get its expanded state, use
166 * elm_genlist_item_expanded_set() and elm_genlist_item_expanded_get(). And
167 * again to make an item disabled (unable to be selected and appear
168 * differently) use elm_genlist_item_disabled_set() to set this and
169 * elm_genlist_item_disabled_get() to get the disabled state.
171 * In general to indicate how the genlist should expand items horizontally to
172 * fill the list area, use elm_genlist_horizontal_mode_set(). Valid modes are
173 * ELM_LIST_LIMIT and ELM_LIST_SCROLL . The default is ELM_LIST_SCROLL. This
174 * mode means that if items are too wide to fit, the scroller will scroll
175 * horizontally. Otherwise items are expanded to fill the width of the
176 * viewport of the scroller. If it is ELM_LIST_LIMIT, items will be expanded
177 * to the viewport width and limited to that size. This can be combined with
178 * a different style that uses edjes' ellipsis feature (cutting text off like
181 * Items will only call their selection func and callback when first becoming
182 * selected. Any further clicks will do nothing, unless you enable always
183 * select with elm_genlist_always_select_mode_set(). This means even if
184 * selected, every click will make the selected callbacks be called.
185 * elm_genlist_no_select_mode_set() will turn off the ability to select
186 * items entirely and they will neither appear selected nor call selected
187 * callback functions.
189 * Remember that you can create new styles and add your own theme augmentation
190 * per application with elm_theme_extension_add(). If you absolutely must
191 * have a specific style that overrides any theme the user or system sets up
192 * you can use elm_theme_overlay_add() to add such a file.
196 typedef struct _Widget_Data Widget_Data;
197 typedef struct _Item_Block Item_Block;
198 typedef struct _Pan Pan;
199 typedef struct _Item_Cache Item_Cache;
203 Evas_Object *obj, *scr, *pan_smart;
204 Eina_Inlist *items, *blocks;
205 Eina_List *group_items;
207 Evas_Coord pan_x, pan_y, old_pan_y, w, h, minw, minh, realminw, prev_viewport_w;
208 Ecore_Job *calc_job, *update_job;
209 Ecore_Idle_Enterer *queue_idle_enterer;
210 Ecore_Idler *must_recalc_idler;
211 Eina_List *queue, *selected;
212 Elm_Genlist_Item *show_item, *last_selected_item, *anchor_item, *mode_item, *reorder_it, *reorder_rel, *expanded_item;
213 Eina_Inlist *item_cache;
214 Evas_Coord anchor_y, reorder_start_y;
216 Ecore_Timer *multi_timer, *scr_hold_timer;
217 Ecore_Animator *reorder_move_animator;
218 const char *mode_type;
219 unsigned int start_time;
220 Evas_Coord prev_x, prev_y, prev_mx, prev_my;
221 Evas_Coord cur_x, cur_y, cur_mx, cur_my;
222 Eina_Bool mouse_down : 1;
223 Eina_Bool multi_down : 1;
224 Eina_Bool multi_timeout : 1;
225 Eina_Bool multitouched : 1;
226 Eina_Bool on_hold : 1;
228 Eina_Bool always_select : 1;
229 Eina_Bool longpressed : 1;
230 Eina_Bool wasselected : 1;
231 Eina_Bool no_select : 1;
232 Eina_Bool bring_in : 1;
233 Eina_Bool compress : 1;
234 Eina_Bool height_for_width : 1;
235 Eina_Bool homogeneous : 1;
236 Eina_Bool clear_me : 1;
238 Eina_Bool reorder_mode : 1;
239 Eina_Bool reorder_pan_move : 1;
240 Eina_Bool auto_scroll_enabled : 1;
244 } history[SWIPE_MOVES];
246 int item_cache_count;
252 int group_item_width;
253 int group_item_height;
254 int max_items_per_block;
255 double longpress_timeout;
266 Evas_Coord x, y, w, h, minw, minh;
267 Eina_Bool want_unrealize : 1;
268 Eina_Bool realized : 1;
269 Eina_Bool changed : 1;
270 Eina_Bool updateme : 1;
271 Eina_Bool showme : 1;
272 Eina_Bool must_recalc : 1;
275 struct _Elm_Genlist_Item
277 Elm_Widget_Item base;
282 Evas_Coord x, y, w, h, minw, minh;
283 const Elm_Genlist_Item_Class *itc;
284 Elm_Genlist_Item *parent;
285 Elm_Genlist_Item *group_item;
286 Elm_Genlist_Item_Flags flags;
294 Eina_List *labels, *icons, *states, *icon_objs;
295 Eina_List *mode_labels, *mode_icons, *mode_states, *mode_icon_objs;
296 Ecore_Timer *long_timer;
297 Ecore_Timer *swipe_timer;
299 Evas_Coord scrl_x, scrl_y, old_scrl_y;
301 Elm_Genlist_Item *rel;
302 Evas_Object *mode_view;
307 Elm_Tooltip_Item_Content_Cb content_cb;
308 Evas_Smart_Cb del_cb;
312 const char *mouse_cursor;
319 Eina_Bool before : 1;
321 Eina_Bool want_unrealize : 1;
322 Eina_Bool want_realize : 1;
323 Eina_Bool realized : 1;
324 Eina_Bool selected : 1;
325 Eina_Bool highlighted : 1;
326 Eina_Bool expanded : 1;
327 Eina_Bool disabled : 1;
328 Eina_Bool display_only : 1;
329 Eina_Bool mincalcd : 1;
330 Eina_Bool queued : 1;
331 Eina_Bool showme : 1;
332 Eina_Bool delete_me : 1;
334 Eina_Bool dragging : 1;
335 Eina_Bool updateme : 1;
336 Eina_Bool nocache : 1;
337 Eina_Bool stacking_even : 1;
338 Eina_Bool nostacking : 1;
339 Eina_Bool move_effect_enabled : 1;
346 Evas_Object *base_view, *spacer;
348 const char *item_style; // it->itc->item_style
349 Eina_Bool tree : 1; // it->flags & ELM_GENLIST_ITEM_SUBITEMS
350 Eina_Bool compress : 1; // it->wd->compress
352 Eina_Bool selected : 1; // it->selected
353 Eina_Bool disabled : 1; // it->disabled
354 Eina_Bool expanded : 1; // it->expanded
357 #define ELM_GENLIST_ITEM_FROM_INLIST(item) \
358 ((item) ? EINA_INLIST_CONTAINER_GET(item, Elm_Genlist_Item) : NULL)
362 Evas_Object_Smart_Clipped_Data __clipped_data;
364 Ecore_Job *resize_job;
367 static const char *widtype = NULL;
368 static void _item_cache_zero(Widget_Data *wd);
369 static void _del_hook(Evas_Object *obj);
370 static void _mirrored_set(Evas_Object *obj,
372 static void _theme_hook(Evas_Object *obj);
373 static void _show_region_hook(void *data,
375 static void _sizing_eval(Evas_Object *obj);
376 static void _item_unrealize(Elm_Genlist_Item *it,
378 static void _item_block_unrealize(Item_Block *itb);
379 static void _calc_job(void *data);
380 static void _on_focus_hook(void *data,
382 static Eina_Bool _item_multi_select_up(Widget_Data *wd);
383 static Eina_Bool _item_multi_select_down(Widget_Data *wd);
384 static Eina_Bool _item_single_select_up(Widget_Data *wd);
385 static Eina_Bool _item_single_select_down(Widget_Data *wd);
386 static Eina_Bool _event_hook(Evas_Object *obj,
388 Evas_Callback_Type type,
390 static void _signal_emit_hook(Evas_Object *obj,
391 const char *emission,
393 static Eina_Bool _deselect_all_items(Widget_Data *wd);
394 static void _pan_calculate(Evas_Object *obj);
395 static void _item_position(Elm_Genlist_Item *it,
399 static void _mode_item_realize(Elm_Genlist_Item *it);
400 static void _mode_item_unrealize(Elm_Genlist_Item *it);
401 static void _item_mode_set(Elm_Genlist_Item *it);
402 static void _item_mode_unset(Widget_Data *wd);
403 static void _group_items_recalc(void *data);
404 static void _item_move_after(Elm_Genlist_Item *it,
405 Elm_Genlist_Item *after);
406 static void _item_move_before(Elm_Genlist_Item *it,
407 Elm_Genlist_Item *before);
408 static void _item_auto_scroll(Widget_Data *wd);
410 static Evas_Smart_Class _pan_sc = EVAS_SMART_CLASS_INIT_VERSION;
412 static const char SIG_CLICKED_DOUBLE[] = "clicked,double";
413 static const char SIG_SELECTED[] = "selected";
414 static const char SIG_UNSELECTED[] = "unselected";
415 static const char SIG_EXPANDED[] = "expanded";
416 static const char SIG_CONTRACTED[] = "contracted";
417 static const char SIG_EXPAND_REQUEST[] = "expand,request";
418 static const char SIG_CONTRACT_REQUEST[] = "contract,request";
419 static const char SIG_REALIZED[] = "realized";
420 static const char SIG_UNREALIZED[] = "unrealized";
421 static const char SIG_DRAG_START_UP[] = "drag,start,up";
422 static const char SIG_DRAG_START_DOWN[] = "drag,start,down";
423 static const char SIG_DRAG_START_LEFT[] = "drag,start,left";
424 static const char SIG_DRAG_START_RIGHT[] = "drag,start,right";
425 static const char SIG_DRAG_STOP[] = "drag,stop";
426 static const char SIG_DRAG[] = "drag";
427 static const char SIG_LONGPRESSED[] = "longpressed";
428 static const char SIG_SCROLL_EDGE_TOP[] = "scroll,edge,top";
429 static const char SIG_SCROLL_EDGE_BOTTOM[] = "scroll,edge,bottom";
430 static const char SIG_SCROLL_EDGE_LEFT[] = "scroll,edge,left";
431 static const char SIG_SCROLL_EDGE_RIGHT[] = "scroll,edge,right";
432 static const char SIG_MULTI_SWIPE_LEFT[] = "multi,swipe,left";
433 static const char SIG_MULTI_SWIPE_RIGHT[] = "multi,swipe,right";
434 static const char SIG_MULTI_SWIPE_UP[] = "multi,swipe,up";
435 static const char SIG_MULTI_SWIPE_DOWN[] = "multi,swipe,down";
436 static const char SIG_MULTI_PINCH_OUT[] = "multi,pinch,out";
437 static const char SIG_MULTI_PINCH_IN[] = "multi,pinch,in";
438 static const char SIG_SWIPE[] = "swipe";
440 static const Evas_Smart_Cb_Description _signals[] = {
441 {SIG_CLICKED_DOUBLE, ""},
443 {SIG_UNSELECTED, ""},
445 {SIG_CONTRACTED, ""},
446 {SIG_EXPAND_REQUEST, ""},
447 {SIG_CONTRACT_REQUEST, ""},
449 {SIG_UNREALIZED, ""},
450 {SIG_DRAG_START_UP, ""},
451 {SIG_DRAG_START_DOWN, ""},
452 {SIG_DRAG_START_LEFT, ""},
453 {SIG_DRAG_START_RIGHT, ""},
456 {SIG_LONGPRESSED, ""},
457 {SIG_SCROLL_EDGE_TOP, ""},
458 {SIG_SCROLL_EDGE_BOTTOM, ""},
459 {SIG_SCROLL_EDGE_LEFT, ""},
460 {SIG_SCROLL_EDGE_RIGHT, ""},
461 {SIG_MULTI_SWIPE_LEFT, ""},
462 {SIG_MULTI_SWIPE_RIGHT, ""},
463 {SIG_MULTI_SWIPE_UP, ""},
464 {SIG_MULTI_SWIPE_DOWN, ""},
465 {SIG_MULTI_PINCH_OUT, ""},
466 {SIG_MULTI_PINCH_IN, ""},
471 static Eina_Compare_Cb _elm_genlist_item_compare_cb;
472 static Eina_Compare_Cb _elm_genlist_item_compare_data_cb;
475 _event_hook(Evas_Object *obj,
476 Evas_Object *src __UNUSED__,
477 Evas_Callback_Type type,
480 if (type != EVAS_CALLBACK_KEY_DOWN) return EINA_FALSE;
481 Evas_Event_Key_Down *ev = event_info;
482 Widget_Data *wd = elm_widget_data_get(obj);
483 if (!wd) return EINA_FALSE;
484 if (!wd->items) return EINA_FALSE;
485 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return EINA_FALSE;
486 if (elm_widget_disabled_get(obj)) return EINA_FALSE;
488 Elm_Genlist_Item *it = NULL;
491 Evas_Coord step_x = 0;
492 Evas_Coord step_y = 0;
495 Evas_Coord page_x = 0;
496 Evas_Coord page_y = 0;
498 elm_smart_scroller_child_pos_get(wd->scr, &x, &y);
499 elm_smart_scroller_step_size_get(wd->scr, &step_x, &step_y);
500 elm_smart_scroller_page_size_get(wd->scr, &page_x, &page_y);
501 elm_smart_scroller_child_viewport_size_get(wd->scr, &v_w, &v_h);
503 if ((!strcmp(ev->keyname, "Left")) || (!strcmp(ev->keyname, "KP_Left")))
507 else if ((!strcmp(ev->keyname, "Right")) ||
508 (!strcmp(ev->keyname, "KP_Right")))
512 else if ((!strcmp(ev->keyname, "Up")) || (!strcmp(ev->keyname, "KP_Up")))
514 if (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
515 (_item_multi_select_up(wd)))
516 || (_item_single_select_up(wd)))
518 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
524 else if ((!strcmp(ev->keyname, "Down")) || (!strcmp(ev->keyname, "KP_Down")))
526 if (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
527 (_item_multi_select_down(wd)))
528 || (_item_single_select_down(wd)))
530 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
536 else if ((!strcmp(ev->keyname, "Home")) ||
537 (!strcmp(ev->keyname, "KP_Home")))
539 it = elm_genlist_first_item_get(obj);
540 elm_genlist_item_bring_in(it);
541 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
544 else if ((!strcmp(ev->keyname, "End")) ||
545 (!strcmp(ev->keyname, "KP_End")))
547 it = elm_genlist_last_item_get(obj);
548 elm_genlist_item_bring_in(it);
549 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
552 else if ((!strcmp(ev->keyname, "Prior")) ||
553 (!strcmp(ev->keyname, "KP_Prior")))
556 y -= -(page_y * v_h) / 100;
560 else if ((!strcmp(ev->keyname, "Next")) ||
561 (!strcmp(ev->keyname, "KP_Next")))
564 y += -(page_y * v_h) / 100;
568 else if (((!strcmp(ev->keyname, "Return")) ||
569 (!strcmp(ev->keyname, "KP_Enter")) ||
570 (!strcmp(ev->keyname, "space")))
571 && (!wd->multi) && (wd->selected))
573 it = elm_genlist_selected_item_get(obj);
574 elm_genlist_item_expanded_set(it,
575 !elm_genlist_item_expanded_get(it));
577 else if (!strcmp(ev->keyname, "Escape"))
579 if (!_deselect_all_items(wd)) return EINA_FALSE;
580 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
583 else return EINA_FALSE;
585 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
586 elm_smart_scroller_child_pos_set(wd->scr, x, y);
591 _deselect_all_items(Widget_Data *wd)
593 if (!wd->selected) return EINA_FALSE;
595 elm_genlist_item_selected_set(wd->selected->data, EINA_FALSE);
601 _item_multi_select_up(Widget_Data *wd)
603 if (!wd->selected) return EINA_FALSE;
604 if (!wd->multi) return EINA_FALSE;
606 Elm_Genlist_Item *prev = elm_genlist_item_prev_get(wd->last_selected_item);
607 if (!prev) return EINA_TRUE;
609 if (elm_genlist_item_selected_get(prev))
611 elm_genlist_item_selected_set(wd->last_selected_item, EINA_FALSE);
612 wd->last_selected_item = prev;
613 elm_genlist_item_show(wd->last_selected_item);
617 elm_genlist_item_selected_set(prev, EINA_TRUE);
618 elm_genlist_item_show(prev);
624 _item_multi_select_down(Widget_Data *wd)
626 if (!wd->selected) return EINA_FALSE;
627 if (!wd->multi) return EINA_FALSE;
629 Elm_Genlist_Item *next = elm_genlist_item_next_get(wd->last_selected_item);
630 if (!next) return EINA_TRUE;
632 if (elm_genlist_item_selected_get(next))
634 elm_genlist_item_selected_set(wd->last_selected_item, EINA_FALSE);
635 wd->last_selected_item = next;
636 elm_genlist_item_show(wd->last_selected_item);
640 elm_genlist_item_selected_set(next, EINA_TRUE);
641 elm_genlist_item_show(next);
647 _item_single_select_up(Widget_Data *wd)
649 Elm_Genlist_Item *prev;
652 prev = ELM_GENLIST_ITEM_FROM_INLIST(wd->items->last);
653 while ((prev) && (prev->delete_me))
654 prev = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(prev)->prev);
656 else prev = elm_genlist_item_prev_get(wd->last_selected_item);
658 if (!prev) return EINA_FALSE;
660 _deselect_all_items(wd);
662 elm_genlist_item_selected_set(prev, EINA_TRUE);
663 elm_genlist_item_show(prev);
668 _item_single_select_down(Widget_Data *wd)
670 Elm_Genlist_Item *next;
673 next = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
674 while ((next) && (next->delete_me))
675 next = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(next)->next);
677 else next = elm_genlist_item_next_get(wd->last_selected_item);
679 if (!next) return EINA_FALSE;
681 _deselect_all_items(wd);
683 elm_genlist_item_selected_set(next, EINA_TRUE);
684 elm_genlist_item_show(next);
689 _on_focus_hook(void *data __UNUSED__,
692 Widget_Data *wd = elm_widget_data_get(obj);
694 if (elm_widget_focus_get(obj))
696 elm_object_signal_emit(wd->obj, "elm,action,focus", "elm");
697 evas_object_focus_set(wd->obj, EINA_TRUE);
698 if ((wd->selected) && (!wd->last_selected_item))
699 wd->last_selected_item = eina_list_data_get(wd->selected);
703 elm_object_signal_emit(wd->obj, "elm,action,unfocus", "elm");
704 evas_object_focus_set(wd->obj, EINA_FALSE);
709 _del_hook(Evas_Object *obj)
711 Widget_Data *wd = elm_widget_data_get(obj);
713 _item_cache_zero(wd);
714 if (wd->calc_job) ecore_job_del(wd->calc_job);
715 if (wd->update_job) ecore_job_del(wd->update_job);
716 if (wd->queue_idle_enterer) ecore_idle_enterer_del(wd->queue_idle_enterer);
717 if (wd->must_recalc_idler) ecore_idler_del(wd->must_recalc_idler);
718 if (wd->multi_timer) ecore_timer_del(wd->multi_timer);
719 if (wd->mode_type) eina_stringshare_del(wd->mode_type);
720 if (wd->scr_hold_timer) ecore_timer_del(wd->scr_hold_timer);
725 _del_pre_hook(Evas_Object *obj)
727 Widget_Data *wd = elm_widget_data_get(obj);
729 evas_object_del(wd->pan_smart);
730 wd->pan_smart = NULL;
731 elm_genlist_clear(obj);
735 _mirrored_set(Evas_Object *obj,
738 Widget_Data *wd = elm_widget_data_get(obj);
740 _item_cache_zero(wd);
741 elm_smart_scroller_mirrored_set(wd->scr, rtl);
745 _theme_hook(Evas_Object *obj)
747 Widget_Data *wd = elm_widget_data_get(obj);
750 evas_event_freeze(evas_object_evas_get(wd->obj));
751 _item_cache_zero(wd);
752 _elm_widget_mirrored_reload(obj);
753 _mirrored_set(obj, elm_widget_mirrored_get(obj));
754 elm_smart_scroller_object_theme_set(obj, wd->scr, "genlist", "base",
755 elm_widget_style_get(obj));
756 edje_object_scale_set(wd->scr, elm_widget_scale_get(obj) * _elm_config->scale);
757 wd->item_width = wd->item_height = 0;
758 wd->group_item_width = wd->group_item_height = 0;
759 wd->minw = wd->minh = wd->realminw = 0;
760 EINA_INLIST_FOREACH(wd->blocks, itb)
763 Elm_Genlist_Item *it;
765 if (itb->realized) _item_block_unrealize(itb);
766 EINA_LIST_FOREACH(itb->items, l, it)
767 it->mincalcd = EINA_FALSE;
769 itb->changed = EINA_TRUE;
771 if (wd->calc_job) ecore_job_del(wd->calc_job);
772 wd->calc_job = ecore_job_add(_calc_job, wd);
774 evas_event_thaw(evas_object_evas_get(wd->obj));
775 evas_event_thaw_eval(evas_object_evas_get(wd->obj));
779 _show_region_hook(void *data,
782 Widget_Data *wd = elm_widget_data_get(data);
783 Evas_Coord x, y, w, h;
785 elm_widget_show_region_get(obj, &x, &y, &w, &h);
786 //x & y are screen coordinates, Add with pan coordinates
789 elm_smart_scroller_child_region_show(wd->scr, x, y, w, h);
793 _sizing_eval(Evas_Object *obj)
795 Widget_Data *wd = elm_widget_data_get(obj);
796 Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
798 evas_object_size_hint_min_get(wd->scr, &minw, &minh);
799 evas_object_size_hint_max_get(wd->scr, &maxw, &maxh);
801 if (wd->height_for_width)
805 elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
806 if ((vw != 0) && (vw != wd->prev_viewport_w))
810 wd->prev_viewport_w = vw;
811 EINA_INLIST_FOREACH(wd->blocks, itb)
813 itb->must_recalc = EINA_TRUE;
815 if (wd->calc_job) ecore_job_del(wd->calc_job);
816 wd->calc_job = ecore_job_add(_calc_job, wd);
819 if (wd->mode == ELM_LIST_LIMIT)
821 Evas_Coord vmw, vmh, vw, vh;
825 elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
826 if ((minw > 0) && (vw < minw)) vw = minw;
827 else if ((maxw > 0) && (vw > maxw))
829 edje_object_size_min_calc
830 (elm_smart_scroller_edje_object_get(wd->scr), &vmw, &vmh);
837 edje_object_size_min_calc
838 (elm_smart_scroller_edje_object_get(wd->scr), &vmw, &vmh);
842 evas_object_size_hint_min_set(obj, minw, minh);
843 evas_object_size_hint_max_set(obj, maxw, maxh);
847 _signal_emit_hook(Evas_Object *obj,
848 const char *emission,
851 Widget_Data *wd = elm_widget_data_get(obj);
852 edje_object_signal_emit(elm_smart_scroller_edje_object_get(wd->scr),
857 _item_highlight(Elm_Genlist_Item *it)
859 const char *selectraise;
860 if ((it->wd->no_select) || (it->delete_me) || (it->highlighted) ||
861 (it->disabled) || (it->display_only) || (it->mode_view))
863 edje_object_signal_emit(it->base.view, "elm,state,selected", "elm");
864 selectraise = edje_object_data_get(it->base.view, "selectraise");
865 if ((selectraise) && (!strcmp(selectraise, "on")))
867 evas_object_raise(it->base.view);
868 if ((it->group_item) && (it->group_item->realized))
869 evas_object_raise(it->group_item->base.view);
871 it->highlighted = EINA_TRUE;
875 _item_unhighlight(Elm_Genlist_Item *it)
877 const char *stacking, *selectraise;
878 if ((it->delete_me) || (!it->highlighted)) return;
879 edje_object_signal_emit(it->base.view, "elm,state,unselected", "elm");
880 stacking = edje_object_data_get(it->base.view, "stacking");
881 selectraise = edje_object_data_get(it->base.view, "selectraise");
884 if ((it->order_num_in & 0x1) ^ it->stacking_even) evas_object_lower(it->base.view);
885 else evas_object_raise(it->base.view);
887 it->highlighted = EINA_FALSE;
891 _item_block_del(Elm_Genlist_Item *it)
894 Item_Block *itb = it->block;
896 itb->items = eina_list_remove(itb->items, it);
898 itb->changed = EINA_TRUE;
899 if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
900 it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
903 il = EINA_INLIST_GET(itb);
904 Item_Block *itbn = (Item_Block *)(il->next);
906 it->parent->items = eina_list_remove(it->parent->items, it);
908 it->wd->blocks = eina_inlist_remove(it->wd->blocks, il);
910 if (itbn) itbn->changed = EINA_TRUE;
914 if (itb->count < itb->wd->max_items_per_block/2)
916 il = EINA_INLIST_GET(itb);
917 Item_Block *itbp = (Item_Block *)(il->prev);
918 Item_Block *itbn = (Item_Block *)(il->next);
919 if ((itbp) && ((itbp->count + itb->count) < itb->wd->max_items_per_block + itb->wd->max_items_per_block/2))
921 Elm_Genlist_Item *it2;
923 EINA_LIST_FREE(itb->items, it2)
926 itbp->items = eina_list_append(itbp->items, it2);
928 itbp->changed = EINA_TRUE;
930 it->wd->blocks = eina_inlist_remove(it->wd->blocks,
931 EINA_INLIST_GET(itb));
934 else if ((itbn) && ((itbn->count + itb->count) < itb->wd->max_items_per_block + itb->wd->max_items_per_block/2))
938 Eina_List *last = eina_list_last(itb->items);
939 Elm_Genlist_Item *it2 = last->data;
942 itb->items = eina_list_remove_list(itb->items, last);
943 itbn->items = eina_list_prepend(itbn->items, it2);
945 itbn->changed = EINA_TRUE;
948 eina_inlist_remove(it->wd->blocks, EINA_INLIST_GET(itb));
956 _item_del(Elm_Genlist_Item *it)
958 Evas_Object *tob = it->wd->obj;
960 evas_event_freeze(evas_object_evas_get(tob));
961 elm_widget_item_pre_notify_del(it);
962 elm_genlist_item_subitems_clear(it);
963 it->wd->walking -= it->walking;
964 if (it->wd->show_item == it) it->wd->show_item = NULL;
965 if (it->selected) it->wd->selected = eina_list_remove(it->wd->selected, it);
966 if (it->realized) _item_unrealize(it, EINA_FALSE);
967 if (it->block) _item_block_del(it);
968 if ((!it->delete_me) && (it->itc->func.del))
969 it->itc->func.del((void *)it->base.data, it->base.widget);
970 it->delete_me = EINA_TRUE;
972 it->wd->queue = eina_list_remove(it->wd->queue, it);
973 if (it->wd->anchor_item == it)
975 it->wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
976 if (!it->wd->anchor_item)
977 it->wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
979 it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
981 it->parent->items = eina_list_remove(it->parent->items, it);
982 if (it->flags & ELM_GENLIST_ITEM_GROUP)
983 it->wd->group_items = eina_list_remove(it->wd->group_items, it);
984 if (it->long_timer) ecore_timer_del(it->long_timer);
985 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
987 if (it->tooltip.del_cb)
988 it->tooltip.del_cb((void *)it->tooltip.data, it->base.widget, it);
990 evas_event_thaw(evas_object_evas_get(tob));
991 evas_event_thaw_eval(evas_object_evas_get(tob));
993 elm_widget_item_del(it);
997 _item_select(Elm_Genlist_Item *it)
999 if ((it->wd->no_select) || (it->delete_me) || (it->mode_view)) return;
1002 if (it->wd->always_select) goto call;
1005 it->selected = EINA_TRUE;
1006 it->wd->selected = eina_list_append(it->wd->selected, it);
1010 if (it->func.func) it->func.func((void *)it->func.data, it->base.widget, it);
1012 evas_object_smart_callback_call(it->base.widget, SIG_SELECTED, it);
1015 if ((it->wd->clear_me) && (!it->wd->walking))
1016 elm_genlist_clear(it->base.widget);
1019 if ((!it->walking) && (it->delete_me))
1021 if (!it->relcount) _item_del(it);
1024 it->wd->last_selected_item = it;
1028 _item_unselect(Elm_Genlist_Item *it)
1030 if ((it->delete_me) || (!it->selected)) return;
1031 it->selected = EINA_FALSE;
1032 it->wd->selected = eina_list_remove(it->wd->selected, it);
1033 evas_object_smart_callback_call(it->base.widget, SIG_UNSELECTED, it);
1037 _mouse_move(void *data,
1038 Evas *evas __UNUSED__,
1042 Elm_Genlist_Item *it = data;
1043 Evas_Event_Mouse_Move *ev = event_info;
1044 Evas_Coord minw = 0, minh = 0, x, y, dx, dy, adx, ady;
1045 Evas_Coord ox, oy, ow, oh, it_scrl_y, y_pos;
1047 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1049 if (!it->wd->on_hold)
1051 it->wd->on_hold = EINA_TRUE;
1052 if (!it->wd->wasselected)
1054 _item_unhighlight(it);
1059 if (it->wd->multitouched)
1061 it->wd->cur_x = ev->cur.canvas.x;
1062 it->wd->cur_y = ev->cur.canvas.y;
1065 if ((it->dragging) && (it->down))
1067 if (it->wd->movements == SWIPE_MOVES) it->wd->swipe = EINA_TRUE;
1070 it->wd->history[it->wd->movements].x = ev->cur.canvas.x;
1071 it->wd->history[it->wd->movements].y = ev->cur.canvas.y;
1072 if (abs((it->wd->history[it->wd->movements].x -
1073 it->wd->history[0].x)) > 40)
1074 it->wd->swipe = EINA_TRUE;
1076 it->wd->movements++;
1080 ecore_timer_del(it->long_timer);
1081 it->long_timer = NULL;
1083 evas_object_smart_callback_call(it->base.widget, SIG_DRAG, it);
1086 if ((!it->down) /* || (it->wd->on_hold)*/ || (it->wd->longpressed))
1090 ecore_timer_del(it->long_timer);
1091 it->long_timer = NULL;
1093 if ((it->wd->reorder_mode) && (it->wd->reorder_it))
1095 evas_object_geometry_get(it->wd->pan_smart, &ox, &oy, &ow, &oh);
1096 it_scrl_y = ev->cur.canvas.y - it->wd->reorder_it->dy;
1098 if (!it->wd->reorder_start_y)
1099 it->wd->reorder_start_y = it->block->y + it->y;
1101 if (it_scrl_y < oy) y_pos = oy;
1102 else if (it_scrl_y + it->wd->reorder_it->h > oy+oh)
1103 y_pos = oy + oh - it->wd->reorder_it->h;
1104 else y_pos = it_scrl_y;
1106 _item_position(it, it->base.view, it->scrl_x, y_pos);
1108 if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
1109 it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
1113 if (!it->display_only)
1114 elm_coords_finger_size_adjust(1, &minw, 1, &minh);
1115 evas_object_geometry_get(obj, &x, &y, NULL, NULL);
1116 x = ev->cur.canvas.x - x;
1117 y = ev->cur.canvas.y - y;
1120 if (adx < 0) adx = -dx;
1123 if (ady < 0) ady = -dy;
1126 if ((adx > minw) || (ady > minh))
1128 it->dragging = EINA_TRUE;
1131 ecore_timer_del(it->long_timer);
1132 it->long_timer = NULL;
1134 if (!it->wd->wasselected)
1136 _item_unhighlight(it);
1142 evas_object_smart_callback_call(it->base.widget,
1143 SIG_DRAG_START_UP, it);
1147 evas_object_smart_callback_call(it->base.widget,
1148 SIG_DRAG_START_LEFT, it);
1150 evas_object_smart_callback_call(it->base.widget,
1151 SIG_DRAG_START_RIGHT, it);
1157 evas_object_smart_callback_call(it->base.widget,
1158 SIG_DRAG_START_DOWN, it);
1162 evas_object_smart_callback_call(it->base.widget,
1163 SIG_DRAG_START_LEFT, it);
1165 evas_object_smart_callback_call(it->base.widget,
1166 SIG_DRAG_START_RIGHT, it);
1173 _long_press(void *data)
1175 Elm_Genlist_Item *it = data, *it_tmp;
1176 Eina_List *list, *l;
1178 it->long_timer = NULL;
1179 if ((it->disabled) || (it->dragging) || (it->display_only))
1180 return ECORE_CALLBACK_CANCEL;
1181 it->wd->longpressed = EINA_TRUE;
1182 evas_object_smart_callback_call(it->base.widget, SIG_LONGPRESSED, it);
1183 if ((it->wd->reorder_mode) && (it->flags != ELM_GENLIST_ITEM_GROUP))
1185 it->wd->reorder_it = it;
1186 it->wd->reorder_start_y = 0;
1188 evas_object_raise(it->base.view);
1189 elm_smart_scroller_hold_set(it->wd->scr, EINA_TRUE);
1191 list = elm_genlist_realized_items_get(it->wd->obj);
1192 EINA_LIST_FOREACH(list, l, it_tmp)
1194 if (it != it_tmp) _item_unselect(it_tmp);
1196 if (elm_genlist_item_expanded_get(it))
1198 elm_genlist_item_expanded_set(it, EINA_FALSE);
1199 return ECORE_CALLBACK_RENEW;
1201 edje_object_signal_emit(it->base.view, "elm,state,reorder,enabled", "elm");
1203 return ECORE_CALLBACK_CANCEL;
1207 _swipe(Elm_Genlist_Item *it)
1212 if ((it->display_only) || (it->disabled)) return;
1213 it->wd->swipe = EINA_FALSE;
1214 for (i = 0; i < it->wd->movements; i++)
1216 sum += it->wd->history[i].x;
1217 if (abs(it->wd->history[0].y - it->wd->history[i].y) > 10) return;
1220 sum /= it->wd->movements;
1221 if (abs(sum - it->wd->history[0].x) <= 10) return;
1222 evas_object_smart_callback_call(it->base.widget, SIG_SWIPE, it);
1226 _swipe_cancel(void *data)
1228 Elm_Genlist_Item *it = data;
1230 if (!it) return ECORE_CALLBACK_CANCEL;
1231 it->wd->swipe = EINA_FALSE;
1232 it->wd->movements = 0;
1233 return ECORE_CALLBACK_RENEW;
1237 _multi_cancel(void *data)
1239 Widget_Data *wd = data;
1241 if (!wd) return ECORE_CALLBACK_CANCEL;
1242 wd->multi_timeout = EINA_TRUE;
1243 return ECORE_CALLBACK_RENEW;
1247 _multi_touch_gesture_eval(void *data)
1249 Elm_Genlist_Item *it = data;
1251 it->wd->multitouched = EINA_FALSE;
1252 if (it->wd->multi_timer)
1254 ecore_timer_del(it->wd->multi_timer);
1255 it->wd->multi_timer = NULL;
1257 if (it->wd->multi_timeout)
1259 it->wd->multi_timeout = EINA_FALSE;
1263 Evas_Coord minw = 0, minh = 0;
1264 Evas_Coord off_x, off_y, off_mx, off_my;
1266 elm_coords_finger_size_adjust(1, &minw, 1, &minh);
1267 off_x = abs(it->wd->cur_x - it->wd->prev_x);
1268 off_y = abs(it->wd->cur_y - it->wd->prev_y);
1269 off_mx = abs(it->wd->cur_mx - it->wd->prev_mx);
1270 off_my = abs(it->wd->cur_my - it->wd->prev_my);
1272 if (((off_x > minw) || (off_y > minh)) && ((off_mx > minw) || (off_my > minh)))
1274 if ((off_x + off_mx) > (off_y + off_my))
1276 if ((it->wd->cur_x > it->wd->prev_x) && (it->wd->cur_mx > it->wd->prev_mx))
1277 evas_object_smart_callback_call(it->base.widget,
1278 SIG_MULTI_SWIPE_RIGHT, it);
1279 else if ((it->wd->cur_x < it->wd->prev_x) && (it->wd->cur_mx < it->wd->prev_mx))
1280 evas_object_smart_callback_call(it->base.widget,
1281 SIG_MULTI_SWIPE_LEFT, it);
1282 else if (abs(it->wd->cur_x - it->wd->cur_mx) > abs(it->wd->prev_x - it->wd->prev_mx))
1283 evas_object_smart_callback_call(it->base.widget,
1284 SIG_MULTI_PINCH_OUT, it);
1286 evas_object_smart_callback_call(it->base.widget,
1287 SIG_MULTI_PINCH_IN, it);
1291 if ((it->wd->cur_y > it->wd->prev_y) && (it->wd->cur_my > it->wd->prev_my))
1292 evas_object_smart_callback_call(it->base.widget,
1293 SIG_MULTI_SWIPE_DOWN, it);
1294 else if ((it->wd->cur_y < it->wd->prev_y) && (it->wd->cur_my < it->wd->prev_my))
1295 evas_object_smart_callback_call(it->base.widget,
1296 SIG_MULTI_SWIPE_UP, it);
1297 else if (abs(it->wd->cur_y - it->wd->cur_my) > abs(it->wd->prev_y - it->wd->prev_my))
1298 evas_object_smart_callback_call(it->base.widget,
1299 SIG_MULTI_PINCH_OUT, it);
1301 evas_object_smart_callback_call(it->base.widget,
1302 SIG_MULTI_PINCH_IN, it);
1305 it->wd->multi_timeout = EINA_FALSE;
1309 _multi_down(void *data,
1310 Evas *evas __UNUSED__,
1311 Evas_Object *obj __UNUSED__,
1314 Elm_Genlist_Item *it = data;
1315 Evas_Event_Multi_Down *ev = event_info;
1317 if ((it->wd->multi_device != 0) || (it->wd->multitouched) || (it->wd->multi_timeout)) return;
1318 it->wd->multi_device = ev->device;
1319 it->wd->multi_down = EINA_TRUE;
1320 it->wd->multitouched = EINA_TRUE;
1321 it->wd->prev_mx = ev->canvas.x;
1322 it->wd->prev_my = ev->canvas.y;
1323 if (!it->wd->wasselected)
1325 _item_unhighlight(it);
1328 it->wd->wasselected = EINA_FALSE;
1329 it->wd->longpressed = EINA_FALSE;
1332 ecore_timer_del(it->long_timer);
1333 it->long_timer = NULL;
1337 it->dragging = EINA_FALSE;
1338 evas_object_smart_callback_call(it->base.widget, SIG_DRAG_STOP, it);
1340 if (it->swipe_timer)
1342 ecore_timer_del(it->swipe_timer);
1343 it->swipe_timer = NULL;
1345 if (it->wd->on_hold)
1347 it->wd->swipe = EINA_FALSE;
1348 it->wd->movements = 0;
1349 it->wd->on_hold = EINA_FALSE;
1354 _multi_up(void *data,
1355 Evas *evas __UNUSED__,
1356 Evas_Object *obj __UNUSED__,
1359 Elm_Genlist_Item *it = data;
1360 Evas_Event_Multi_Up *ev = event_info;
1362 if (it->wd->multi_device != ev->device) return;
1363 it->wd->multi_device = 0;
1364 it->wd->multi_down = EINA_FALSE;
1365 if (it->wd->mouse_down) return;
1366 _multi_touch_gesture_eval(data);
1370 _multi_move(void *data,
1371 Evas *evas __UNUSED__,
1372 Evas_Object *obj __UNUSED__,
1375 Elm_Genlist_Item *it = data;
1376 Evas_Event_Multi_Move *ev = event_info;
1378 if (it->wd->multi_device != ev->device) return;
1379 it->wd->cur_mx = ev->cur.canvas.x;
1380 it->wd->cur_my = ev->cur.canvas.y;
1384 _mouse_down(void *data,
1385 Evas *evas __UNUSED__,
1389 Elm_Genlist_Item *it = data;
1390 Evas_Event_Mouse_Down *ev = event_info;
1393 if (ev->button != 1) return;
1394 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1396 it->wd->on_hold = EINA_TRUE;
1399 it->down = EINA_TRUE;
1400 it->dragging = EINA_FALSE;
1401 evas_object_geometry_get(obj, &x, &y, NULL, NULL);
1402 it->dx = ev->canvas.x - x;
1403 it->dy = ev->canvas.y - y;
1404 it->wd->mouse_down = EINA_TRUE;
1405 if (!it->wd->multitouched)
1407 it->wd->prev_x = ev->canvas.x;
1408 it->wd->prev_y = ev->canvas.y;
1409 it->wd->multi_timeout = EINA_FALSE;
1410 if (it->wd->multi_timer) ecore_timer_del(it->wd->multi_timer);
1411 it->wd->multi_timer = ecore_timer_add(1, _multi_cancel, it->wd);
1413 it->wd->longpressed = EINA_FALSE;
1414 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) it->wd->on_hold = EINA_TRUE;
1415 else it->wd->on_hold = EINA_FALSE;
1416 if (it->wd->on_hold) return;
1417 it->wd->wasselected = it->selected;
1418 _item_highlight(it);
1419 if (ev->flags & EVAS_BUTTON_DOUBLE_CLICK)
1420 if ((!it->disabled) && (!it->display_only))
1422 evas_object_smart_callback_call(it->base.widget, SIG_CLICKED_DOUBLE, it);
1423 evas_object_smart_callback_call(it->base.widget, "clicked", it); // will be removed
1425 if (it->long_timer) ecore_timer_del(it->long_timer);
1426 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
1427 it->swipe_timer = ecore_timer_add(0.4, _swipe_cancel, it);
1429 it->long_timer = ecore_timer_add(it->wd->longpress_timeout, _long_press,
1432 it->long_timer = NULL;
1433 it->wd->swipe = EINA_FALSE;
1434 it->wd->movements = 0;
1438 _mouse_up(void *data,
1439 Evas *evas __UNUSED__,
1440 Evas_Object *obj __UNUSED__,
1443 Elm_Genlist_Item *it = data;
1444 Evas_Event_Mouse_Up *ev = event_info;
1445 Eina_Bool dragged = EINA_FALSE;
1447 if (ev->button != 1) return;
1448 it->down = EINA_FALSE;
1449 it->wd->mouse_down = EINA_FALSE;
1450 if (it->wd->multitouched)
1452 if ((!it->wd->multi) && (!it->selected) && (it->highlighted)) _item_unhighlight(it);
1453 if (it->wd->multi_down) return;
1454 _multi_touch_gesture_eval(data);
1457 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) it->wd->on_hold = EINA_TRUE;
1458 else it->wd->on_hold = EINA_FALSE;
1461 ecore_timer_del(it->long_timer);
1462 it->long_timer = NULL;
1466 it->dragging = EINA_FALSE;
1467 evas_object_smart_callback_call(it->base.widget, SIG_DRAG_STOP, it);
1470 if (it->swipe_timer)
1472 ecore_timer_del(it->swipe_timer);
1473 it->swipe_timer = NULL;
1475 if (it->wd->multi_timer)
1477 ecore_timer_del(it->wd->multi_timer);
1478 it->wd->multi_timer = NULL;
1479 it->wd->multi_timeout = EINA_FALSE;
1481 if (it->wd->on_hold)
1483 if (it->wd->swipe) _swipe(data);
1484 it->wd->longpressed = EINA_FALSE;
1485 it->wd->on_hold = EINA_FALSE;
1488 if ((it->wd->reorder_mode) && (it->wd->reorder_it))
1490 Evas_Coord it_scrl_y = ev->canvas.y - it->wd->reorder_it->dy;
1492 if (it->wd->reorder_rel)
1494 if (it->wd->reorder_it->parent == it->wd->reorder_rel->parent)
1496 if (it_scrl_y <= it->wd->reorder_rel->scrl_y)
1497 _item_move_before(it->wd->reorder_it, it->wd->reorder_rel);
1499 _item_move_after(it->wd->reorder_it, it->wd->reorder_rel);
1503 if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
1504 it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
1507 edje_object_signal_emit(it->base.view, "elm,state,reorder,disabled", "elm");
1508 it->wd->reorder_it = it->wd->reorder_rel = NULL;
1509 elm_smart_scroller_hold_set(it->wd->scr, EINA_FALSE);
1511 if (it->wd->longpressed)
1513 it->wd->longpressed = EINA_FALSE;
1514 if (!it->wd->wasselected)
1516 _item_unhighlight(it);
1519 it->wd->wasselected = EINA_FALSE;
1524 if (it->want_unrealize)
1526 _item_unrealize(it, EINA_FALSE);
1527 if (it->block->want_unrealize)
1528 _item_block_unrealize(it->block);
1531 if ((it->disabled) || (dragged) || (it->display_only)) return;
1532 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
1537 _item_highlight(it);
1542 _item_unhighlight(it);
1550 Widget_Data *wd = it->wd;
1553 while (wd->selected)
1555 _item_unhighlight(wd->selected->data);
1556 _item_unselect(wd->selected->data);
1562 const Eina_List *l, *l_next;
1563 Elm_Genlist_Item *it2;
1565 EINA_LIST_FOREACH_SAFE(it->wd->selected, l, l_next, it2)
1568 _item_unhighlight(it2);
1569 _item_unselect(it2);
1571 //_item_highlight(it);
1574 _item_highlight(it);
1580 _signal_expand_toggle(void *data,
1581 Evas_Object *obj __UNUSED__,
1582 const char *emission __UNUSED__,
1583 const char *source __UNUSED__)
1585 Elm_Genlist_Item *it = data;
1588 evas_object_smart_callback_call(it->base.widget, SIG_CONTRACT_REQUEST, it);
1590 evas_object_smart_callback_call(it->base.widget, SIG_EXPAND_REQUEST, it);
1594 _signal_expand(void *data,
1595 Evas_Object *obj __UNUSED__,
1596 const char *emission __UNUSED__,
1597 const char *source __UNUSED__)
1599 Elm_Genlist_Item *it = data;
1602 evas_object_smart_callback_call(it->base.widget, SIG_EXPAND_REQUEST, it);
1606 _signal_contract(void *data,
1607 Evas_Object *obj __UNUSED__,
1608 const char *emission __UNUSED__,
1609 const char *source __UNUSED__)
1611 Elm_Genlist_Item *it = data;
1614 evas_object_smart_callback_call(it->base.widget, SIG_CONTRACT_REQUEST, it);
1618 _scr_hold_timer_cb(void *data)
1620 if (!data) return ECORE_CALLBACK_CANCEL;
1621 Widget_Data *wd = data;
1622 elm_smart_scroller_hold_set(wd->scr, EINA_FALSE);
1623 wd->scr_hold_timer = NULL;
1624 return ECORE_CALLBACK_CANCEL;
1628 _mode_finished_signal_cb(void *data,
1630 const char *emission __UNUSED__,
1631 const char *source __UNUSED__)
1635 Elm_Genlist_Item *it = data;
1636 if ((it->delete_me) || (!it->realized) || (!it->mode_view)) return;
1638 Evas *te = evas_object_evas_get(obj);
1640 evas_event_freeze(te);
1641 it->nocache = EINA_FALSE;
1642 _mode_item_unrealize(it);
1643 snprintf(buf, sizeof(buf), "elm,state,%s,passive,finished", it->wd->mode_type);
1644 edje_object_signal_callback_del_full(obj, buf, "elm", _mode_finished_signal_cb, it);
1645 evas_event_thaw(te);
1646 evas_event_thaw_eval(te);
1650 _item_cache_clean(Widget_Data *wd)
1652 evas_event_freeze(evas_object_evas_get(wd->obj));
1653 while ((wd->item_cache) && (wd->item_cache_count > wd->item_cache_max))
1657 itc = EINA_INLIST_CONTAINER_GET(wd->item_cache->last, Item_Cache);
1658 wd->item_cache = eina_inlist_remove(wd->item_cache,
1659 wd->item_cache->last);
1660 wd->item_cache_count--;
1661 if (itc->spacer) evas_object_del(itc->spacer);
1662 if (itc->base_view) evas_object_del(itc->base_view);
1663 if (itc->item_style) eina_stringshare_del(itc->item_style);
1666 evas_event_thaw(evas_object_evas_get(wd->obj));
1667 evas_event_thaw_eval(evas_object_evas_get(wd->obj));
1671 _item_cache_zero(Widget_Data *wd)
1673 int pmax = wd->item_cache_max;
1674 wd->item_cache_max = 0;
1675 _item_cache_clean(wd);
1676 wd->item_cache_max = pmax;
1680 _item_cache_add(Elm_Genlist_Item *it)
1684 evas_event_freeze(evas_object_evas_get(it->wd->obj));
1685 if (it->wd->item_cache_max <= 0)
1687 evas_object_del(it->base.view);
1688 it->base.view = NULL;
1689 evas_object_del(it->spacer);
1691 evas_event_thaw(evas_object_evas_get(it->wd->obj));
1692 evas_event_thaw_eval(evas_object_evas_get(it->wd->obj));
1696 it->wd->item_cache_count++;
1697 itc = calloc(1, sizeof(Item_Cache));
1698 it->wd->item_cache = eina_inlist_prepend(it->wd->item_cache,
1699 EINA_INLIST_GET(itc));
1700 itc->spacer = it->spacer;
1702 itc->base_view = it->base.view;
1703 it->base.view = NULL;
1704 evas_object_hide(itc->base_view);
1705 evas_object_move(itc->base_view, -9999, -9999);
1706 itc->item_style = eina_stringshare_add(it->itc->item_style);
1707 if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) itc->tree = 1;
1708 itc->compress = (it->wd->compress);
1709 itc->selected = it->selected;
1710 itc->disabled = it->disabled;
1711 itc->expanded = it->expanded;
1714 ecore_timer_del(it->long_timer);
1715 it->long_timer = NULL;
1717 if (it->swipe_timer)
1719 ecore_timer_del(it->swipe_timer);
1720 it->swipe_timer = NULL;
1722 // FIXME: other callbacks?
1723 edje_object_signal_callback_del_full(itc->base_view,
1724 "elm,action,expand,toggle",
1725 "elm", _signal_expand_toggle, it);
1726 edje_object_signal_callback_del_full(itc->base_view, "elm,action,expand",
1728 _signal_expand, it);
1729 edje_object_signal_callback_del_full(itc->base_view, "elm,action,contract",
1730 "elm", _signal_contract, it);
1731 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_DOWN,
1733 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_UP,
1735 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_MOVE,
1737 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_DOWN,
1739 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_UP,
1741 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_MOVE,
1743 _item_cache_clean(it->wd);
1744 evas_event_thaw(evas_object_evas_get(it->wd->obj));
1745 evas_event_thaw_eval(evas_object_evas_get(it->wd->obj));
1749 _item_cache_find(Elm_Genlist_Item *it)
1754 if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) tree = 1;
1755 EINA_INLIST_FOREACH(it->wd->item_cache, itc)
1757 if ((itc->selected) || (itc->disabled) || (itc->expanded))
1759 if ((itc->tree == tree) &&
1760 (itc->compress == it->wd->compress) &&
1761 (!strcmp(it->itc->item_style, itc->item_style)))
1763 it->wd->item_cache = eina_inlist_remove(it->wd->item_cache,
1764 EINA_INLIST_GET(itc));
1765 it->wd->item_cache_count--;
1773 _elm_genlist_item_odd_even_update(Elm_Genlist_Item *it)
1775 if (!it->nostacking)
1777 if ((it->order_num_in & 0x1) ^ it->stacking_even)
1778 evas_object_lower(it->base.view);
1780 evas_object_raise(it->base.view);
1783 if (it->order_num_in & 0x1)
1784 edje_object_signal_emit(it->base.view, "elm,state,odd", "elm");
1786 edje_object_signal_emit(it->base.view, "elm,state,even", "elm");
1790 _elm_genlist_item_state_update(Elm_Genlist_Item *it, Item_Cache *itc)
1794 if (it->selected != itc->selected)
1797 edje_object_signal_emit(it->base.view,
1798 "elm,state,selected", "elm");
1800 if (it->disabled != itc->disabled)
1803 edje_object_signal_emit(it->base.view,
1804 "elm,state,disabled", "elm");
1806 if (it->expanded != itc->expanded)
1809 edje_object_signal_emit(it->base.view,
1810 "elm,state,expanded", "elm");
1816 edje_object_signal_emit(it->base.view,
1817 "elm,state,selected", "elm");
1819 edje_object_signal_emit(it->base.view,
1820 "elm,state,disabled", "elm");
1822 edje_object_signal_emit(it->base.view,
1823 "elm,state,expanded", "elm");
1828 _item_cache_free(Item_Cache *itc)
1830 if (itc->spacer) evas_object_del(itc->spacer);
1831 if (itc->base_view) evas_object_del(itc->base_view);
1832 if (itc->item_style) eina_stringshare_del(itc->item_style);
1837 _item_label_realize(Elm_Genlist_Item *it,
1838 Evas_Object *target,
1841 if (it->itc->func.label_get)
1846 *source = elm_widget_stringlist_get(edje_object_data_get(target, "labels"));
1847 EINA_LIST_FOREACH(*source, l, key)
1849 char *s = it->itc->func.label_get
1850 ((void *)it->base.data, it->base.widget, key);
1854 edje_object_part_text_set(target, key, s);
1859 edje_object_part_text_set(target, key, "");
1866 _item_icon_realize(Elm_Genlist_Item *it,
1867 Evas_Object *target,
1870 Eina_List *res = NULL;
1872 if (it->itc->func.icon_get)
1877 *source = elm_widget_stringlist_get(edje_object_data_get(target, "icons"));
1878 EINA_LIST_FOREACH(*source, l, key)
1880 Evas_Object *ic = it->itc->func.icon_get
1881 ((void *)it->base.data, it->base.widget, key);
1885 res = eina_list_append(res, ic);
1886 edje_object_part_swallow(target, key, ic);
1887 evas_object_show(ic);
1888 elm_widget_sub_object_add(it->base.widget, ic);
1890 elm_widget_disabled_set(ic, EINA_TRUE);
1899 _item_state_realize(Elm_Genlist_Item *it,
1900 Evas_Object *target,
1903 if (it->itc->func.state_get)
1909 *source = elm_widget_stringlist_get(edje_object_data_get(target, "states"));
1910 EINA_LIST_FOREACH(*source, l, key)
1912 Eina_Bool on = it->itc->func.state_get
1913 ((void *)it->base.data, it->base.widget, key);
1917 snprintf(buf, sizeof(buf), "elm,state,%s,active", key);
1918 edje_object_signal_emit(target, buf, "elm");
1922 snprintf(buf, sizeof(buf), "elm,state,%s,passive", key);
1923 edje_object_signal_emit(target, buf, "elm");
1930 _item_realize(Elm_Genlist_Item *it,
1934 Elm_Genlist_Item *it2;
1935 const char *treesize;
1937 int depth, tsize = 20;
1938 Item_Cache *itc = NULL;
1940 if (it->delete_me) return;
1941 //evas_event_freeze(evas_object_evas_get(it->wd->obj));
1944 if (it->order_num_in != in)
1946 it->order_num_in = in;
1947 _elm_genlist_item_odd_even_update(it);
1948 _elm_genlist_item_state_update(it, NULL);
1950 //evas_event_thaw(evas_object_evas_get(it->wd->obj));
1951 //evas_event_thaw_eval(evas_object_evas_get(it->wd->obj));
1954 it->order_num_in = in;
1957 it->nocache = EINA_FALSE;
1959 itc = _item_cache_find(it);
1962 it->base.view = itc->base_view;
1963 itc->base_view = NULL;
1964 it->spacer = itc->spacer;
1969 const char *stacking_even;
1970 const char *stacking;
1972 it->base.view = edje_object_add(evas_object_evas_get(it->base.widget));
1973 edje_object_scale_set(it->base.view,
1974 elm_widget_scale_get(it->base.widget) *
1975 _elm_config->scale);
1976 evas_object_smart_member_add(it->base.view, it->wd->pan_smart);
1977 elm_widget_sub_object_add(it->base.widget, it->base.view);
1979 if (it->flags & ELM_GENLIST_ITEM_SUBITEMS)
1980 strncpy(buf, "tree", sizeof(buf));
1981 else strncpy(buf, "item", sizeof(buf));
1982 if (it->wd->compress)
1983 strncat(buf, "_compress", sizeof(buf) - strlen(buf));
1985 strncat(buf, "/", sizeof(buf) - strlen(buf));
1986 strncat(buf, it->itc->item_style, sizeof(buf) - strlen(buf));
1988 _elm_theme_object_set(it->base.widget, it->base.view, "genlist", buf,
1989 elm_widget_style_get(it->base.widget));
1991 stacking_even = edje_object_data_get(it->base.view, "stacking_even");
1992 if (!stacking_even) stacking_even = "above";
1993 it->stacking_even = !!strcmp("above", stacking_even);
1995 stacking = edje_object_data_get(it->base.view, "stacking");
1996 if (!stacking) stacking = "yes";
1997 it->nostacking = !!strcmp("yes", stacking);
1999 edje_object_mirrored_set(it->base.view,
2000 elm_widget_mirrored_get(it->base.widget));
2002 evas_object_rectangle_add(evas_object_evas_get(it->base.widget));
2003 evas_object_color_set(it->spacer, 0, 0, 0, 0);
2004 elm_widget_sub_object_add(it->base.widget, it->spacer);
2007 _elm_genlist_item_odd_even_update(it);
2009 for (it2 = it, depth = 0; it2->parent; it2 = it2->parent)
2011 if (it2->parent->flags != ELM_GENLIST_ITEM_GROUP) depth += 1;
2013 it->expanded_depth = depth;
2014 treesize = edje_object_data_get(it->base.view, "treesize");
2015 if (treesize) tsize = atoi(treesize);
2016 evas_object_size_hint_min_set(it->spacer,
2017 (depth * tsize) * _elm_config->scale, 1);
2018 edje_object_part_swallow(it->base.view, "elm.swallow.pad", it->spacer);
2021 edje_object_signal_callback_add(it->base.view,
2022 "elm,action,expand,toggle",
2023 "elm", _signal_expand_toggle, it);
2024 edje_object_signal_callback_add(it->base.view, "elm,action,expand",
2025 "elm", _signal_expand, it);
2026 edje_object_signal_callback_add(it->base.view, "elm,action,contract",
2027 "elm", _signal_contract, it);
2028 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_DOWN,
2030 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_UP,
2032 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_MOVE,
2034 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_DOWN,
2036 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_UP,
2038 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_MOVE,
2041 _elm_genlist_item_state_update(it, itc);
2044 if ((calc) && (it->wd->homogeneous) &&
2045 ((it->wd->item_width) ||
2046 ((it->wd->item_width) && (it->wd->group_item_width))))
2048 /* homogenous genlist shortcut */
2051 if (it->flags & ELM_GENLIST_ITEM_GROUP)
2053 it->w = it->minw = it->wd->group_item_width;
2054 it->h = it->minh = it->wd->group_item_height;
2058 it->w = it->minw = it->wd->item_width;
2059 it->h = it->minh = it->wd->item_height;
2061 it->mincalcd = EINA_TRUE;
2066 /* FIXME: If you see that assert, please notify us and we
2067 will clean our mess */
2068 assert(eina_list_count(it->icon_objs) == 0);
2070 _item_label_realize(it, it->base.view, &it->labels);
2071 it->icon_objs = _item_icon_realize(it, it->base.view, &it->icons);
2072 _item_state_realize(it, it->base.view, &it->states);
2076 Evas_Coord mw = -1, mh = -1;
2078 if (!it->display_only)
2079 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
2080 if (it->wd->height_for_width) mw = it->wd->prev_viewport_w;
2081 edje_object_size_min_restricted_calc(it->base.view, &mw, &mh, mw,
2083 if (!it->display_only)
2084 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
2085 it->w = it->minw = mw;
2086 it->h = it->minh = mh;
2087 it->mincalcd = EINA_TRUE;
2089 if ((!it->wd->group_item_width) && (it->flags == ELM_GENLIST_ITEM_GROUP))
2091 it->wd->group_item_width = mw;
2092 it->wd->group_item_height = mh;
2094 else if ((!it->wd->item_width) && (it->flags == ELM_GENLIST_ITEM_NONE))
2096 it->wd->item_width = mw;
2097 it->wd->item_height = mh;
2100 if (!calc) evas_object_show(it->base.view);
2103 if (it->tooltip.content_cb)
2105 elm_widget_item_tooltip_content_cb_set(it,
2106 it->tooltip.content_cb,
2107 it->tooltip.data, NULL);
2108 elm_widget_item_tooltip_style_set(it, it->tooltip.style);
2111 if (it->mouse_cursor)
2112 elm_widget_item_cursor_set(it, it->mouse_cursor);
2114 it->realized = EINA_TRUE;
2115 it->want_unrealize = EINA_FALSE;
2117 if (itc) _item_cache_free(itc);
2118 //evas_event_thaw(evas_object_evas_get(it->wd->obj));
2119 //evas_event_thaw_eval(evas_object_evas_get(it->wd->obj));
2121 evas_object_smart_callback_call(it->base.widget, SIG_REALIZED, it);
2125 _item_unrealize(Elm_Genlist_Item *it,
2130 if (!it->realized) return;
2131 if (it->wd->reorder_it == it) return;
2132 evas_event_freeze(evas_object_evas_get(it->wd->obj));
2134 evas_object_smart_callback_call(it->base.widget, SIG_UNREALIZED, it);
2137 ecore_timer_del(it->long_timer);
2138 it->long_timer = NULL;
2142 evas_object_del(it->base.view);
2143 it->base.view = NULL;
2144 evas_object_del(it->spacer);
2149 edje_object_mirrored_set(it->base.view,
2150 elm_widget_mirrored_get(it->base.widget));
2151 edje_object_scale_set(it->base.view,
2152 elm_widget_scale_get(it->base.widget)
2153 * _elm_config->scale);
2154 _item_cache_add(it);
2156 elm_widget_stringlist_free(it->labels);
2158 elm_widget_stringlist_free(it->icons);
2160 elm_widget_stringlist_free(it->states);
2162 EINA_LIST_FREE(it->icon_objs, icon)
2163 evas_object_del(icon);
2165 _mode_item_unrealize(it);
2167 it->realized = EINA_FALSE;
2168 it->want_unrealize = EINA_FALSE;
2169 evas_event_thaw(evas_object_evas_get(it->wd->obj));
2170 evas_event_thaw_eval(evas_object_evas_get(it->wd->obj));
2174 _item_block_recalc(Item_Block *itb,
2179 Elm_Genlist_Item *it;
2180 Evas_Coord minw = 0, minh = 0;
2181 Eina_Bool showme = EINA_FALSE, changed = EINA_FALSE;
2184 //evas_event_freeze(evas_object_evas_get(itb->wd->obj));
2186 EINA_LIST_FOREACH(itb->items, l, it)
2188 if (it->delete_me) continue;
2189 showme |= it->showme;
2194 if (!it->mincalcd) changed = EINA_TRUE;
2197 _item_realize(it, in, EINA_TRUE);
2198 _item_unrealize(it, EINA_TRUE);
2203 _item_realize(it, in, EINA_TRUE);
2204 _item_unrealize(it, EINA_TRUE);
2208 _item_realize(it, in, EINA_FALSE);
2210 if (minw < it->minw) minw = it->minw;
2218 itb->changed = EINA_FALSE;
2219 //evas_event_thaw(evas_object_evas_get(itb->wd->obj));
2220 //evas_event_thaw_eval(evas_object_evas_get(itb->wd->obj));
2225 _item_block_realize(Item_Block *itb)
2227 if (itb->realized) return;
2228 itb->realized = EINA_TRUE;
2229 itb->want_unrealize = EINA_FALSE;
2233 _item_block_unrealize(Item_Block *itb)
2236 Elm_Genlist_Item *it;
2237 Eina_Bool dragging = EINA_FALSE;
2239 if (!itb->realized) return;
2240 evas_event_freeze(evas_object_evas_get(itb->wd->obj));
2241 EINA_LIST_FOREACH(itb->items, l, it)
2243 if (it->flags != ELM_GENLIST_ITEM_GROUP)
2247 dragging = EINA_TRUE;
2248 it->want_unrealize = EINA_TRUE;
2251 _item_unrealize(it, EINA_FALSE);
2256 itb->realized = EINA_FALSE;
2257 itb->want_unrealize = EINA_TRUE;
2260 itb->want_unrealize = EINA_FALSE;
2261 evas_event_thaw(evas_object_evas_get(itb->wd->obj));
2262 evas_event_thaw_eval(evas_object_evas_get(itb->wd->obj));
2266 _get_space_for_reorder_item(Elm_Genlist_Item *it)
2268 Evas_Coord rox, roy, row, roh, oy, oh;
2269 Eina_Bool top = EINA_FALSE;
2270 Elm_Genlist_Item *reorder_it = it->wd->reorder_it;
2271 if (!reorder_it) return 0;
2273 evas_object_geometry_get(it->wd->pan_smart, NULL, &oy, NULL, &oh);
2274 evas_object_geometry_get(it->wd->reorder_it->base.view, &rox, &roy, &row, &roh);
2276 if ((it->wd->reorder_start_y < it->block->y) &&
2277 (roy - oy + (roh / 2) >= it->block->y - it->wd->pan_y))
2279 it->block->reorder_offset = it->wd->reorder_it->h * -1;
2280 if (it->block->count == 1)
2281 it->wd->reorder_rel = it;
2283 else if ((it->wd->reorder_start_y >= it->block->y) &&
2284 (roy - oy + (roh / 2) <= it->block->y - it->wd->pan_y))
2286 it->block->reorder_offset = it->wd->reorder_it->h;
2289 it->block->reorder_offset = 0;
2291 it->scrl_y += it->block->reorder_offset;
2293 top = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
2294 rox, roy + (roh / 2), row, 1));
2297 it->wd->reorder_rel = it;
2298 it->scrl_y += it->wd->reorder_it->h;
2299 return it->wd->reorder_it->h;
2306 _reorder_move_animator_cb(void *data)
2308 Elm_Genlist_Item *it = data;
2309 Eina_Bool down = EINA_FALSE;
2311 int y, dy = it->h / 10 * _elm_config->scale, diff;
2313 t = ((0.0 > (t = ecore_loop_time_get()-it->wd->start_time)) ? 0.0 : t);
2315 if (t <= REORDER_EFFECT_TIME) y = (1 * sin((t / REORDER_EFFECT_TIME) * (M_PI / 2)) * dy);
2318 diff = abs(it->old_scrl_y - it->scrl_y);
2319 if (diff > it->h) y = diff / 2;
2321 if (it->old_scrl_y < it->scrl_y)
2323 it->old_scrl_y += y;
2326 else if (it->old_scrl_y > it->scrl_y)
2328 it->old_scrl_y -= y;
2331 _item_position(it, it->base.view, it->scrl_x, it->old_scrl_y);
2332 _group_items_recalc(it->wd);
2334 if ((it->wd->reorder_pan_move) ||
2335 (down && it->old_scrl_y >= it->scrl_y) ||
2336 (!down && it->old_scrl_y <= it->scrl_y))
2338 it->old_scrl_y = it->scrl_y;
2339 it->move_effect_enabled = EINA_FALSE;
2340 it->wd->reorder_move_animator = NULL;
2341 return ECORE_CALLBACK_CANCEL;
2343 return ECORE_CALLBACK_RENEW;
2347 _item_position(Elm_Genlist_Item *it,
2355 evas_event_freeze(evas_object_evas_get(it->wd->obj));
2356 evas_object_resize(view, it->w, it->h);
2357 evas_object_move(view, it_x, it_y);
2358 evas_object_show(view);
2359 evas_event_thaw(evas_object_evas_get(it->wd->obj));
2360 evas_event_thaw_eval(evas_object_evas_get(it->wd->obj));
2364 _item_block_position(Item_Block *itb,
2368 Elm_Genlist_Item *it;
2369 Elm_Genlist_Item *git;
2370 Evas_Coord y = 0, ox, oy, ow, oh, cvx, cvy, cvw, cvh;
2373 evas_event_freeze(evas_object_evas_get(itb->wd->obj));
2374 evas_object_geometry_get(itb->wd->pan_smart, &ox, &oy, &ow, &oh);
2375 evas_output_viewport_get(evas_object_evas_get(itb->wd->obj), &cvx, &cvy,
2377 EINA_LIST_FOREACH(itb->items, l, it)
2379 if (it->delete_me) continue;
2380 else if (it->wd->reorder_it == it) continue;
2384 it->scrl_x = itb->x + it->x - it->wd->pan_x + ox;
2385 it->scrl_y = itb->y + it->y - it->wd->pan_y + oy;
2387 vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
2388 cvx, cvy, cvw, cvh));
2389 if (it->flags != ELM_GENLIST_ITEM_GROUP)
2391 if ((itb->realized) && (!it->realized))
2393 if (vis) _item_realize(it, in, EINA_FALSE);
2399 if (it->wd->reorder_mode)
2400 y += _get_space_for_reorder_item(it);
2401 git = it->group_item;
2404 if (git->scrl_y < oy)
2406 if ((git->scrl_y + git->h) > (it->scrl_y + it->h))
2407 git->scrl_y = (it->scrl_y + it->h) - git->h;
2408 git->want_realize = EINA_TRUE;
2410 if ((it->wd->reorder_it) && (it->old_scrl_y != it->scrl_y))
2412 if (!it->move_effect_enabled)
2414 it->move_effect_enabled = EINA_TRUE;
2415 it->wd->reorder_move_animator =
2417 _reorder_move_animator_cb, it);
2420 if (!it->move_effect_enabled)
2424 _item_position(it, it->mode_view, it->scrl_x,
2427 _item_position(it, it->base.view, it->scrl_x,
2430 it->old_scrl_y = it->scrl_y;
2435 if (!it->dragging) _item_unrealize(it, EINA_FALSE);
2442 if (vis) it->want_realize = EINA_TRUE;
2446 evas_event_thaw(evas_object_evas_get(itb->wd->obj));
2447 evas_event_thaw_eval(evas_object_evas_get(itb->wd->obj));
2451 _group_items_recalc(void *data)
2453 Widget_Data *wd = data;
2455 Elm_Genlist_Item *git;
2457 evas_event_freeze(evas_object_evas_get(wd->obj));
2458 EINA_LIST_FOREACH(wd->group_items, l, git)
2460 if (git->want_realize)
2463 _item_realize(git, 0, EINA_FALSE);
2464 evas_object_resize(git->base.view, wd->minw, git->h);
2465 evas_object_move(git->base.view, git->scrl_x, git->scrl_y);
2466 evas_object_show(git->base.view);
2467 evas_object_raise(git->base.view);
2469 else if (!git->want_realize && git->realized)
2472 _item_unrealize(git, EINA_FALSE);
2475 evas_event_thaw(evas_object_evas_get(wd->obj));
2476 evas_event_thaw_eval(evas_object_evas_get(wd->obj));
2480 _must_recalc_idler(void *data)
2482 Widget_Data *wd = data;
2483 if (wd->calc_job) ecore_job_del(wd->calc_job);
2484 wd->calc_job = ecore_job_add(_calc_job, wd);
2485 wd->must_recalc_idler = NULL;
2486 return ECORE_CALLBACK_CANCEL;
2490 _calc_job(void *data)
2492 Widget_Data *wd = data;
2493 Item_Block *itb, *chb = NULL;
2494 Evas_Coord minw = -1, minh = 0, y = 0, ow;
2497 Eina_Bool minw_change = EINA_FALSE, changed = EINA_FALSE;
2498 Eina_Bool did_must_recalc = EINA_FALSE;
2501 t0 = ecore_time_get();
2502 evas_object_geometry_get(wd->pan_smart, NULL, NULL, &ow, &wd->h);
2506 evas_event_freeze(evas_object_evas_get(wd->obj));
2507 EINA_INLIST_FOREACH(wd->blocks, itb)
2509 Eina_Bool showme = EINA_FALSE;
2512 showme = itb->showme;
2513 itb->showme = EINA_FALSE;
2516 if (itb->realized) _item_block_unrealize(itb);
2518 if ((itb->changed) || (changed) ||
2519 ((itb->must_recalc) && (!did_must_recalc)))
2521 if ((changed) || (itb->must_recalc))
2524 Elm_Genlist_Item *it;
2525 EINA_LIST_FOREACH(itb->items, l, it)
2526 if (it->mincalcd) it->mincalcd = EINA_FALSE;
2527 itb->changed = EINA_TRUE;
2528 if (itb->must_recalc) did_must_recalc = EINA_TRUE;
2529 itb->must_recalc = EINA_FALSE;
2531 if (itb->realized) _item_block_unrealize(itb);
2532 showme = _item_block_recalc(itb, in, EINA_FALSE);
2538 if (minw == -1) minw = itb->minw;
2539 else if ((!itb->must_recalc) && (minw < itb->minw))
2542 minw_change = EINA_TRUE;
2548 if ((showme) && (wd->show_item) && (!wd->show_item->queued))
2550 wd->show_item->showme = EINA_FALSE;
2552 elm_smart_scroller_region_bring_in(wd->scr,
2554 wd->show_item->block->x,
2556 wd->show_item->block->y,
2557 wd->show_item->block->w,
2560 elm_smart_scroller_child_region_show(wd->scr,
2562 wd->show_item->block->x,
2564 wd->show_item->block->y,
2565 wd->show_item->block->w,
2567 wd->show_item = NULL;
2572 EINA_INLIST_FOREACH(wd->blocks, itb)
2578 if ((chb) && (EINA_INLIST_GET(chb)->next))
2580 EINA_INLIST_FOREACH(EINA_INLIST_GET(chb)->next, itb)
2582 if (itb->realized) _item_block_unrealize(itb);
2585 wd->realminw = minw;
2586 if (minw < wd->w) minw = wd->w;
2587 if ((minw != wd->minw) || (minh != wd->minh))
2591 evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
2592 _sizing_eval(wd->obj);
2593 if ((wd->anchor_item) && (wd->anchor_item->block) && (!wd->auto_scroll_enabled))
2595 Elm_Genlist_Item *it;
2598 it = wd->anchor_item;
2599 it_y = wd->anchor_y;
2600 elm_smart_scroller_child_pos_set(wd->scr, wd->pan_x,
2601 it->block->y + it->y + it_y);
2602 wd->anchor_item = it;
2603 wd->anchor_y = it_y;
2606 t = ecore_time_get();
2607 if (did_must_recalc)
2609 if (!wd->must_recalc_idler)
2610 wd->must_recalc_idler = ecore_idler_add(_must_recalc_idler, wd);
2612 wd->calc_job = NULL;
2613 evas_object_smart_changed(wd->pan_smart);
2614 evas_event_thaw(evas_object_evas_get(wd->obj));
2615 evas_event_thaw_eval(evas_object_evas_get(wd->obj));
2619 _update_job(void *data)
2621 Widget_Data *wd = data;
2625 Eina_Bool position = EINA_FALSE, recalc = EINA_FALSE;
2627 wd->update_job = NULL;
2630 evas_event_freeze(evas_object_evas_get(wd->obj));
2631 EINA_INLIST_FOREACH(wd->blocks, itb)
2633 Evas_Coord itminw, itminh;
2634 Elm_Genlist_Item *it;
2640 _item_block_position(itb, num);
2644 recalc = EINA_FALSE;
2645 EINA_LIST_FOREACH(itb->items, l2, it)
2652 it->updateme = EINA_FALSE;
2655 _item_unrealize(it, EINA_FALSE);
2656 _item_realize(it, num, EINA_FALSE);
2657 position = EINA_TRUE;
2661 _item_realize(it, num, EINA_TRUE);
2662 _item_unrealize(it, EINA_TRUE);
2664 if ((it->minw != itminw) || (it->minh != itminh))
2669 itb->updateme = EINA_FALSE;
2672 position = EINA_TRUE;
2673 itb->changed = EINA_TRUE;
2674 _item_block_recalc(itb, num0, EINA_FALSE);
2675 _item_block_position(itb, num0);
2680 if (wd->calc_job) ecore_job_del(wd->calc_job);
2681 wd->calc_job = ecore_job_add(_calc_job, wd);
2683 evas_event_thaw(evas_object_evas_get(wd->obj));
2684 evas_event_thaw_eval(evas_object_evas_get(wd->obj));
2688 _pan_set(Evas_Object *obj,
2692 Pan *sd = evas_object_smart_data_get(obj);
2695 // Evas_Coord ow, oh;
2696 // evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2697 // ow = sd->wd->minw - ow;
2698 // if (ow < 0) ow = 0;
2699 // oh = sd->wd->minh - oh;
2700 // if (oh < 0) oh = 0;
2701 // if (x < 0) x = 0;
2702 // if (y < 0) y = 0;
2703 // if (x > ow) x = ow;
2704 // if (y > oh) y = oh;
2705 if ((x == sd->wd->pan_x) && (y == sd->wd->pan_y)) return;
2709 EINA_INLIST_FOREACH(sd->wd->blocks, itb)
2711 if ((itb->y + itb->h) > y)
2713 Elm_Genlist_Item *it;
2716 EINA_LIST_FOREACH(itb->items, l2, it)
2718 if ((itb->y + it->y) >= y)
2720 sd->wd->anchor_item = it;
2721 sd->wd->anchor_y = -(itb->y + it->y - y);
2728 if (!sd->wd->reorder_move_animator) evas_object_smart_changed(obj);
2732 _pan_get(Evas_Object *obj,
2736 Pan *sd = evas_object_smart_data_get(obj);
2738 if (x) *x = sd->wd->pan_x;
2739 if (y) *y = sd->wd->pan_y;
2743 _pan_max_get(Evas_Object *obj,
2747 Pan *sd = evas_object_smart_data_get(obj);
2750 evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2751 ow = sd->wd->minw - ow;
2753 oh = sd->wd->minh - oh;
2760 _pan_min_get(Evas_Object *obj __UNUSED__,
2769 _pan_child_size_get(Evas_Object *obj,
2773 Pan *sd = evas_object_smart_data_get(obj);
2775 if (w) *w = sd->wd->minw;
2776 if (h) *h = sd->wd->minh;
2780 _pan_add(Evas_Object *obj)
2783 Evas_Object_Smart_Clipped_Data *cd;
2786 cd = evas_object_smart_data_get(obj);
2789 sd->__clipped_data = *cd;
2791 evas_object_smart_data_set(obj, sd);
2795 _pan_del(Evas_Object *obj)
2797 Pan *sd = evas_object_smart_data_get(obj);
2802 ecore_job_del(sd->resize_job);
2803 sd->resize_job = NULL;
2809 _pan_resize_job(void *data)
2812 _sizing_eval(sd->wd->obj);
2813 sd->resize_job = NULL;
2817 _pan_resize(Evas_Object *obj,
2821 Pan *sd = evas_object_smart_data_get(obj);
2824 evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2825 if ((ow == w) && (oh == h)) return;
2826 if ((sd->wd->height_for_width) && (ow != w))
2828 if (sd->resize_job) ecore_job_del(sd->resize_job);
2829 sd->resize_job = ecore_job_add(_pan_resize_job, sd);
2831 if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
2832 sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
2836 _pan_calculate(Evas_Object *obj)
2838 Pan *sd = evas_object_smart_data_get(obj);
2840 Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
2842 Elm_Genlist_Item *git;
2845 evas_event_freeze(evas_object_evas_get(obj));
2846 evas_object_geometry_get(obj, &ox, &oy, &ow, &oh);
2847 evas_output_viewport_get(evas_object_evas_get(obj), &cvx, &cvy, &cvw, &cvh);
2848 EINA_LIST_FOREACH(sd->wd->group_items, l, git)
2850 git->want_realize = EINA_FALSE;
2852 EINA_INLIST_FOREACH(sd->wd->blocks, itb)
2854 itb->w = sd->wd->minw;
2855 if (ELM_RECTS_INTERSECT(itb->x - sd->wd->pan_x + ox,
2856 itb->y - sd->wd->pan_y + oy,
2858 cvx, cvy, cvw, cvh))
2860 if ((!itb->realized) || (itb->changed))
2861 _item_block_realize(itb);
2862 _item_block_position(itb, in);
2866 if (itb->realized) _item_block_unrealize(itb);
2870 if ((!sd->wd->reorder_it) || (sd->wd->reorder_pan_move))
2871 _group_items_recalc(sd->wd);
2872 if ((sd->wd->reorder_mode) && (sd->wd->reorder_it))
2874 if (sd->wd->pan_y != sd->wd->old_pan_y)
2875 sd->wd->reorder_pan_move = EINA_TRUE;
2876 else sd->wd->reorder_pan_move = EINA_FALSE;
2877 evas_object_raise(sd->wd->reorder_it->base.view);
2878 sd->wd->old_pan_y = sd->wd->pan_y;
2879 sd->wd->start_time = ecore_loop_time_get();
2881 _item_auto_scroll(sd->wd);
2882 evas_event_thaw(evas_object_evas_get(obj));
2883 evas_event_thaw_eval(evas_object_evas_get(obj));
2887 _pan_move(Evas_Object *obj,
2888 Evas_Coord x __UNUSED__,
2889 Evas_Coord y __UNUSED__)
2891 Pan *sd = evas_object_smart_data_get(obj);
2893 if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
2894 sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
2898 _hold_on(void *data __UNUSED__,
2900 void *event_info __UNUSED__)
2902 Widget_Data *wd = elm_widget_data_get(obj);
2904 elm_smart_scroller_hold_set(wd->scr, 1);
2908 _hold_off(void *data __UNUSED__,
2910 void *event_info __UNUSED__)
2912 Widget_Data *wd = elm_widget_data_get(obj);
2914 elm_smart_scroller_hold_set(wd->scr, 0);
2918 _freeze_on(void *data __UNUSED__,
2920 void *event_info __UNUSED__)
2922 Widget_Data *wd = elm_widget_data_get(obj);
2924 elm_smart_scroller_freeze_set(wd->scr, 1);
2928 _freeze_off(void *data __UNUSED__,
2930 void *event_info __UNUSED__)
2932 Widget_Data *wd = elm_widget_data_get(obj);
2934 elm_smart_scroller_freeze_set(wd->scr, 0);
2938 _scroll_edge_left(void *data,
2939 Evas_Object *scr __UNUSED__,
2940 void *event_info __UNUSED__)
2942 Evas_Object *obj = data;
2943 evas_object_smart_callback_call(obj, SIG_SCROLL_EDGE_LEFT, NULL);
2947 _scroll_edge_right(void *data,
2948 Evas_Object *scr __UNUSED__,
2949 void *event_info __UNUSED__)
2951 Evas_Object *obj = data;
2952 evas_object_smart_callback_call(obj, SIG_SCROLL_EDGE_RIGHT, NULL);
2956 _scroll_edge_top(void *data,
2957 Evas_Object *scr __UNUSED__,
2958 void *event_info __UNUSED__)
2960 Evas_Object *obj = data;
2961 evas_object_smart_callback_call(obj, SIG_SCROLL_EDGE_TOP, NULL);
2965 _scroll_edge_bottom(void *data,
2966 Evas_Object *scr __UNUSED__,
2967 void *event_info __UNUSED__)
2969 Evas_Object *obj = data;
2970 evas_object_smart_callback_call(obj, SIG_SCROLL_EDGE_BOTTOM, NULL);
2974 _mode_item_realize(Elm_Genlist_Item *it)
2978 if ((it->mode_view) || (it->delete_me)) return;
2980 evas_event_freeze(evas_object_evas_get(it->wd->obj));
2981 it->mode_view = edje_object_add(evas_object_evas_get(it->base.widget));
2982 edje_object_scale_set(it->mode_view,
2983 elm_widget_scale_get(it->base.widget) *
2984 _elm_config->scale);
2985 evas_object_smart_member_add(it->mode_view, it->wd->pan_smart);
2986 elm_widget_sub_object_add(it->base.widget, it->mode_view);
2988 strncpy(buf, "item", sizeof(buf));
2989 if (it->wd->compress)
2990 strncat(buf, "_compress", sizeof(buf) - strlen(buf));
2992 if (it->order_num_in & 0x1) strncat(buf, "_odd", sizeof(buf) - strlen(buf));
2993 strncat(buf, "/", sizeof(buf) - strlen(buf));
2994 strncat(buf, it->itc->mode_item_style, sizeof(buf) - strlen(buf));
2996 _elm_theme_object_set(it->base.widget, it->mode_view, "genlist", buf,
2997 elm_widget_style_get(it->base.widget));
2998 edje_object_mirrored_set(it->mode_view,
2999 elm_widget_mirrored_get(it->base.widget));
3001 /* signal callback add */
3002 evas_object_event_callback_add(it->mode_view, EVAS_CALLBACK_MOUSE_DOWN,
3004 evas_object_event_callback_add(it->mode_view, EVAS_CALLBACK_MOUSE_UP,
3006 evas_object_event_callback_add(it->mode_view, EVAS_CALLBACK_MOUSE_MOVE,
3009 /* label_get, icon_get, state_get */
3010 /* FIXME: If you see that assert, please notify us and we
3011 will clean our mess */
3012 assert(eina_list_count(it->mode_icon_objs) == 0);
3014 _item_label_realize(it, it->mode_view, &it->mode_labels);
3015 it->mode_icon_objs = _item_icon_realize(it,
3018 _item_state_realize(it, it->mode_view, &it->mode_states);
3020 edje_object_part_swallow(it->mode_view,
3021 edje_object_data_get(it->mode_view, "mode_part"),
3024 it->want_unrealize = EINA_FALSE;
3025 evas_event_thaw(evas_object_evas_get(it->wd->obj));
3026 evas_event_thaw_eval(evas_object_evas_get(it->wd->obj));
3030 _mode_item_unrealize(Elm_Genlist_Item *it)
3032 Widget_Data *wd = it->wd;
3034 if (!it->mode_view) return;
3036 evas_event_freeze(evas_object_evas_get(it->wd->obj));
3037 elm_widget_stringlist_free(it->mode_labels);
3038 it->mode_labels = NULL;
3039 elm_widget_stringlist_free(it->mode_icons);
3040 it->mode_icons = NULL;
3041 elm_widget_stringlist_free(it->mode_states);
3043 EINA_LIST_FREE(it->mode_icon_objs, icon)
3044 evas_object_del(icon);
3046 edje_object_part_unswallow(it->mode_view, it->base.view);
3047 evas_object_smart_member_add(it->base.view, wd->pan_smart);
3048 evas_object_del(it->mode_view);
3049 it->mode_view = NULL;
3051 if (wd->mode_item == it)
3052 wd->mode_item = NULL;
3053 evas_event_thaw(evas_object_evas_get(it->wd->obj));
3054 evas_event_thaw_eval(evas_object_evas_get(it->wd->obj));
3058 _item_mode_set(Elm_Genlist_Item *it)
3061 Widget_Data *wd = it->wd;
3066 it->nocache = EINA_TRUE;
3068 if (wd->scr_hold_timer)
3070 ecore_timer_del(wd->scr_hold_timer);
3071 wd->scr_hold_timer = NULL;
3073 elm_smart_scroller_hold_set(wd->scr, EINA_TRUE);
3074 wd->scr_hold_timer = ecore_timer_add(0.1, _scr_hold_timer_cb, wd);
3076 evas_event_freeze(evas_object_evas_get(it->wd->obj));
3077 _mode_item_realize(it);
3078 _item_position(it, it->mode_view, it->scrl_x, it->scrl_y);
3079 evas_event_thaw(evas_object_evas_get(it->wd->obj));
3080 evas_event_thaw_eval(evas_object_evas_get(it->wd->obj));
3082 snprintf(buf, sizeof(buf), "elm,state,%s,active", wd->mode_type);
3083 edje_object_signal_emit(it->mode_view, buf, "elm");
3087 _item_mode_unset(Widget_Data *wd)
3090 if (!wd->mode_item) return;
3091 char buf[1024], buf2[1024];
3092 Elm_Genlist_Item *it;
3095 it->nocache = EINA_TRUE;
3097 snprintf(buf, sizeof(buf), "elm,state,%s,passive", wd->mode_type);
3098 snprintf(buf2, sizeof(buf2), "elm,state,%s,passive,finished", wd->mode_type);
3100 edje_object_signal_emit(it->mode_view, buf, "elm");
3101 edje_object_signal_callback_add(it->mode_view, buf2, "elm", _mode_finished_signal_cb, it);
3103 wd->mode_item = NULL;
3107 _item_auto_scroll(Widget_Data *wd)
3110 Elm_Genlist_Item *it;
3112 Evas_Coord ox, oy, ow, oh;
3114 if ((wd->expanded_item) && (wd->auto_scroll_enabled))
3116 evas_object_geometry_get(wd->obj, &ox, &oy, &ow, &oh);
3117 if (wd->expanded_item->scrl_y > (oh + oy) / 2)
3119 EINA_LIST_FOREACH(wd->expanded_item->items, l, it)
3120 elm_genlist_item_bring_in(it);
3122 wd->auto_scroll_enabled = EINA_FALSE;
3127 * Add a new Genlist object
3129 * @param parent The parent object
3130 * @return The new object or NULL if it cannot be created
3135 elm_genlist_add(Evas_Object *parent)
3140 Evas_Coord minw, minh;
3141 static Evas_Smart *smart = NULL;
3145 static Evas_Smart_Class sc;
3147 evas_object_smart_clipped_smart_set(&_pan_sc);
3149 sc.name = "elm_genlist_pan";
3150 sc.version = EVAS_SMART_CLASS_VERSION;
3153 sc.resize = _pan_resize;
3154 sc.move = _pan_move;
3155 sc.calculate = _pan_calculate;
3156 if (!(smart = evas_smart_class_new(&sc))) return NULL;
3159 ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
3161 ELM_SET_WIDTYPE(widtype, "genlist");
3162 elm_widget_type_set(obj, "genlist");
3163 elm_widget_sub_object_add(parent, obj);
3164 elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
3165 elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
3166 elm_widget_data_set(obj, wd);
3167 elm_widget_del_hook_set(obj, _del_hook);
3168 elm_widget_del_pre_hook_set(obj, _del_pre_hook);
3169 elm_widget_theme_hook_set(obj, _theme_hook);
3170 elm_widget_can_focus_set(obj, EINA_TRUE);
3171 elm_widget_event_hook_set(obj, _event_hook);
3172 elm_widget_on_show_region_hook_set(obj, _show_region_hook, obj);
3174 wd->scr = elm_smart_scroller_add(e);
3175 elm_smart_scroller_widget_set(wd->scr, obj);
3176 elm_smart_scroller_object_theme_set(obj, wd->scr, "genlist", "base",
3177 elm_widget_style_get(obj));
3178 elm_smart_scroller_bounce_allow_set(wd->scr, EINA_FALSE,
3179 _elm_config->thumbscroll_bounce_enable);
3180 elm_widget_resize_object_set(obj, wd->scr);
3182 evas_object_smart_callback_add(wd->scr, "edge,left", _scroll_edge_left, obj);
3183 evas_object_smart_callback_add(wd->scr, "edge,right", _scroll_edge_right,
3185 evas_object_smart_callback_add(wd->scr, "edge,top", _scroll_edge_top, obj);
3186 evas_object_smart_callback_add(wd->scr, "edge,bottom", _scroll_edge_bottom,
3190 wd->mode = ELM_LIST_SCROLL;
3191 wd->max_items_per_block = MAX_ITEMS_PER_BLOCK;
3192 wd->item_cache_max = wd->max_items_per_block * 2;
3193 wd->longpress_timeout = _elm_config->longpress_timeout;
3195 evas_object_smart_callback_add(obj, "scroll-hold-on", _hold_on, obj);
3196 evas_object_smart_callback_add(obj, "scroll-hold-off", _hold_off, obj);
3197 evas_object_smart_callback_add(obj, "scroll-freeze-on", _freeze_on, obj);
3198 evas_object_smart_callback_add(obj, "scroll-freeze-off", _freeze_off, obj);
3200 wd->pan_smart = evas_object_smart_add(e, smart);
3201 wd->pan = evas_object_smart_data_get(wd->pan_smart);
3204 elm_smart_scroller_extern_pan_set(wd->scr, wd->pan_smart,
3205 _pan_set, _pan_get, _pan_max_get,
3206 _pan_min_get, _pan_child_size_get);
3208 edje_object_size_min_calc(elm_smart_scroller_edje_object_get(wd->scr),
3210 evas_object_size_hint_min_set(obj, minw, minh);
3212 evas_object_smart_callbacks_descriptions_set(obj, _signals);
3214 _mirrored_set(obj, elm_widget_mirrored_get(obj));
3219 static Elm_Genlist_Item *
3220 _item_new(Widget_Data *wd,
3221 const Elm_Genlist_Item_Class *itc,
3223 Elm_Genlist_Item *parent,
3224 Elm_Genlist_Item_Flags flags,
3226 const void *func_data)
3228 Elm_Genlist_Item *it;
3230 it = elm_widget_item_new(wd->obj, Elm_Genlist_Item);
3231 if (!it) return NULL;
3234 it->base.data = data;
3235 it->parent = parent;
3237 it->func.func = func;
3238 it->func.data = func_data;
3239 it->mouse_cursor = NULL;
3240 it->expanded_depth = 0;
3245 _item_block_add(Widget_Data *wd,
3246 Elm_Genlist_Item *it)
3248 Item_Block *itb = NULL;
3255 itb = calloc(1, sizeof(Item_Block));
3258 if (!it->rel->block)
3261 eina_inlist_append(wd->blocks, EINA_INLIST_GET(itb));
3262 itb->items = eina_list_append(itb->items, it);
3268 wd->blocks = eina_inlist_prepend_relative
3269 (wd->blocks, EINA_INLIST_GET(itb),
3270 EINA_INLIST_GET(it->rel->block));
3272 eina_list_prepend_relative(itb->items, it, it->rel);
3276 wd->blocks = eina_inlist_append_relative
3277 (wd->blocks, EINA_INLIST_GET(itb),
3278 EINA_INLIST_GET(it->rel->block));
3280 eina_list_append_relative(itb->items, it, it->rel);
3290 itb = (Item_Block *)(wd->blocks);
3291 if (itb->count >= wd->max_items_per_block)
3293 itb = calloc(1, sizeof(Item_Block));
3297 eina_inlist_prepend(wd->blocks,
3298 EINA_INLIST_GET(itb));
3303 itb = calloc(1, sizeof(Item_Block));
3307 eina_inlist_prepend(wd->blocks, EINA_INLIST_GET(itb));
3309 itb->items = eina_list_prepend(itb->items, it);
3315 itb = (Item_Block *)(wd->blocks->last);
3316 if (itb->count >= wd->max_items_per_block)
3318 itb = calloc(1, sizeof(Item_Block));
3322 eina_inlist_append(wd->blocks,
3323 EINA_INLIST_GET(itb));
3328 itb = calloc(1, sizeof(Item_Block));
3332 eina_inlist_append(wd->blocks, EINA_INLIST_GET(itb));
3334 itb->items = eina_list_append(itb->items, it);
3340 itb = it->rel->block;
3341 if (!itb) goto newblock;
3343 itb->items = eina_list_prepend_relative(itb->items, it, it->rel);
3345 itb->items = eina_list_append_relative(itb->items, it, it->rel);
3348 itb->changed = EINA_TRUE;
3350 if (itb->wd->calc_job) ecore_job_del(itb->wd->calc_job);
3351 itb->wd->calc_job = ecore_job_add(_calc_job, itb->wd);
3354 it->rel->relcount--;
3355 if ((it->rel->delete_me) && (!it->rel->relcount))
3359 if (itb->count > itb->wd->max_items_per_block)
3363 Elm_Genlist_Item *it2;
3365 newc = itb->count / 2;
3366 itb2 = calloc(1, sizeof(Item_Block));
3370 eina_inlist_append_relative(wd->blocks, EINA_INLIST_GET(itb2),
3371 EINA_INLIST_GET(itb));
3372 itb2->changed = EINA_TRUE;
3373 while ((itb->count > newc) && (itb->items))
3377 l = eina_list_last(itb->items);
3379 itb->items = eina_list_remove_list(itb->items, l);
3382 itb2->items = eina_list_prepend(itb2->items, it2);
3390 _queue_process(Widget_Data *wd)
3393 Eina_Bool showme = EINA_FALSE;
3396 t0 = ecore_time_get();
3397 //evas_event_freeze(evas_object_evas_get(wd->obj));
3398 for (n = 0; (wd->queue) && (n < 128); n++)
3400 Elm_Genlist_Item *it;
3402 it = wd->queue->data;
3403 wd->queue = eina_list_remove_list(wd->queue, wd->queue);
3404 it->queued = EINA_FALSE;
3405 _item_block_add(wd, it);
3406 t = ecore_time_get();
3407 if (it->block->changed)
3409 showme = _item_block_recalc(it->block, it->block->num, EINA_TRUE);
3410 it->block->changed = 0;
3412 if (showme) it->block->showme = EINA_TRUE;
3413 if (eina_inlist_count(wd->blocks) > 1)
3415 if ((t - t0) > (ecore_animator_frametime_get())) break;
3418 //evas_event_thaw(evas_object_evas_get(wd->obj));
3419 //evas_event_thaw_eval(evas_object_evas_get(wd->obj));
3424 _idle_process(void *data, Eina_Bool *wakeup)
3426 Widget_Data *wd = data;
3429 //static double q_start = 0.0;
3430 //if (q_start == 0.0) q_start = ecore_time_get();
3432 if (_queue_process(wd) > 0) *wakeup = EINA_TRUE;
3436 //printf("PROCESS TIME: %3.3f\n", ecore_time_get() - q_start);
3438 return ECORE_CALLBACK_CANCEL;
3440 return ECORE_CALLBACK_RENEW;
3444 _item_idle_enterer(void *data)
3446 Widget_Data *wd = data;
3447 Eina_Bool wakeup = EINA_FALSE;
3448 Eina_Bool ok = _idle_process(data, &wakeup);
3453 if (wd->calc_job) ecore_job_del(wd->calc_job);
3454 wd->calc_job = ecore_job_add(_calc_job, wd);
3456 if (ok == ECORE_CALLBACK_CANCEL) wd->queue_idle_enterer = NULL;
3461 _item_queue(Widget_Data *wd,
3462 Elm_Genlist_Item *it)
3464 if (it->queued) return;
3465 it->queued = EINA_TRUE;
3466 wd->queue = eina_list_append(wd->queue, it);
3467 // FIXME: why does a freeze then thaw here cause some genlist
3468 // elm_genlist_item_append() to be much much slower?
3469 // evas_event_freeze(evas_object_evas_get(wd->obj));
3470 while ((wd->queue) && ((!wd->blocks) || (!wd->blocks->next)))
3472 if (wd->queue_idle_enterer)
3474 ecore_idle_enterer_del(wd->queue_idle_enterer);
3475 wd->queue_idle_enterer = NULL;
3479 // evas_event_thaw(evas_object_evas_get(wd->obj));
3480 // evas_event_thaw_eval(evas_object_evas_get(wd->obj));
3481 if (!wd->queue_idle_enterer)
3482 wd->queue_idle_enterer = ecore_idle_enterer_add(_item_idle_enterer, wd);
3486 _elm_genlist_item_compare_data(const void *data, const void *data1)
3488 const Elm_Genlist_Item *item = data;
3489 const Elm_Genlist_Item *item1 = data1;
3491 return _elm_genlist_item_compare_data_cb(item->base.data, item1->base.data);
3495 _elm_genlist_item_compare(const void *data, const void *data1)
3497 Elm_Genlist_Item *item, *item1;
3498 item = ELM_GENLIST_ITEM_FROM_INLIST(data);
3499 item1 = ELM_GENLIST_ITEM_FROM_INLIST(data1);
3500 return _elm_genlist_item_compare_cb(item, item1);
3504 _item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after)
3509 it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
3510 _item_block_del(it);
3512 it->wd->items = eina_inlist_append_relative(it->wd->items, EINA_INLIST_GET(it), EINA_INLIST_GET(after));
3514 it->rel->relcount++;
3515 it->before = EINA_FALSE;
3516 if (after->group_item) it->group_item = after->group_item;
3517 _item_queue(it->wd, it);
3519 // TODO: change this to smart callback
3520 if (it->itc->func.moved)
3521 it->itc->func.moved(it->base.widget, it, after, EINA_TRUE);
3525 _item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before)
3528 if (!before) return;
3530 it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
3531 _item_block_del(it);
3532 it->wd->items = eina_inlist_prepend_relative(it->wd->items, EINA_INLIST_GET(it), EINA_INLIST_GET(before));
3534 it->rel->relcount++;
3535 it->before = EINA_TRUE;
3536 if (before->group_item) it->group_item = before->group_item;
3537 _item_queue(it->wd, it);
3539 // TODO: change this to smart callback
3540 if (it->itc->func.moved)
3541 it->itc->func.moved(it->base.widget, it, before, EINA_FALSE);
3545 * Append item to the end of the genlist
3547 * This appends the given item to the end of the list or the end of
3548 * the children if the parent is given.
3550 * @param obj The genlist object
3551 * @param itc The item class for the item
3552 * @param data The item data
3553 * @param parent The parent item, or NULL if none
3554 * @param flags Item flags
3555 * @param func Convenience function called when item selected
3556 * @param func_data Data passed to @p func above.
3557 * @return A handle to the item added or NULL if not possible
3561 EAPI Elm_Genlist_Item *
3562 elm_genlist_item_append(Evas_Object *obj,
3563 const Elm_Genlist_Item_Class *itc,
3565 Elm_Genlist_Item *parent,
3566 Elm_Genlist_Item_Flags flags,
3568 const void *func_data)
3570 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3571 Widget_Data *wd = elm_widget_data_get(obj);
3572 if (!wd) return NULL;
3573 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3575 if (!it) return NULL;
3578 if (flags & ELM_GENLIST_ITEM_GROUP)
3579 wd->group_items = eina_list_append(wd->group_items, it);
3580 wd->items = eina_inlist_append(wd->items, EINA_INLIST_GET(it));
3585 Elm_Genlist_Item *it2 = NULL;
3586 Eina_List *ll = eina_list_last(it->parent->items);
3587 if (ll) it2 = ll->data;
3588 it->parent->items = eina_list_append(it->parent->items, it);
3589 if (!it2) it2 = it->parent;
3591 eina_inlist_append_relative(wd->items, EINA_INLIST_GET(it),
3592 EINA_INLIST_GET(it2));
3594 it->rel->relcount++;
3596 if (it->parent->flags & ELM_GENLIST_ITEM_GROUP)
3597 it->group_item = parent;
3598 else if (it->parent->group_item)
3599 it->group_item = it->parent->group_item;
3601 it->before = EINA_FALSE;
3602 _item_queue(wd, it);
3607 * Prepend item at start of the genlist
3609 * This adds an item to the beginning of the list or beginning of the
3610 * children of the parent if given.
3612 * @param obj The genlist object
3613 * @param itc The item class for the item
3614 * @param data The item data
3615 * @param parent The parent item, or NULL if none
3616 * @param flags Item flags
3617 * @param func Convenience function called when item selected
3618 * @param func_data Data passed to @p func above.
3619 * @return A handle to the item added or NULL if not possible
3623 EAPI Elm_Genlist_Item *
3624 elm_genlist_item_prepend(Evas_Object *obj,
3625 const Elm_Genlist_Item_Class *itc,
3627 Elm_Genlist_Item *parent,
3628 Elm_Genlist_Item_Flags flags,
3630 const void *func_data)
3632 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3633 Widget_Data *wd = elm_widget_data_get(obj);
3634 if (!wd) return NULL;
3635 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3637 if (!it) return NULL;
3640 if (flags & ELM_GENLIST_ITEM_GROUP)
3641 wd->group_items = eina_list_prepend(wd->group_items, it);
3642 wd->items = eina_inlist_prepend(wd->items, EINA_INLIST_GET(it));
3647 Elm_Genlist_Item *it2 = NULL;
3648 Eina_List *ll = it->parent->items;
3649 if (ll) it2 = ll->data;
3650 it->parent->items = eina_list_prepend(it->parent->items, it);
3651 if (!it2) it2 = it->parent;
3653 eina_inlist_prepend_relative(wd->items, EINA_INLIST_GET(it),
3654 EINA_INLIST_GET(it2));
3656 it->rel->relcount++;
3658 it->before = EINA_TRUE;
3659 _item_queue(wd, it);
3664 * Insert item before another in the genlist
3666 * This inserts an item before another in the list. It will be in the
3667 * same tree level or group as the item it is inseted before.
3669 * @param obj The genlist object
3670 * @param itc The item class for the item
3671 * @param data The item data
3672 * @param before The item to insert before
3673 * @param flags Item flags
3674 * @param func Convenience function called when item selected
3675 * @param func_data Data passed to @p func above.
3676 * @return A handle to the item added or NULL if not possible
3680 EAPI Elm_Genlist_Item *
3681 elm_genlist_item_insert_before(Evas_Object *obj,
3682 const Elm_Genlist_Item_Class *itc,
3684 Elm_Genlist_Item *parent,
3685 Elm_Genlist_Item *before,
3686 Elm_Genlist_Item_Flags flags,
3688 const void *func_data)
3690 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3691 EINA_SAFETY_ON_NULL_RETURN_VAL(before, NULL);
3692 Widget_Data *wd = elm_widget_data_get(obj);
3693 if (!wd) return NULL;
3694 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3696 if (!it) return NULL;
3699 it->parent->items = eina_list_prepend_relative(it->parent->items, it,
3702 wd->items = eina_inlist_prepend_relative(wd->items, EINA_INLIST_GET(it),
3703 EINA_INLIST_GET(before));
3705 it->rel->relcount++;
3706 it->before = EINA_TRUE;
3707 _item_queue(wd, it);
3711 EAPI Elm_Genlist_Item *
3712 elm_genlist_item_direct_sorted_insert(Evas_Object *obj,
3713 const Elm_Genlist_Item_Class *itc,
3715 Elm_Genlist_Item *parent,
3716 Elm_Genlist_Item_Flags flags,
3717 Eina_Compare_Cb comp,
3719 const void *func_data)
3721 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3722 Widget_Data *wd = elm_widget_data_get(obj);
3723 if (!wd) return NULL;
3724 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3726 if (!it) return NULL;
3728 _elm_genlist_item_compare_cb = comp;
3733 eina_list_sorted_insert(it->parent->items, _elm_genlist_item_compare, it);
3735 wd->items = eina_inlist_sorted_insert(wd->items, EINA_INLIST_GET(it),
3736 _elm_genlist_item_compare);
3737 if (EINA_INLIST_GET(it)->next)
3739 it->rel = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3740 it->rel->relcount++;
3741 it->before = EINA_TRUE;
3743 else if (EINA_INLIST_GET(it)->prev)
3745 it->rel = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3746 it->rel->relcount++;
3747 it->before = EINA_FALSE;
3749 _item_queue(wd, it);
3755 * Insert a new item into the sorted genlist object
3757 * @param obj The genlist object
3758 * @param itc The item class for the item
3759 * @param data The item data
3760 * @param parent The parent item, or NULL if none
3761 * @param flags Item flags
3762 * @param comp The function called for the sort
3763 * @param func Convenience function called when item selected
3764 * @param func_data Data passed to @p func above.
3765 * @return A handle to the item added or NULL if not possible
3769 EAPI Elm_Genlist_Item *
3770 elm_genlist_item_sorted_insert(Evas_Object *obj,
3771 const Elm_Genlist_Item_Class *itc,
3773 Elm_Genlist_Item *parent,
3774 Elm_Genlist_Item_Flags flags,
3775 Eina_Compare_Cb comp,
3777 const void *func_data)
3779 _elm_genlist_item_compare_data_cb = comp;
3781 return elm_genlist_item_direct_sorted_insert(obj, itc, data, parent, flags,
3782 _elm_genlist_item_compare_data, func, func_data);
3786 * Insert an item after another in the genlst
3788 * This inserts an item after another in the list. It will be in the
3789 * same tree level or group as the item it is inseted after.
3791 * @param obj The genlist object
3792 * @param itc The item class for the item
3793 * @param data The item data
3794 * @param after The item to insert after
3795 * @param flags Item flags
3796 * @param func Convenience function called when item selected
3797 * @param func_data Data passed to @p func above.
3798 * @return A handle to the item added or NULL if not possible
3802 EAPI Elm_Genlist_Item *
3803 elm_genlist_item_insert_after(Evas_Object *obj,
3804 const Elm_Genlist_Item_Class *itc,
3806 Elm_Genlist_Item *parent,
3807 Elm_Genlist_Item *after,
3808 Elm_Genlist_Item_Flags flags,
3810 const void *func_data)
3812 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3813 EINA_SAFETY_ON_NULL_RETURN_VAL(after, NULL);
3814 Widget_Data *wd = elm_widget_data_get(obj);
3815 if (!wd) return NULL;
3816 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3818 if (!it) return NULL;
3819 /* It make no sense to insert after in an empty list with after != NULL, something really bad is happening in your app. */
3820 EINA_SAFETY_ON_NULL_RETURN_VAL(wd->items, NULL);
3822 wd->items = eina_inlist_append_relative(wd->items, EINA_INLIST_GET(it),
3823 EINA_INLIST_GET(after));
3826 it->parent->items = eina_list_append_relative(it->parent->items, it,
3830 it->rel->relcount++;
3831 it->before = EINA_FALSE;
3832 _item_queue(wd, it);
3839 * This clears all items in the list, leaving it empty.
3841 * @param obj The genlist object
3846 elm_genlist_clear(Evas_Object *obj)
3848 ELM_CHECK_WIDTYPE(obj, widtype);
3849 Widget_Data *wd = elm_widget_data_get(obj);
3851 if (wd->walking > 0)
3853 Elm_Genlist_Item *it;
3855 wd->clear_me = EINA_TRUE;
3856 EINA_INLIST_FOREACH(wd->items, it)
3858 it->delete_me = EINA_TRUE;
3862 evas_event_freeze(evas_object_evas_get(wd->obj));
3865 Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
3867 if (wd->anchor_item == it)
3869 wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3870 if (!wd->anchor_item)
3872 ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3874 wd->items = eina_inlist_remove(wd->items, wd->items);
3875 if (it->flags & ELM_GENLIST_ITEM_GROUP)
3876 it->wd->group_items = eina_list_remove(it->wd->group_items, it);
3877 elm_widget_item_pre_notify_del(it);
3878 if (it->realized) _item_unrealize(it, EINA_FALSE);
3879 if (((wd->clear_me) || (!it->delete_me)) && (it->itc->func.del))
3880 it->itc->func.del((void *)it->base.data, it->base.widget);
3881 if (it->long_timer) ecore_timer_del(it->long_timer);
3882 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
3883 elm_widget_item_del(it);
3885 wd->clear_me = EINA_FALSE;
3886 wd->anchor_item = NULL;
3889 Item_Block *itb = (Item_Block *)(wd->blocks);
3891 wd->blocks = eina_inlist_remove(wd->blocks, wd->blocks);
3892 if (itb->items) eina_list_free(itb->items);
3897 ecore_job_del(wd->calc_job);
3898 wd->calc_job = NULL;
3900 if (wd->queue_idle_enterer)
3902 ecore_idle_enterer_del(wd->queue_idle_enterer);
3903 wd->queue_idle_enterer = NULL;
3905 if (wd->must_recalc_idler)
3907 ecore_idler_del(wd->must_recalc_idler);
3908 wd->must_recalc_idler = NULL;
3912 eina_list_free(wd->queue);
3917 eina_list_free(wd->selected);
3918 wd->selected = NULL;
3920 if (wd->reorder_move_animator)
3922 ecore_animator_del(wd->reorder_move_animator);
3923 wd->reorder_move_animator = NULL;
3925 wd->show_item = NULL;
3933 evas_object_size_hint_min_set(wd->pan_smart, wd->minw, wd->minh);
3934 evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
3937 evas_event_thaw(evas_object_evas_get(wd->obj));
3938 evas_event_thaw_eval(evas_object_evas_get(wd->obj));
3942 * Enable or disable multi-select in the genlist
3944 * This enables (EINA_TRUE) or disables (EINA_FALSE) multi-select in
3945 * the list. This allows more than 1 item to be selected.
3947 * @param obj The genlist object
3948 * @param multi Multi-select enable/disable
3953 elm_genlist_multi_select_set(Evas_Object *obj,
3956 ELM_CHECK_WIDTYPE(obj, widtype);
3957 Widget_Data *wd = elm_widget_data_get(obj);
3963 * Gets if multi-select in genlist is enable or disable
3965 * @param obj The genlist object
3966 * @return Multi-select enable/disable
3967 * (EINA_TRUE = enabled/EINA_FALSE = disabled)
3972 elm_genlist_multi_select_get(const Evas_Object *obj)
3974 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3975 Widget_Data *wd = elm_widget_data_get(obj);
3976 if (!wd) return EINA_FALSE;
3981 * Get the selectd item in the genlist
3983 * This gets the selected item in the list (if multi-select is enabled
3984 * only the first item in the list is selected - which is not very
3985 * useful, so see elm_genlist_selected_items_get() for when
3986 * multi-select is used).
3988 * If no item is selected, NULL is returned.
3990 * @param obj The genlist object
3991 * @return The selected item, or NULL if none.
3995 EAPI Elm_Genlist_Item *
3996 elm_genlist_selected_item_get(const Evas_Object *obj)
3998 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3999 Widget_Data *wd = elm_widget_data_get(obj);
4000 if (!wd) return NULL;
4001 if (wd->selected) return wd->selected->data;
4006 * Get a list of selected items in the genlist
4008 * This returns a list of the selected items. This list pointer is
4009 * only valid so long as no items are selected or unselected (or
4010 * unselected implicitly by deletion). The list contains
4011 * Elm_Genlist_Item pointers.
4013 * @param obj The genlist object
4014 * @return The list of selected items, nor NULL if none are selected.
4018 EAPI const Eina_List *
4019 elm_genlist_selected_items_get(const Evas_Object *obj)
4021 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4022 Widget_Data *wd = elm_widget_data_get(obj);
4023 if (!wd) return NULL;
4024 return wd->selected;
4028 * Get a list of realized items in genlist
4030 * This returns a list of the realized items in the genlist. The list
4031 * contains Elm_Genlist_Item pointers. The list must be freed by the
4032 * caller when done with eina_list_free(). The item pointers in the
4033 * list are only valid so long as those items are not deleted or the
4034 * genlist is not deleted.
4036 * @param obj The genlist object
4037 * @return The list of realized items, nor NULL if none are realized.
4042 elm_genlist_realized_items_get(const Evas_Object *obj)
4044 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4045 Widget_Data *wd = elm_widget_data_get(obj);
4046 Eina_List *list = NULL;
4048 Eina_Bool done = EINA_FALSE;
4049 if (!wd) return NULL;
4050 EINA_INLIST_FOREACH(wd->blocks, itb)
4055 Elm_Genlist_Item *it;
4058 EINA_LIST_FOREACH(itb->items, l, it)
4060 if (it->realized) list = eina_list_append(list, it);
4072 * Get the item that is at the x, y canvas coords
4074 * This returns the item at the given coordinates (which are canvas
4075 * relative not object-relative). If an item is at that coordinate,
4076 * that item handle is returned, and if @p posret is not NULL, the
4077 * integer pointed to is set to a value of -1, 0 or 1, depending if
4078 * the coordinate is on the upper portion of that item (-1), on the
4079 * middle section (0) or on the lower part (1). If NULL is returned as
4080 * an item (no item found there), then posret may indicate -1 or 1
4081 * based if the coordinate is above or below all items respectively in
4084 * @param it The item
4085 * @param x The input x coordinate
4086 * @param y The input y coordinate
4087 * @param posret The position relative to the item returned here
4088 * @return The item at the coordinates or NULL if none
4092 EAPI Elm_Genlist_Item *
4093 elm_genlist_at_xy_item_get(const Evas_Object *obj,
4098 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4099 Widget_Data *wd = elm_widget_data_get(obj);
4100 Evas_Coord ox, oy, ow, oh;
4103 if (!wd) return NULL;
4104 evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
4106 EINA_INLIST_FOREACH(wd->blocks, itb)
4109 Elm_Genlist_Item *it;
4111 if (!ELM_RECTS_INTERSECT(ox + itb->x - itb->wd->pan_x,
4112 oy + itb->y - itb->wd->pan_y,
4113 itb->w, itb->h, x, y, 1, 1))
4115 EINA_LIST_FOREACH(itb->items, l, it)
4117 Evas_Coord itx, ity;
4119 itx = ox + itb->x + it->x - itb->wd->pan_x;
4120 ity = oy + itb->y + it->y - itb->wd->pan_y;
4121 if (ELM_RECTS_INTERSECT(itx, ity, it->w, it->h, x, y, 1, 1))
4125 if (y <= (ity + (it->h / 4))) *posret = -1;
4126 else if (y >= (ity + it->h - (it->h / 4)))
4132 lasty = ity + it->h;
4137 if (y > lasty) *posret = 1;
4144 * Get the first item in the genlist
4146 * This returns the first item in the list.
4148 * @param obj The genlist object
4149 * @return The first item, or NULL if none
4153 EAPI Elm_Genlist_Item *
4154 elm_genlist_first_item_get(const Evas_Object *obj)
4156 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4157 Widget_Data *wd = elm_widget_data_get(obj);
4158 if (!wd) return NULL;
4159 if (!wd->items) return NULL;
4160 Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
4161 while ((it) && (it->delete_me))
4162 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
4167 * Get the last item in the genlist
4169 * This returns the last item in the list.
4171 * @return The last item, or NULL if none
4175 EAPI Elm_Genlist_Item *
4176 elm_genlist_last_item_get(const Evas_Object *obj)
4178 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4179 Widget_Data *wd = elm_widget_data_get(obj);
4180 if (!wd) return NULL;
4181 if (!wd->items) return NULL;
4182 Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items->last);
4183 while ((it) && (it->delete_me))
4184 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
4189 * Get the next item in the genlist
4191 * This returns the item after the item @p it.
4193 * @param it The item
4194 * @return The item after @p it, or NULL if none
4198 EAPI Elm_Genlist_Item *
4199 elm_genlist_item_next_get(const Elm_Genlist_Item *it)
4201 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4204 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
4205 if ((it) && (!it->delete_me)) break;
4207 return (Elm_Genlist_Item *)it;
4211 * Get the previous item in the genlist
4213 * This returns the item before the item @p it.
4215 * @param it The item
4216 * @return The item before @p it, or NULL if none
4220 EAPI Elm_Genlist_Item *
4221 elm_genlist_item_prev_get(const Elm_Genlist_Item *it)
4223 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4226 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
4227 if ((it) && (!it->delete_me)) break;
4229 return (Elm_Genlist_Item *)it;
4233 * Get the genlist object from an item
4235 * This returns the genlist object itself that an item belongs to.
4237 * @param it The item
4238 * @return The genlist object
4243 elm_genlist_item_genlist_get(const Elm_Genlist_Item *it)
4245 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4246 return it->base.widget;
4250 * Get the parent item of the given item
4252 * This returns the parent item of the item @p it given.
4254 * @param it The item
4255 * @return The parent of the item or NULL if none
4259 EAPI Elm_Genlist_Item *
4260 elm_genlist_item_parent_get(const Elm_Genlist_Item *it)
4262 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4267 * Clear all sub-items (children) of the given item
4269 * This clears all items that are children (or their descendants) of the
4272 * @param it The item
4277 elm_genlist_item_subitems_clear(Elm_Genlist_Item *it)
4279 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4280 Eina_List *tl = NULL, *l;
4281 Elm_Genlist_Item *it2;
4283 EINA_LIST_FOREACH(it->items, l, it2)
4284 tl = eina_list_append(tl, it2);
4285 EINA_LIST_FREE(tl, it2)
4286 elm_genlist_item_del(it2);
4290 * Set the selected state of an item
4292 * This sets the selected state (1 selected, 0 not selected) of the given
4295 * @param it The item
4296 * @param selected The selected state
4301 elm_genlist_item_selected_set(Elm_Genlist_Item *it,
4304 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4305 Widget_Data *wd = elm_widget_data_get(it->base.widget);
4307 if ((it->delete_me) || (it->disabled)) return;
4308 selected = !!selected;
4309 if (it->selected == selected) return;
4315 while (wd->selected)
4317 _item_unhighlight(wd->selected->data);
4318 _item_unselect(wd->selected->data);
4321 _item_highlight(it);
4326 _item_unhighlight(it);
4332 * Get the selected state of an item
4334 * This gets the selected state of an item (1 selected, 0 not selected).
4336 * @param it The item
4337 * @return The selected state
4342 elm_genlist_item_selected_get(const Elm_Genlist_Item *it)
4344 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4345 return it->selected;
4349 * Sets the expanded state of an item (if it's a parent)
4351 * This expands or contracts a parent item (thus showing or hiding the
4354 * @param it The item
4355 * @param expanded The expanded state (1 expanded, 0 not expanded).
4360 elm_genlist_item_expanded_set(Elm_Genlist_Item *it,
4363 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4364 if (it->expanded == expanded) return;
4365 it->expanded = expanded;
4366 it->wd->expanded_item = it;
4370 edje_object_signal_emit(it->base.view, "elm,state,expanded", "elm");
4371 evas_object_smart_callback_call(it->base.widget, SIG_EXPANDED, it);
4372 it->wd->auto_scroll_enabled = EINA_TRUE;
4377 edje_object_signal_emit(it->base.view, "elm,state,contracted", "elm");
4378 evas_object_smart_callback_call(it->base.widget, SIG_CONTRACTED, it);
4379 it->wd->auto_scroll_enabled = EINA_FALSE;
4384 * Get the expanded state of an item
4386 * This gets the expanded state of an item
4388 * @param it The item
4389 * @return Thre expanded state
4394 elm_genlist_item_expanded_get(const Elm_Genlist_Item *it)
4396 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4397 return it->expanded;
4401 * Get the depth of expanded item
4403 * @param it The genlist item object
4404 * @return The depth of expanded item
4409 elm_genlist_item_expanded_depth_get(const Elm_Genlist_Item *it)
4411 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, 0);
4412 return it->expanded_depth;
4416 * Sets the disabled state of an item.
4418 * A disabled item cannot be selected or unselected. It will also
4419 * change appearance to appear disabled. This sets the disabled state
4420 * (1 disabled, 0 not disabled).
4422 * @param it The item
4423 * @param disabled The disabled state
4428 elm_genlist_item_disabled_set(Elm_Genlist_Item *it,
4431 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4434 if (it->disabled == disabled) return;
4435 if (it->delete_me) return;
4436 it->disabled = !!disabled;
4438 elm_genlist_item_selected_set(it, EINA_FALSE);
4442 edje_object_signal_emit(it->base.view, "elm,state,disabled", "elm");
4444 edje_object_signal_emit(it->base.view, "elm,state,enabled", "elm");
4445 EINA_LIST_FOREACH(it->icon_objs, l, obj)
4446 elm_widget_disabled_set(obj, disabled);
4451 * Get the disabled state of an item
4453 * This gets the disabled state of the given item.
4455 * @param it The item
4456 * @return The disabled state
4461 elm_genlist_item_disabled_get(const Elm_Genlist_Item *it)
4463 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4464 if (it->delete_me) return EINA_FALSE;
4465 return it->disabled;
4469 * Sets the display only state of an item.
4471 * A display only item cannot be selected or unselected. It is for
4472 * display only and not selecting or otherwise clicking, dragging
4473 * etc. by the user, thus finger size rules will not be applied to
4476 * @param it The item
4477 * @param display_only The display only state
4482 elm_genlist_item_display_only_set(Elm_Genlist_Item *it,
4483 Eina_Bool display_only)
4485 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4486 if (it->display_only == display_only) return;
4487 if (it->delete_me) return;
4488 it->display_only = display_only;
4489 it->mincalcd = EINA_FALSE;
4490 it->updateme = EINA_TRUE;
4491 if (it->block) it->block->updateme = EINA_TRUE;
4492 if (it->wd->update_job) ecore_job_del(it->wd->update_job);
4493 it->wd->update_job = ecore_job_add(_update_job, it->wd);
4497 * Get the display only state of an item
4499 * This gets the display only state of the given item.
4501 * @param it The item
4502 * @return The display only state
4507 elm_genlist_item_display_only_get(const Elm_Genlist_Item *it)
4509 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4510 if (it->delete_me) return EINA_FALSE;
4511 return it->display_only;
4515 * Show the given item
4517 * This causes genlist to jump to the given item @p it and show it (by
4518 * scrolling), if it is not fully visible.
4520 * @param it The item
4525 elm_genlist_item_show(Elm_Genlist_Item *it)
4527 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4528 Evas_Coord gith = 0;
4529 if (it->delete_me) return;
4530 if ((it->queued) || (!it->mincalcd))
4532 it->wd->show_item = it;
4533 it->wd->bring_in = EINA_TRUE;
4534 it->showme = EINA_TRUE;
4537 if (it->wd->show_item)
4539 it->wd->show_item->showme = EINA_FALSE;
4540 it->wd->show_item = NULL;
4542 if ((it->group_item) && (it->wd->pan_y > (it->y + it->block->y)))
4543 gith = it->group_item->h;
4544 elm_smart_scroller_child_region_show(it->wd->scr,
4545 it->x + it->block->x,
4546 it->y + it->block->y - gith,
4547 it->block->w, it->h);
4551 * Bring in the given item
4553 * This causes genlist to jump to the given item @p it and show it (by
4554 * scrolling), if it is not fully visible. This may use animation to
4555 * do so and take a period of time
4557 * @param it The item
4562 elm_genlist_item_bring_in(Elm_Genlist_Item *it)
4564 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4565 Evas_Coord gith = 0;
4566 if (it->delete_me) return;
4567 if ((it->queued) || (!it->mincalcd))
4569 it->wd->show_item = it;
4570 it->wd->bring_in = EINA_TRUE;
4571 it->showme = EINA_TRUE;
4574 if (it->wd->show_item)
4576 it->wd->show_item->showme = EINA_FALSE;
4577 it->wd->show_item = NULL;
4579 if ((it->group_item) && (it->wd->pan_y > (it->y + it->block->y)))
4580 gith = it->group_item->h;
4581 elm_smart_scroller_region_bring_in(it->wd->scr,
4582 it->x + it->block->x,
4583 it->y + it->block->y - gith,
4584 it->block->w, it->h);
4588 * Show the given item at the top
4590 * This causes genlist to jump to the given item @p it and show it (by
4591 * scrolling), if it is not fully visible.
4593 * @param it The item
4598 elm_genlist_item_top_show(Elm_Genlist_Item *it)
4600 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4602 Evas_Coord gith = 0;
4604 if (it->delete_me) return;
4605 if ((it->queued) || (!it->mincalcd))
4607 it->wd->show_item = it;
4608 it->wd->bring_in = EINA_TRUE;
4609 it->showme = EINA_TRUE;
4612 if (it->wd->show_item)
4614 it->wd->show_item->showme = EINA_FALSE;
4615 it->wd->show_item = NULL;
4617 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4618 if (it->group_item) gith = it->group_item->h;
4619 elm_smart_scroller_child_region_show(it->wd->scr,
4620 it->x + it->block->x,
4621 it->y + it->block->y - gith,
4626 * Bring in the given item at the top
4628 * This causes genlist to jump to the given item @p it and show it (by
4629 * scrolling), if it is not fully visible. This may use animation to
4630 * do so and take a period of time
4632 * @param it The item
4637 elm_genlist_item_top_bring_in(Elm_Genlist_Item *it)
4639 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4641 Evas_Coord gith = 0;
4643 if (it->delete_me) return;
4644 if ((it->queued) || (!it->mincalcd))
4646 it->wd->show_item = it;
4647 it->wd->bring_in = EINA_TRUE;
4648 it->showme = EINA_TRUE;
4651 if (it->wd->show_item)
4653 it->wd->show_item->showme = EINA_FALSE;
4654 it->wd->show_item = NULL;
4656 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4657 if (it->group_item) gith = it->group_item->h;
4658 elm_smart_scroller_region_bring_in(it->wd->scr,
4659 it->x + it->block->x,
4660 it->y + it->block->y - gith,
4665 * Show the given item at the middle
4667 * This causes genlist to jump to the given item @p it and show it (by
4668 * scrolling), if it is not fully visible.
4670 * @param it The item
4675 elm_genlist_item_middle_show(Elm_Genlist_Item *it)
4677 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4680 if (it->delete_me) return;
4681 if ((it->queued) || (!it->mincalcd))
4683 it->wd->show_item = it;
4684 it->wd->bring_in = EINA_TRUE;
4685 it->showme = EINA_TRUE;
4688 if (it->wd->show_item)
4690 it->wd->show_item->showme = EINA_FALSE;
4691 it->wd->show_item = NULL;
4693 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4694 elm_smart_scroller_child_region_show(it->wd->scr,
4695 it->x + it->block->x,
4696 it->y + it->block->y - oh / 2 +
4697 it->h / 2, it->block->w, oh);
4701 * Bring in the given item at the middle
4703 * This causes genlist to jump to the given item @p it and show it (by
4704 * scrolling), if it is not fully visible. This may use animation to
4705 * do so and take a period of time
4707 * @param it The item
4712 elm_genlist_item_middle_bring_in(Elm_Genlist_Item *it)
4714 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4717 if (it->delete_me) return;
4718 if ((it->queued) || (!it->mincalcd))
4720 it->wd->show_item = it;
4721 it->wd->bring_in = EINA_TRUE;
4722 it->showme = EINA_TRUE;
4725 if (it->wd->show_item)
4727 it->wd->show_item->showme = EINA_FALSE;
4728 it->wd->show_item = NULL;
4730 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4731 elm_smart_scroller_region_bring_in(it->wd->scr,
4732 it->x + it->block->x,
4733 it->y + it->block->y - oh / 2 + it->h / 2,
4738 * Delete a given item
4740 * This deletes the item from genlist and calls the genlist item del
4741 * class callback defined in the item class, if it is set. This clears all
4742 * subitems if it is a tree.
4744 * @param it The item
4749 elm_genlist_item_del(Elm_Genlist_Item *it)
4751 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4752 if ((it->relcount > 0) || (it->walking > 0))
4754 elm_widget_item_pre_notify_del(it);
4755 elm_genlist_item_subitems_clear(it);
4756 it->delete_me = EINA_TRUE;
4757 if (it->wd->show_item == it) it->wd->show_item = NULL;
4759 it->wd->selected = eina_list_remove(it->wd->selected,
4763 if (it->realized) _item_unrealize(it, EINA_FALSE);
4764 it->block->changed = EINA_TRUE;
4765 if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
4766 it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
4768 if (it->itc->func.del)
4769 it->itc->func.del((void *)it->base.data, it->base.widget);
4776 * Set the data item from the genlist item
4778 * This set the data value passed on the elm_genlist_item_append() and
4779 * related item addition calls. This function will also call
4780 * elm_genlist_item_update() so the item will be updated to reflect the
4783 * @param it The item
4784 * @param data The new data pointer to set
4789 elm_genlist_item_data_set(Elm_Genlist_Item *it,
4792 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4793 elm_widget_item_data_set(it, data);
4794 elm_genlist_item_update(it);
4798 * Get the data item from the genlist item
4800 * This returns the data value passed on the elm_genlist_item_append()
4801 * and related item addition calls and elm_genlist_item_data_set().
4803 * @param it The item
4804 * @return The data pointer provided when created
4809 elm_genlist_item_data_get(const Elm_Genlist_Item *it)
4811 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4812 return elm_widget_item_data_get(it);
4816 * Tells genlist to "orphan" icons fetchs by the item class
4818 * This instructs genlist to release references to icons in the item,
4819 * meaning that they will no longer be managed by genlist and are
4820 * floating "orphans" that can be re-used elsewhere if the user wants
4823 * @param it The item
4828 elm_genlist_item_icons_orphan(Elm_Genlist_Item *it)
4831 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4832 EINA_LIST_FREE(it->icon_objs, icon)
4834 elm_widget_sub_object_del(it->base.widget, icon);
4835 evas_object_smart_member_del(icon);
4836 evas_object_hide(icon);
4841 * Get the real evas object of the genlist item
4843 * This returns the actual evas object used for the specified genlist
4844 * item. This may be NULL as it may not be created, and may be deleted
4845 * at any time by genlist. Do not modify this object (move, resize,
4846 * show, hide etc.) as genlist is controlling it. This function is for
4847 * querying, emitting custom signals or hooking lower level callbacks
4848 * for events. Do not delete this object under any circumstances.
4850 * @param it The item
4851 * @return The object pointer
4855 EAPI const Evas_Object *
4856 elm_genlist_item_object_get(const Elm_Genlist_Item *it)
4858 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4859 return it->base.view;
4863 * Update the contents of an item
4865 * This updates an item by calling all the item class functions again
4866 * to get the icons, labels and states. Use this when the original
4867 * item data has changed and the changes are desired to be reflected.
4869 * @param it The item
4874 elm_genlist_item_update(Elm_Genlist_Item *it)
4876 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4877 if (!it->block) return;
4878 if (it->delete_me) return;
4879 it->mincalcd = EINA_FALSE;
4880 it->updateme = EINA_TRUE;
4881 it->block->updateme = EINA_TRUE;
4882 if (it->wd->update_job) ecore_job_del(it->wd->update_job);
4883 it->wd->update_job = ecore_job_add(_update_job, it->wd);
4887 * Update the item class of an item
4889 * @param it The item
4890 * @parem itc The item class for the item
4895 elm_genlist_item_item_class_update(Elm_Genlist_Item *it,
4896 const Elm_Genlist_Item_Class *itc)
4898 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4899 if (!it->block) return;
4900 EINA_SAFETY_ON_NULL_RETURN(itc);
4901 if (it->delete_me) return;
4903 it->nocache = EINA_TRUE;
4904 elm_genlist_item_update(it);
4907 EAPI const Elm_Genlist_Item_Class *
4908 elm_genlist_item_item_class_get(const Elm_Genlist_Item *it)
4910 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4911 if (it->delete_me) return NULL;
4915 static Evas_Object *
4916 _elm_genlist_item_label_create(void *data,
4918 void *item __UNUSED__)
4920 Evas_Object *label = elm_label_add(obj);
4923 elm_object_style_set(label, "tooltip");
4924 elm_label_label_set(label, data);
4929 _elm_genlist_item_label_del_cb(void *data,
4930 Evas_Object *obj __UNUSED__,
4931 void *event_info __UNUSED__)
4933 eina_stringshare_del(data);
4937 * Set the text to be shown in the genlist item.
4939 * @param item Target item
4940 * @param text The text to set in the content
4942 * Setup the text as tooltip to object. The item can have only one
4943 * tooltip, so any previous tooltip data is removed.
4948 elm_genlist_item_tooltip_text_set(Elm_Genlist_Item *item,
4951 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4952 text = eina_stringshare_add(text);
4953 elm_genlist_item_tooltip_content_cb_set(item, _elm_genlist_item_label_create,
4955 _elm_genlist_item_label_del_cb);
4959 * Set the content to be shown in the tooltip item
4961 * Setup the tooltip to item. The item can have only one tooltip, so
4962 * any previous tooltip data is removed. @p func(with @p data) will be
4963 * called every time that need to show the tooltip and it should return a
4964 * valid Evas_Object. This object is then managed fully by tooltip
4965 * system and is deleted when the tooltip is gone.
4967 * @param item the genlist item being attached by a tooltip.
4968 * @param func the function used to create the tooltip contents.
4969 * @param data what to provide to @a func as callback data/context.
4970 * @param del_cb called when data is not needed anymore, either when
4971 * another callback replaces @func, the tooltip is unset with
4972 * elm_genlist_item_tooltip_unset() or the owner @a item
4973 * dies. This callback receives as the first parameter the
4974 * given @a data, and @c event_info is the item.
4979 elm_genlist_item_tooltip_content_cb_set(Elm_Genlist_Item *item,
4980 Elm_Tooltip_Item_Content_Cb func,
4982 Evas_Smart_Cb del_cb)
4984 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_GOTO(item, error);
4986 if ((item->tooltip.content_cb == func) && (item->tooltip.data == data))
4989 if (item->tooltip.del_cb)
4990 item->tooltip.del_cb((void *)item->tooltip.data,
4991 item->base.widget, item);
4993 item->tooltip.content_cb = func;
4994 item->tooltip.data = data;
4995 item->tooltip.del_cb = del_cb;
4997 if (item->base.view)
4999 elm_widget_item_tooltip_content_cb_set(item,
5000 item->tooltip.content_cb,
5001 item->tooltip.data, NULL);
5002 elm_widget_item_tooltip_style_set(item, item->tooltip.style);
5008 if (del_cb) del_cb((void *)data, NULL, NULL);
5012 * Unset tooltip from item
5014 * @param item genlist item to remove previously set tooltip.
5016 * Remove tooltip from item. The callback provided as del_cb to
5017 * elm_genlist_item_tooltip_content_cb_set() will be called to notify
5018 * it is not used anymore.
5020 * @see elm_genlist_item_tooltip_content_cb_set()
5025 elm_genlist_item_tooltip_unset(Elm_Genlist_Item *item)
5027 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
5028 if ((item->base.view) && (item->tooltip.content_cb))
5029 elm_widget_item_tooltip_unset(item);
5031 if (item->tooltip.del_cb)
5032 item->tooltip.del_cb((void *)item->tooltip.data, item->base.widget, item);
5033 item->tooltip.del_cb = NULL;
5034 item->tooltip.content_cb = NULL;
5035 item->tooltip.data = NULL;
5036 if (item->tooltip.style)
5037 elm_genlist_item_tooltip_style_set(item, NULL);
5041 * Sets a different style for this item tooltip.
5043 * @note before you set a style you should define a tooltip with
5044 * elm_genlist_item_tooltip_content_cb_set() or
5045 * elm_genlist_item_tooltip_text_set()
5047 * @param item genlist item with tooltip already set.
5048 * @param style the theme style to use (default, transparent, ...)
5053 elm_genlist_item_tooltip_style_set(Elm_Genlist_Item *item,
5056 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
5057 eina_stringshare_replace(&item->tooltip.style, style);
5058 if (item->base.view) elm_widget_item_tooltip_style_set(item, style);
5062 * Get the style for this item tooltip.
5064 * @param item genlist item with tooltip already set.
5065 * @return style the theme style in use, defaults to "default". If the
5066 * object does not have a tooltip set, then NULL is returned.
5071 elm_genlist_item_tooltip_style_get(const Elm_Genlist_Item *item)
5073 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
5074 return item->tooltip.style;
5078 * Set the cursor to be shown when mouse is over the genlist item
5080 * @param item Target item
5081 * @param cursor the cursor name to be used.
5083 * @see elm_object_cursor_set()
5087 elm_genlist_item_cursor_set(Elm_Genlist_Item *item,
5090 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
5091 eina_stringshare_replace(&item->mouse_cursor, cursor);
5092 if (item->base.view) elm_widget_item_cursor_set(item, cursor);
5096 * Get the cursor to be shown when mouse is over the genlist item
5098 * @param item genlist item with cursor already set.
5099 * @return the cursor name.
5104 elm_genlist_item_cursor_get(const Elm_Genlist_Item *item)
5106 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
5107 return elm_widget_item_cursor_get(item);
5111 * Unset the cursor to be shown when mouse is over the genlist item
5113 * @param item Target item
5115 * @see elm_object_cursor_unset()
5119 elm_genlist_item_cursor_unset(Elm_Genlist_Item *item)
5121 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
5122 if (!item->mouse_cursor)
5125 if (item->base.view)
5126 elm_widget_item_cursor_unset(item);
5128 eina_stringshare_del(item->mouse_cursor);
5129 item->mouse_cursor = NULL;
5133 * Sets a different style for this item cursor.
5135 * @note before you set a style you should define a cursor with
5136 * elm_genlist_item_cursor_set()
5138 * @param item genlist item with cursor already set.
5139 * @param style the theme style to use (default, transparent, ...)
5144 elm_genlist_item_cursor_style_set(Elm_Genlist_Item *item,
5147 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
5148 elm_widget_item_cursor_style_set(item, style);
5152 * Get the style for this item cursor.
5154 * @param item genlist item with cursor already set.
5155 * @return style the theme style in use, defaults to "default". If the
5156 * object does not have a cursor set, then NULL is returned.
5161 elm_genlist_item_cursor_style_get(const Elm_Genlist_Item *item)
5163 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
5164 return elm_widget_item_cursor_style_get(item);
5168 * Set if the cursor set should be searched on the theme or should use
5169 * the provided by the engine, only.
5171 * @note before you set if should look on theme you should define a
5172 * cursor with elm_object_cursor_set(). By default it will only look
5173 * for cursors provided by the engine.
5175 * @param item widget item with cursor already set.
5176 * @param engine_only boolean to define it cursors should be looked
5177 * only between the provided by the engine or searched on widget's
5183 elm_genlist_item_cursor_engine_only_set(Elm_Genlist_Item *item,
5184 Eina_Bool engine_only)
5186 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
5187 elm_widget_item_cursor_engine_only_set(item, engine_only);
5191 * Get the cursor engine only usage for this item cursor.
5193 * @param item widget item with cursor already set.
5194 * @return engine_only boolean to define it cursors should be looked
5195 * only between the provided by the engine or searched on widget's
5196 * theme as well. If the object does not have a cursor set, then
5197 * EINA_FALSE is returned.
5202 elm_genlist_item_cursor_engine_only_get(const Elm_Genlist_Item *item)
5204 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
5205 return elm_widget_item_cursor_engine_only_get(item);
5209 * This sets the horizontal stretching mode
5211 * This sets the mode used for sizing items horizontally. Valid modes
5212 * are ELM_LIST_LIMIT and ELM_LIST_SCROLL. The default is
5213 * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
5214 * the scroller will scroll horizontally. Otherwise items are expanded
5215 * to fill the width of the viewport of the scroller. If it is
5216 * ELM_LIST_LIMIT, Items will be expanded to the viewport width and
5217 * limited to that size.
5219 * @param obj The genlist object
5220 * @param mode The mode to use
5225 elm_genlist_horizontal_mode_set(Evas_Object *obj,
5228 ELM_CHECK_WIDTYPE(obj, widtype);
5229 Widget_Data *wd = elm_widget_data_get(obj);
5231 if (wd->mode == mode) return;
5237 * Gets the horizontal stretching mode
5239 * @param obj The genlist object
5240 * @return The mode to use
5241 * (ELM_LIST_LIMIT, ELM_LIST_SCROLL)
5246 elm_genlist_horizontal_mode_get(const Evas_Object *obj)
5248 ELM_CHECK_WIDTYPE(obj, widtype) ELM_LIST_LAST;
5249 Widget_Data *wd = elm_widget_data_get(obj);
5250 if (!wd) return ELM_LIST_LAST;
5255 * Set the always select mode.
5257 * Items will only call their selection func and callback when first
5258 * becoming selected. Any further clicks will do nothing, unless you
5259 * enable always select with elm_genlist_always_select_mode_set().
5260 * This means even if selected, every click will make the selected
5261 * callbacks be called.
5263 * @param obj The genlist object
5264 * @param always_select The always select mode
5265 * (EINA_TRUE = on, EINA_FALSE = off)
5270 elm_genlist_always_select_mode_set(Evas_Object *obj,
5271 Eina_Bool always_select)
5273 ELM_CHECK_WIDTYPE(obj, widtype);
5274 Widget_Data *wd = elm_widget_data_get(obj);
5276 wd->always_select = always_select;
5280 * Get the always select mode.
5282 * @param obj The genlist object
5283 * @return The always select mode
5284 * (EINA_TRUE = on, EINA_FALSE = off)
5289 elm_genlist_always_select_mode_get(const Evas_Object *obj)
5291 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5292 Widget_Data *wd = elm_widget_data_get(obj);
5293 if (!wd) return EINA_FALSE;
5294 return wd->always_select;
5298 * Set no select mode
5300 * This will turn off the ability to select items entirely and they
5301 * will neither appear selected nor call selected callback functions.
5303 * @param obj The genlist object
5304 * @param no_select The no select mode
5305 * (EINA_TRUE = on, EINA_FALSE = off)
5310 elm_genlist_no_select_mode_set(Evas_Object *obj,
5311 Eina_Bool no_select)
5313 ELM_CHECK_WIDTYPE(obj, widtype);
5314 Widget_Data *wd = elm_widget_data_get(obj);
5316 wd->no_select = no_select;
5320 * Gets no select mode
5322 * @param obj The genlist object
5323 * @return The no select mode
5324 * (EINA_TRUE = on, EINA_FALSE = off)
5329 elm_genlist_no_select_mode_get(const Evas_Object *obj)
5331 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5332 Widget_Data *wd = elm_widget_data_get(obj);
5333 if (!wd) return EINA_FALSE;
5334 return wd->no_select;
5340 * This will enable the compress mode where items are "compressed"
5341 * horizontally to fit the genlist scrollable viewport width. This is
5342 * special for genlist. Do not rely on
5343 * elm_genlist_horizontal_mode_set() being set to ELM_LIST_COMPRESS to
5344 * work as genlist needs to handle it specially.
5346 * @param obj The genlist object
5347 * @param compress The compress mode
5348 * (EINA_TRUE = on, EINA_FALSE = off)
5353 elm_genlist_compress_mode_set(Evas_Object *obj,
5356 ELM_CHECK_WIDTYPE(obj, widtype);
5357 Widget_Data *wd = elm_widget_data_get(obj);
5359 wd->compress = compress;
5360 if (!compress) elm_genlist_homogeneous_set(obj, EINA_FALSE);
5364 * Get the compress mode
5366 * @param obj The genlist object
5367 * @return The compress mode
5368 * (EINA_TRUE = on, EINA_FALSE = off)
5373 elm_genlist_compress_mode_get(const Evas_Object *obj)
5375 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5376 Widget_Data *wd = elm_widget_data_get(obj);
5377 if (!wd) return EINA_FALSE;
5378 return wd->compress;
5382 * Set height-for-width mode
5384 * With height-for-width mode the item width will be fixed (restricted
5385 * to a minimum of) to the list width when calculating its size in
5386 * order to allow the height to be calculated based on it. This allows,
5387 * for instance, text block to wrap lines if the Edje part is
5388 * configured with "text.min: 0 1".
5390 * @note This mode will make list resize slower as it will have to
5391 * recalculate every item height again whenever the list width
5394 * @note When height-for-width mode is enabled, it also enables
5395 * compress mode (see elm_genlist_compress_mode_set()) and
5396 * disables homogeneous (see elm_genlist_homogeneous_set()).
5398 * @param obj The genlist object
5399 * @param setting The height-for-width mode (EINA_TRUE = on,
5405 elm_genlist_height_for_width_mode_set(Evas_Object *obj,
5406 Eina_Bool height_for_width)
5408 ELM_CHECK_WIDTYPE(obj, widtype);
5409 Widget_Data *wd = elm_widget_data_get(obj);
5411 wd->height_for_width = !!height_for_width;
5412 if (wd->height_for_width)
5414 elm_genlist_homogeneous_set(obj, EINA_FALSE);
5415 elm_genlist_compress_mode_set(obj, EINA_TRUE);
5420 * Get the height-for-width mode
5422 * @param obj The genlist object
5423 * @return The height-for-width mode (EINA_TRUE = on, EINA_FALSE =
5429 elm_genlist_height_for_width_mode_get(const Evas_Object *obj)
5431 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5432 Widget_Data *wd = elm_widget_data_get(obj);
5433 if (!wd) return EINA_FALSE;
5434 return wd->height_for_width;
5440 * This will enable or disable the scroller bounce mode for the
5441 * genlist. See elm_scroller_bounce_set() for details
5443 * @param obj The genlist object
5444 * @param h_bounce Allow bounce horizontally
5445 * @param v_bounce Allow bounce vertically
5450 elm_genlist_bounce_set(Evas_Object *obj,
5454 ELM_CHECK_WIDTYPE(obj, widtype);
5455 Widget_Data *wd = elm_widget_data_get(obj);
5457 elm_smart_scroller_bounce_allow_set(wd->scr, h_bounce, v_bounce);
5461 * Get the bounce mode
5463 * @param obj The genlist object
5464 * @param h_bounce Allow bounce horizontally
5465 * @param v_bounce Allow bounce vertically
5470 elm_genlist_bounce_get(const Evas_Object *obj,
5471 Eina_Bool *h_bounce,
5472 Eina_Bool *v_bounce)
5474 ELM_CHECK_WIDTYPE(obj, widtype);
5475 Widget_Data *wd = elm_widget_data_get(obj);
5477 elm_smart_scroller_bounce_allow_get(obj, h_bounce, v_bounce);
5481 * Set homogenous mode
5483 * This will enable the homogeneous mode where items are of the same
5484 * height and width so that genlist may do the lazy-loading at its
5485 * maximum. This implies 'compressed' mode.
5487 * @param obj The genlist object
5488 * @param homogeneous Assume the items within the genlist are of the
5489 * same height and width (EINA_TRUE = on, EINA_FALSE = off)
5494 elm_genlist_homogeneous_set(Evas_Object *obj,
5495 Eina_Bool homogeneous)
5497 ELM_CHECK_WIDTYPE(obj, widtype);
5498 Widget_Data *wd = elm_widget_data_get(obj);
5500 if (homogeneous) elm_genlist_compress_mode_set(obj, EINA_TRUE);
5501 wd->homogeneous = homogeneous;
5505 * Get the homogenous mode
5507 * @param obj The genlist object
5508 * @return Assume the items within the genlist are of the same height
5509 * and width (EINA_TRUE = on, EINA_FALSE = off)
5514 elm_genlist_homogeneous_get(const Evas_Object *obj)
5516 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5517 Widget_Data *wd = elm_widget_data_get(obj);
5518 if (!wd) return EINA_FALSE;
5519 return wd->homogeneous;
5523 * Set the maximum number of items within an item block
5525 * This will configure the block count to tune to the target with
5526 * particular performance matrix.
5528 * @param obj The genlist object
5529 * @param n Maximum number of items within an item block
5534 elm_genlist_block_count_set(Evas_Object *obj,
5537 ELM_CHECK_WIDTYPE(obj, widtype);
5538 Widget_Data *wd = elm_widget_data_get(obj);
5540 wd->max_items_per_block = n;
5541 wd->item_cache_max = wd->max_items_per_block * 2;
5542 _item_cache_clean(wd);
5546 * Get the maximum number of items within an item block
5548 * @param obj The genlist object
5549 * @return Maximum number of items within an item block
5554 elm_genlist_block_count_get(const Evas_Object *obj)
5556 ELM_CHECK_WIDTYPE(obj, widtype) 0;
5557 Widget_Data *wd = elm_widget_data_get(obj);
5559 return wd->max_items_per_block;
5563 * Set the timeout in seconds for the longpress event
5565 * @param obj The genlist object
5566 * @param timeout timeout in seconds
5571 elm_genlist_longpress_timeout_set(Evas_Object *obj,
5574 ELM_CHECK_WIDTYPE(obj, widtype);
5575 Widget_Data *wd = elm_widget_data_get(obj);
5577 wd->longpress_timeout = timeout;
5581 * Get the timeout in seconds for the longpress event
5583 * @param obj The genlist object
5584 * @return timeout in seconds
5589 elm_genlist_longpress_timeout_get(const Evas_Object *obj)
5591 ELM_CHECK_WIDTYPE(obj, widtype) 0;
5592 Widget_Data *wd = elm_widget_data_get(obj);
5594 return wd->longpress_timeout;
5598 * Set the scrollbar policy
5600 * This sets the scrollbar visibility policy for the given genlist
5601 * scroller. ELM_SMART_SCROLLER_POLICY_AUTO means the scrollbar is
5602 * made visible if it is needed, and otherwise kept hidden.
5603 * ELM_SMART_SCROLLER_POLICY_ON turns it on all the time, and
5604 * ELM_SMART_SCROLLER_POLICY_OFF always keeps it off. This applies
5605 * respectively for the horizontal and vertical scrollbars.
5607 * @param obj The genlist object
5608 * @param policy_h Horizontal scrollbar policy
5609 * @param policy_v Vertical scrollbar policy
5614 elm_genlist_scroller_policy_set(Evas_Object *obj,
5615 Elm_Scroller_Policy policy_h,
5616 Elm_Scroller_Policy policy_v)
5618 ELM_CHECK_WIDTYPE(obj, widtype);
5619 Widget_Data *wd = elm_widget_data_get(obj);
5621 if ((policy_h >= ELM_SCROLLER_POLICY_LAST) ||
5622 (policy_v >= ELM_SCROLLER_POLICY_LAST))
5625 elm_smart_scroller_policy_set(wd->scr, policy_h, policy_v);
5629 * Get the scrollbar policy
5631 * @param obj The genlist object
5632 * @param policy_h Horizontal scrollbar policy
5633 * @param policy_v Vertical scrollbar policy
5638 elm_genlist_scroller_policy_get(const Evas_Object *obj,
5639 Elm_Scroller_Policy *policy_h,
5640 Elm_Scroller_Policy *policy_v)
5642 ELM_CHECK_WIDTYPE(obj, widtype);
5643 Widget_Data *wd = elm_widget_data_get(obj);
5644 Elm_Smart_Scroller_Policy s_policy_h, s_policy_v;
5645 if ((!wd) || (!wd->scr)) return;
5646 elm_smart_scroller_policy_get(wd->scr, &s_policy_h, &s_policy_v);
5647 if (policy_h) *policy_h = (Elm_Scroller_Policy)s_policy_h;
5648 if (policy_v) *policy_v = (Elm_Scroller_Policy)s_policy_v;
5652 * Update the contents of all realized items
5654 * This updates all realized items by calling all the item class functions again
5655 * to get the icons, labels and states. Use this when the original
5656 * item data has changed and the changes are desired to be reflected.
5658 * @param it The item
5663 elm_genlist_realized_items_update(Evas_Object *obj)
5665 ELM_CHECK_WIDTYPE(obj, widtype);
5667 Eina_List *list, *l;
5668 Elm_Genlist_Item *it;
5670 list = elm_genlist_realized_items_get(obj);
5671 EINA_LIST_FOREACH(list, l, it)
5672 elm_genlist_item_update(it);
5676 * Set genlist item mode
5678 * @param item The genlist item
5679 * @param mode Mode name
5680 * @param mode_set Boolean to define set or unset mode.
5685 elm_genlist_item_mode_set(Elm_Genlist_Item *it,
5686 const char *mode_type,
5689 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
5690 Widget_Data *wd = it->wd;
5692 Elm_Genlist_Item *it2;
5695 if (!mode_type) return;
5696 if ((it->delete_me) || (it->disabled)) return;
5698 if ((wd->mode_item == it) &&
5699 (!strcmp(mode_type, wd->mode_type)) &&
5702 if (!it->itc->mode_item_style) return;
5706 EINA_LIST_FOREACH(wd->selected, l, it2)
5708 elm_genlist_item_selected_set(it2, EINA_FALSE);
5712 it2 = elm_genlist_selected_item_get(wd->obj);
5713 if ((it2) && (it2->realized))
5714 elm_genlist_item_selected_set(it2, EINA_FALSE);
5717 if (((wd->mode_type) && (strcmp(mode_type, wd->mode_type))) ||
5719 ((it == wd->mode_item) && (!mode_set)))
5720 _item_mode_unset(wd);
5722 eina_stringshare_replace(&wd->mode_type, mode_type);
5723 if (mode_set) _item_mode_set(it);
5727 * Get active genlist mode type
5729 * @param obj The genlist object
5734 elm_genlist_mode_get(const Evas_Object *obj)
5736 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
5737 Widget_Data *wd = elm_widget_data_get(obj);
5738 if (!wd) return NULL;
5739 return wd->mode_type;
5743 * Get active genlist mode item
5745 * @param obj The genlist object
5749 EAPI const Elm_Genlist_Item *
5750 elm_genlist_mode_item_get(const Evas_Object *obj)
5752 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
5753 Widget_Data *wd = elm_widget_data_get(obj);
5754 if (!wd) return NULL;
5755 return wd->mode_item;
5761 * @param obj The genlist object
5762 * @param reorder_mode The reorder mode
5763 * (EINA_TRUE = on, EINA_FALSE = off)
5768 elm_genlist_reorder_mode_set(Evas_Object *obj,
5769 Eina_Bool reorder_mode)
5771 ELM_CHECK_WIDTYPE(obj, widtype);
5772 Widget_Data *wd = elm_widget_data_get(obj);
5774 wd->reorder_mode = reorder_mode;
5778 * Get the reorder mode
5780 * @param obj The genlist object
5781 * @return The reorder mode
5782 * (EINA_TRUE = on, EINA_FALSE = off)
5787 elm_genlist_reorder_mode_get(const Evas_Object *obj)
5789 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5790 Widget_Data *wd = elm_widget_data_get(obj);
5791 if (!wd) return EINA_FALSE;
5792 return wd->reorder_mode;