1 #include <Elementary.h>
2 #include <Elementary_Cursor.h>
6 #define MAX_ITEMS_PER_BLOCK 32
9 * @defgroup Genlist Genlist
11 * The aim was to have more expansive list than the simple list in
12 * Elementary that could have more flexible items and allow many more entries
13 * while still being fast and low on memory usage. At the same time it was
14 * also made to be able to do tree structures. But the price to pay is more
15 * complex when it comes to usage. If all you want is a simple list with
16 * icons and a single label, use the normal List object.
18 * Signals that you can add callbacks for are:
20 * clicked - This is called when a user has double-clicked an item. The
21 * event_info parameter is the genlist item that was double-clicked.
23 * selected - This is called when a user has made an item selected. The
24 * event_info parameter is the genlist item that was selected.
26 * unselected - This is called when a user has made an item unselected. The
27 * event_info parameter is the genlist item that was unselected.
29 * expanded - This is called when elm_genlist_item_expanded_set() is called
30 * and the item is now meant to be expanded. The event_info parameter is the
31 * genlist item that was indicated to expand. It is the job of this callback
32 * to then fill in the child items.
34 * contracted - This is called when elm_genlist_item_expanded_set() is called
35 * and the item is now meant to be contracted. The event_info parameter is
36 * the genlist item that was indicated to contract. It is the job of this
37 * callback to then delete the child items.
39 * expand,request - This is called when a user has indicated they want to
40 * expand a tree branch item. The callback should decide if the item can
41 * expand (has any children) and then call elm_genlist_item_expanded_set()
42 * appropriately to set the state. The event_info parameter is the genlist
43 * item that was indicated to expand.
45 * contract,request - This is called when a user has indicated they want to
46 * contract a tree branch item. The callback should decide if the item can
47 * contract (has any children) and then call elm_genlist_item_expanded_set()
48 * appropriately to set the state. The event_info parameter is the genlist
49 * item that was indicated to contract.
51 * realized - This is called when the item in the list is created as a real
52 * evas object. event_info parameter is the genlist item that was created.
53 * The object may be deleted at any time, so it is up to the caller to
54 * not use the object pointer from elm_genlist_item_object_get() in a way
55 * where it may point to freed objects.
57 * unrealized - This is called just before an item is unrealized. After
58 * this call icon objects provided will be deleted and the item object
59 * itself delete or be put into a floating cache.
61 * drag,start,up - This is called when the item in the list has been dragged
64 * drag,start,down - This is called when the item in the list has been dragged
65 * (not scrolled) down.
67 * drag,start,left - This is called when the item in the list has been dragged
68 * (not scrolled) left.
70 * drag,start,right - This is called when the item in the list has been dragged
71 * (not scrolled) right.
73 * drag,stop - This is called when the item in the list has stopped being
76 * drag - This is called when the item in the list is being dragged.
78 * longpressed - This is called when the item is pressed for a certain amount
79 * of time. By default it's 1 second.
81 * scroll,edge,top - This is called when the genlist is scrolled until the top
84 * scroll,edge,bottom - This is called when the genlist is scrolled until the
87 * scroll,edge,left - This is called when the genlist is scrolled until the
90 * scroll,edge,right - This is called when the genlist is scrolled until the
93 * multi,swipe,left - This is called when the genlist is multi-touch swiped
96 * multi,swipe,right - This is called when the genlist is multi-touch swiped
99 * multi,swipe,up - This is called when the genlist is multi-touch swiped
102 * multi,swipe,down - This is called when the genlist is multi-touch swiped
105 * multi,pinch,out - This is called when the genlist is multi-touch pinched
108 * multi,pinch,in - This is called when the genlist is multi-touch pinched
111 * Genlist has a fairly large API, mostly because it's relatively complex,
112 * trying to be both expansive, powerful and efficient. First we will begin
113 * an overview on the theory behind genlist.
115 * Evas tracks every object you create. Every time it processes an event
116 * (mouse move, down, up etc.) it needs to walk through objects and find out
117 * what event that affects. Even worse every time it renders display updates,
118 * in order to just calculate what to re-draw, it needs to walk through many
119 * many many objects. Thus, the more objects you keep active, the more
120 * overhead Evas has in just doing its work. It is advisable to keep your
121 * active objects to the minimum working set you need. Also remember that
122 * object creation and deletion carries an overhead, so there is a
123 * middle-ground, which is not easily determined. But don't keep massive lists
124 * of objects you can't see or use. Genlist does this with list objects. It
125 * creates and destroys them dynamically as you scroll around. It groups them
126 * into blocks so it can determine the visibility etc. of a whole block at
127 * once as opposed to having to walk the whole list. This 2-level list allows
128 * for very large numbers of items to be in the list (tests have used up to
129 * 2,000,000 items). Also genlist employs a queue for adding items. As items
130 * may be different sizes, every item added needs to be calculated as to its
131 * size and thus this presents a lot of overhead on populating the list, this
132 * genlist employs a queue. Any item added is queued and spooled off over
133 * time, actually appearing some time later, so if your list has many members
134 * you may find it takes a while for them to all appear, with your process
135 * consuming a lot of CPU while it is busy spooling.
137 * Genlist also implements a tree structure, but it does so with callbacks to
138 * the application, with the application filling in tree structures when
139 * requested (allowing for efficient building of a very deep tree that could
140 * even be used for file-management). See the above smart signal callbacks for
143 * An item in the genlist world can have 0 or more text labels (they can be
144 * regular text or textblock ??that's up to the style to determine), 0 or
145 * more icons (which are simply objects swallowed into the genlist item) and
146 * 0 or more boolean states that can be used for check, radio or other
147 * indicators by the edje theme style. An item may be one of several styles
148 * (Elementary provides 4 by default - ?
\9cdefault?? ?
\9cdouble_label?? "group_index"
149 * and "icon_top_text_bottom", but this can be extended by system or
150 * application custom themes/overlays/extensions).
152 * In order to implement the ability to add and delete items on the fly,
153 * Genlist implements a class/callback system where the application provides
154 * a structure with information about that type of item (genlist may contain
155 * multiple different items with different classes, states and styles).
156 * Genlist will call the functions in this struct (methods) when an item is
157 * ?
\9crealized??(that is created dynamically while scrolling). All objects will
158 * simply be deleted when no longer needed with evas_object_del(). The
159 * Elm_Genlist_Item_Class structure contains the following members:
161 * item_style - This is a constant string and simply defines the name of the
162 * item style. It must be specified and the default should be ?
\9cdefault??
164 * func.label_get - This function is called when an actual item object is
165 * created. The data parameter is the data parameter passed to
166 * elm_genlist_item_append() and related item creation functions. The obj
167 * parameter is the genlist object and the part parameter is the string name
168 * of the text part in the edje design that is listed as one of the possible
169 * labels that can be set. This function must return a strudup()'ed string as
170 * the caller will free() it when done.
172 * func.icon_get - This function is called when an actual item object is
173 * created. The data parameter is the data parameter passed to
174 * elm_genlist_item_append() and related item creation functions. The obj
175 * parameter is the genlist object and the part parameter is the string name
176 * of the icon part in the edje design that is listed as one of the possible
177 * icons that can be set. This must return NULL for no object or a valid
178 * object. The object will be deleted by genlist on shutdown or when the item
181 * func.state_get - This function is called when an actual item object is
182 * created. The data parameter is the data parameter passed to
183 * elm_genlist_item_append() and related item creation functions. The obj
184 * parameter is the genlist object and the part parameter is the string name
185 * of the state part in the edje design that is listed as one of the possible
186 * states that can be set. Return 0 for false or 1 for true. Genlist will
187 * emit a signal to the edje object with ?
\9celm,state,XXX,active???
\9celm??when
188 * true (the default is false), where XXX is the name of the part.
190 * func.del - This is called when elm_genlist_item_del() is called on an
191 * item, elm_genlist_clear() is called on the genlist, or
192 * elm_genlist_item_subitems_clear() is called to clear sub-items. This is
193 * intended for use when actual genlist items are deleted, so any backing
194 * data attached to the item (e.g. its data parameter on creation) can be
197 * Items can be added by several calls. All of them return a Elm_Genlist_Item
198 * handle that is an internal member inside the genlist. They all take a data
199 * parameter that is meant to be used for a handle to the applications
200 * internal data (eg the struct with the original item data). The parent
201 * parameter is the parent genlist item this belongs to if it is a tree or
202 * an indexed group, and NULL if there is no parent. The flags can be a bitmask
203 * of ELM_GENLIST_ITEM_NONE, ELM_GENLIST_ITEM_SUBITEMS and
204 * ELM_GENLIST_ITEM_GROUP. If ELM_GENLIST_ITEM_SUBITEMS is set then this item
205 * is displayed as an item that is able to expand and have child items.
206 * If ELM_GENLIST_ITEM_GROUP is set then this item is group idex item that is
207 * displayed at the top until the next group comes. The func parameter is a
208 * convenience callback that is called when the item is selected and the data
209 * parameter will be the func_data parameter, obj be the genlist object and
210 * event_info will be the genlist item.
212 * elm_genlist_item_append() appends an item to the end of the list, or if
213 * there is a parent, to the end of all the child items of the parent.
214 * elm_genlist_item_prepend() is the same but prepends to the beginning of
215 * the list or children list. elm_genlist_item_insert_before() inserts at
216 * item before another item and elm_genlist_item_insert_after() inserts after
217 * the indicated item.
219 * The application can clear the list with elm_genlist_clear() which deletes
220 * all the items in the list and elm_genlist_item_del() will delete a specific
221 * item. elm_genlist_item_subitems_clear() will clear all items that are
222 * children of the indicated parent item.
224 * If the application wants multiple items to be able to be selected,
225 * elm_genlist_multi_select_set() can enable this. If the list is
226 * single-selection only (the default), then elm_genlist_selected_item_get()
227 * will return the selected item, if any, or NULL I none is selected. If the
228 * list is multi-select then elm_genlist_selected_items_get() will return a
229 * list (that is only valid as long as no items are modified (added, deleted,
230 * selected or unselected)).
232 * To help inspect list items you can jump to the item at the top of the list
233 * with elm_genlist_first_item_get() which will return the item pointer, and
234 * similarly elm_genlist_last_item_get() gets the item at the end of the list.
235 * elm_genlist_item_next_get() and elm_genlist_item_prev_get() get the next
236 * and previous items respectively relative to the indicated item. Using
237 * these calls you can walk the entire item list/tree. Note that as a tree
238 * the items are flattened in the list, so elm_genlist_item_parent_get() will
239 * let you know which item is the parent (and thus know how to skip them if
242 * There are also convenience functions. elm_genlist_item_genlist_get() will
243 * return the genlist object the item belongs to. elm_genlist_item_show()
244 * will make the scroller scroll to show that specific item so its visible.
245 * elm_genlist_item_data_get() returns the data pointer set by the item
246 * creation functions.
248 * If an item changes (state of boolean changes, label or icons change),
249 * then use elm_genlist_item_update() to have genlist update the item with
250 * the new state. Genlist will re-realize the item thus call the functions
251 * in the _Elm_Genlist_Item_Class for that item.
253 * To programmatically (un)select an item use elm_genlist_item_selected_set().
254 * To get its selected state use elm_genlist_item_selected_get(). Similarly
255 * to expand/contract an item and get its expanded state, use
256 * elm_genlist_item_expanded_set() and elm_genlist_item_expanded_get(). And
257 * again to make an item disabled (unable to be selected and appear
258 * differently) use elm_genlist_item_disabled_set() to set this and
259 * elm_genlist_item_disabled_get() to get the disabled state.
261 * In general to indicate how the genlist should expand items horizontally to
262 * fill the list area, use elm_genlist_horizontal_mode_set(). Valid modes are
263 * ELM_LIST_LIMIT and ELM_LIST_SCROLL . The default is ELM_LIST_SCROLL. This
264 * mode means that if items are too wide to fit, the scroller will scroll
265 * horizontally. Otherwise items are expanded to fill the width of the
266 * viewport of the scroller. If it is ELM_LIST_LIMIT, items will be expanded
267 * to the viewport width and limited to that size. This can be combined with
268 * a different style that uses edjes' ellipsis feature (cutting text off like
269 * this: ?
\9ctex...??.
271 * Items will only call their selection func and callback when first becoming
272 * selected. Any further clicks will do nothing, unless you enable always
273 * select with elm_genlist_always_select_mode_set(). This means even if
274 * selected, every click will make the selected callbacks be called.
275 * elm_genlist_no_select_mode_set() will turn off the ability to select
276 * items entirely and they will neither appear selected nor call selected
277 * callback functions.
279 * Remember that you can create new styles and add your own theme augmentation
280 * per application with elm_theme_extension_add(). If you absolutely must
281 * have a specific style that overrides any theme the user or system sets up
282 * you can use elm_theme_overlay_add() to add such a file.
285 typedef struct _Widget_Data Widget_Data;
286 typedef struct _Item_Block Item_Block;
287 typedef struct _Pan Pan;
288 typedef struct _Item_Cache Item_Cache;
289 typedef struct _Edit_Data Edit_Data;
291 typedef enum _Elm_Genlist_Item_Move_effect_Mode
293 ELM_GENLIST_ITEM_MOVE_EFFECT_NONE = 0,
294 ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND = (1 << 0),
295 ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT = (1 << 1),
296 ELM_GENLIST_ITEM_MOVE_EFFECT_EDIT_MODE = (1 << 2),
297 ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE = (1 << 3),
298 } Elm_Genlist_Item_Move_effect_Mode;
302 Evas_Object *obj, *scr, *pan_smart;
303 Eina_Inlist *items, *blocks;
304 Eina_List *group_items;
306 Evas_Coord pan_x, pan_y, w, h, minw, minh, realminw, prev_viewport_w;
307 Ecore_Job *calc_job, *update_job;
308 Ecore_Idler *queue_idler;
309 Ecore_Idler *must_recalc_idler;
310 Eina_List *queue, *selected;
311 Elm_Genlist_Item *show_item;
312 Elm_Genlist_Item *last_selected_item;
313 Eina_Inlist *item_cache;
314 Elm_Genlist_Item *anchor_item;
317 Ecore_Timer *multi_timer;
318 Evas_Coord prev_x, prev_y, prev_mx, prev_my;
319 Evas_Coord cur_x, cur_y, cur_mx, cur_my;
320 Eina_Bool mouse_down : 1;
321 Eina_Bool multi_down : 1;
322 Eina_Bool multi_timeout : 1;
323 Eina_Bool multitouched : 1;
324 Eina_Bool on_hold : 1;
326 Eina_Bool always_select : 1;
327 Eina_Bool longpressed : 1;
328 Eina_Bool wasselected : 1;
329 Eina_Bool no_select : 1;
330 Eina_Bool bring_in : 1;
331 Eina_Bool compress : 1;
332 Eina_Bool height_for_width : 1;
333 Eina_Bool homogeneous : 1;
334 Eina_Bool clear_me : 1;
339 } history[SWIPE_MOVES];
341 int item_cache_count;
347 int max_items_per_block;
348 double longpress_timeout;
350 // TODO : refactoring
351 Eina_Bool reorder_mode : 1;
352 Eina_Bool reorder_pan_move : 1;
353 Eina_Bool reorder_deleted : 1;
354 Eina_Bool effect_mode : 1;
355 Eina_Bool select_all_check : 1;
356 Eina_Bool auto_scrolled : 1;
359 Eina_List *edit_field;
360 Elm_Genlist_Item *select_all_item;
361 Eina_List *sweeped_items;
362 Ecore_Timer *scr_hold_timer;
364 int group_item_width;
365 int group_item_height;
366 Elm_Genlist_Item *reorder_it, *reorder_rel;
367 Evas_Coord reorder_start_y;
368 Ecore_Animator *item_moving_effect_timer;
369 Evas_Object *alpha_bg;
370 Elm_Genlist_Item *expand_item;
371 Evas_Coord expand_item_end;
372 Evas_Coord expand_item_gap;
373 int move_effect_mode;
374 unsigned int start_time;
384 Evas_Coord x, y, w, h, minw, minh;
385 Eina_Bool want_unrealize : 1;
386 Eina_Bool realized : 1;
387 Eina_Bool changed : 1;
388 Eina_Bool updateme : 1;
389 Eina_Bool showme : 1;
390 Eina_Bool must_recalc : 1;
394 struct _Elm_Genlist_Item
396 Elm_Widget_Item base;
401 Evas_Coord x, y, w, h, minw, minh;
402 const Elm_Genlist_Item_Class *itc;
403 Elm_Genlist_Item *parent;
404 Elm_Genlist_Item *group_item;
405 Elm_Genlist_Item_Flags flags;
413 Eina_List *labels, *icons, *states, *icon_objs;
414 Ecore_Timer *long_timer;
415 Ecore_Timer *swipe_timer;
417 Evas_Coord scrl_x, scrl_y;
419 Elm_Genlist_Item *rel;
424 Elm_Tooltip_Item_Content_Cb content_cb;
425 Evas_Smart_Cb del_cb;
429 const char *mouse_cursor;
436 Eina_Bool before : 1;
438 Eina_Bool want_unrealize : 1;
439 Eina_Bool want_realize : 1;
440 Eina_Bool realized : 1;
441 Eina_Bool selected : 1;
442 Eina_Bool hilighted : 1;
443 Eina_Bool expanded : 1;
444 Eina_Bool disabled : 1;
445 Eina_Bool display_only : 1;
446 Eina_Bool mincalcd : 1;
447 Eina_Bool queued : 1;
448 Eina_Bool showme : 1;
449 Eina_Bool delete_me : 1;
451 Eina_Bool dragging : 1;
452 Eina_Bool updateme : 1;
453 Eina_Bool nocache : 1;
456 Eina_Bool move_effect_me : 1;
457 Eina_Bool effect_done : 1;
458 Eina_Bool reordering : 1;
459 Eina_Bool edit_select_check: 1;
460 Eina_Bool renamed : 1;
461 Eina_Bool effect_item_realized : 1;
462 Eina_Bool sweeped : 1;
463 Eina_Bool wassweeped : 1;
464 Eina_List *edit_icon_objs;
465 Evas_Object *edit_obj;
466 Eina_List *sweep_labels, *sweep_icons, *sweep_icon_objs;
468 Ecore_Animator *item_moving_effect_timer;
469 Evas_Coord old_scrl_x, old_scrl_y;
470 Evas_Coord pad_left, pad_right;
478 Evas_Object *base_view, *spacer;
480 const char *item_style; // it->itc->item_style
481 Eina_Bool tree : 1; // it->flags & ELM_GENLIST_ITEM_SUBITEMS
482 Eina_Bool compress : 1; // it->wd->compress
483 Eina_Bool odd : 1; // in & 0x1
485 Eina_Bool selected : 1; // it->selected
486 Eina_Bool disabled : 1; // it->disabled
487 Eina_Bool expanded : 1; // it->expanded
492 Elm_Genlist_Edit_Class *ec;
493 Elm_Genlist_Item *del_item;
494 Elm_Genlist_Item *reorder_item;
495 Elm_Genlist_Item *reorder_rel;
496 Evas_Object *del_confirm;
499 #define ELM_GENLIST_ITEM_FROM_INLIST(item) \
500 ((item) ? EINA_INLIST_CONTAINER_GET(item, Elm_Genlist_Item) : NULL)
504 Evas_Object_Smart_Clipped_Data __clipped_data;
506 Ecore_Job *resize_job;
509 static const char *widtype = NULL;
510 static void _item_cache_zero(Widget_Data *wd);
511 static void _del_hook(Evas_Object *obj);
512 static void _theme_hook(Evas_Object *obj);
513 static void _show_region_hook(void *data, Evas_Object *obj);
514 static void _sizing_eval(Evas_Object *obj);
515 static void _item_unrealize(Elm_Genlist_Item *it);
516 static void _item_block_unrealize(Item_Block *itb);
517 static void _calc_job(void *data);
518 static void _on_focus_hook(void *data,
520 static Eina_Bool _item_multi_select_up(Widget_Data *wd);
521 static Eina_Bool _item_multi_select_down(Widget_Data *wd);
522 static Eina_Bool _item_single_select_up(Widget_Data *wd);
523 static Eina_Bool _item_single_select_down(Widget_Data *wd);
524 static Eina_Bool _event_hook(Evas_Object *obj,
526 Evas_Callback_Type type,
528 static Eina_Bool _deselect_all_items(Widget_Data *wd);
529 static void _pan_calculate(Evas_Object *obj);
530 // TODO : refactoring
531 static Evas_Object* _create_tray_alpha_bg(const Evas_Object *obj);
532 static unsigned int current_time_get();
533 static Eina_Bool _item_moving_effect_timer_cb(void *data);
534 static int _item_flip_effect_show(Elm_Genlist_Item *it);
535 static void _effect_item_controls(Elm_Genlist_Item *it, int itx, int ity);
536 static void _effect_item_realize(Elm_Genlist_Item *it, Eina_Bool effect_on);
537 static void _effect_item_unrealize(Elm_Genlist_Item *it);
538 static void _item_slide(Elm_Genlist_Item *it, Eina_Bool slide_to_right);
539 static void _sweep_finish(void *data, Evas_Object *o, const char *emission, const char *source);
540 static void _create_sweep_objs(Elm_Genlist_Item *it);
541 static void _delete_sweep_objs(Elm_Genlist_Item *it);
542 static void _effect_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after);
543 static void _effect_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before);
544 static void _group_items_recalc(void *data);
545 static void _select_all_down_process(Elm_Genlist_Item *select_all_it, Eina_Bool checked, Eina_Bool update_items);
546 static void _checkbox_item_select_process(Elm_Genlist_Item *it);
547 static void _item_auto_scroll(void *data);
549 static Evas_Smart_Class _pan_sc = EVAS_SMART_CLASS_INIT_VERSION;
552 _event_hook(Evas_Object *obj,
553 Evas_Object *src __UNUSED__,
554 Evas_Callback_Type type,
557 if (type != EVAS_CALLBACK_KEY_DOWN) return EINA_FALSE;
558 Evas_Event_Key_Down *ev = event_info;
559 Widget_Data *wd = elm_widget_data_get(obj);
560 if (!wd) return EINA_FALSE;
561 if (!wd->items) return EINA_FALSE;
562 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return EINA_FALSE;
563 if (elm_widget_disabled_get(obj)) return EINA_FALSE;
565 Elm_Genlist_Item *it = NULL;
568 Evas_Coord step_x = 0;
569 Evas_Coord step_y = 0;
572 Evas_Coord page_x = 0;
573 Evas_Coord page_y = 0;
575 elm_smart_scroller_child_pos_get(wd->scr, &x, &y);
576 elm_smart_scroller_step_size_get(wd->scr, &step_x, &step_y);
577 elm_smart_scroller_page_size_get(wd->scr, &page_x, &page_y);
578 elm_smart_scroller_child_viewport_size_get(wd->scr, &v_w, &v_h);
580 if ((!strcmp(ev->keyname, "Left")) || (!strcmp(ev->keyname, "KP_Left")))
584 else if ((!strcmp(ev->keyname, "Right")) ||
585 (!strcmp(ev->keyname, "KP_Right")))
589 else if ((!strcmp(ev->keyname, "Up")) || (!strcmp(ev->keyname, "KP_Up")))
591 if (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
592 (_item_multi_select_up(wd)))
593 || (_item_single_select_up(wd)))
595 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
601 else if ((!strcmp(ev->keyname, "Down")) || (!strcmp(ev->keyname, "KP_Down")))
603 if (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
604 (_item_multi_select_down(wd)))
605 || (_item_single_select_down(wd)))
607 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
613 else if ((!strcmp(ev->keyname, "Home")) ||
614 (!strcmp(ev->keyname, "KP_Home")))
616 it = elm_genlist_first_item_get(obj);
617 elm_genlist_item_bring_in(it);
618 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
621 else if ((!strcmp(ev->keyname, "End")) ||
622 (!strcmp(ev->keyname, "KP_End")))
624 it = elm_genlist_last_item_get(obj);
625 elm_genlist_item_bring_in(it);
626 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
629 else if ((!strcmp(ev->keyname, "Prior")) ||
630 (!strcmp(ev->keyname, "KP_Prior")))
633 y -= -(page_y * v_h) / 100;
637 else if ((!strcmp(ev->keyname, "Next")) ||
638 (!strcmp(ev->keyname, "KP_Next")))
641 y += -(page_y * v_h) / 100;
645 else if(((!strcmp(ev->keyname, "Return")) ||
646 (!strcmp(ev->keyname, "KP_Enter")) ||
647 (!strcmp(ev->keyname, "space")))
648 && (!wd->multi) && (wd->selected))
650 Elm_Genlist_Item *it = elm_genlist_selected_item_get(obj);
651 elm_genlist_item_expanded_set(it,
652 !elm_genlist_item_expanded_get(it));
654 else if (!strcmp(ev->keyname, "Escape"))
656 if (!_deselect_all_items(wd)) return EINA_FALSE;
657 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
660 else return EINA_FALSE;
662 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
663 elm_smart_scroller_child_pos_set(wd->scr, x, y);
668 _deselect_all_items(Widget_Data *wd)
670 if (!wd->selected) return EINA_FALSE;
672 elm_genlist_item_selected_set(wd->selected->data, EINA_FALSE);
678 _item_multi_select_up(Widget_Data *wd)
680 if (!wd->selected) return EINA_FALSE;
681 if (!wd->multi) return EINA_FALSE;
683 Elm_Genlist_Item *prev = elm_genlist_item_prev_get(wd->last_selected_item);
684 if (!prev) return EINA_TRUE;
686 if (elm_genlist_item_selected_get(prev))
688 elm_genlist_item_selected_set(wd->last_selected_item, EINA_FALSE);
689 wd->last_selected_item = prev;
690 elm_genlist_item_show(wd->last_selected_item);
694 elm_genlist_item_selected_set(prev, EINA_TRUE);
695 elm_genlist_item_show(prev);
701 _item_multi_select_down(Widget_Data *wd)
703 if (!wd->selected) return EINA_FALSE;
704 if (!wd->multi) return EINA_FALSE;
706 Elm_Genlist_Item *next = elm_genlist_item_next_get(wd->last_selected_item);
707 if (!next) return EINA_TRUE;
709 if (elm_genlist_item_selected_get(next))
711 elm_genlist_item_selected_set(wd->last_selected_item, EINA_FALSE);
712 wd->last_selected_item = next;
713 elm_genlist_item_show(wd->last_selected_item);
717 elm_genlist_item_selected_set(next, EINA_TRUE);
718 elm_genlist_item_show(next);
724 _item_single_select_up(Widget_Data *wd)
726 Elm_Genlist_Item *prev;
729 prev = ELM_GENLIST_ITEM_FROM_INLIST(wd->items->last);
730 while ((prev) && (prev->delete_me))
731 prev = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(prev)->prev);
733 else prev = elm_genlist_item_prev_get(wd->last_selected_item);
735 if (!prev) return EINA_FALSE;
737 _deselect_all_items(wd);
739 elm_genlist_item_selected_set(prev, EINA_TRUE);
740 elm_genlist_item_show(prev);
745 _item_single_select_down(Widget_Data *wd)
747 Elm_Genlist_Item *next;
750 next = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
751 while ((next) && (next->delete_me))
752 next = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(next)->next);
754 else next = elm_genlist_item_next_get(wd->last_selected_item);
756 if (!next) return EINA_FALSE;
758 _deselect_all_items(wd);
760 elm_genlist_item_selected_set(next, EINA_TRUE);
761 elm_genlist_item_show(next);
766 _on_focus_hook(void *data __UNUSED__,
769 Widget_Data *wd = elm_widget_data_get(obj);
771 if (elm_widget_focus_get(obj))
773 edje_object_signal_emit(wd->obj, "elm,action,focus", "elm");
774 evas_object_focus_set(wd->obj, EINA_TRUE);
775 if ((wd->selected) && (!wd->last_selected_item))
776 wd->last_selected_item = eina_list_data_get(wd->selected);
780 edje_object_signal_emit(wd->obj, "elm,action,unfocus", "elm");
781 evas_object_focus_set(wd->obj, EINA_FALSE);
786 _del_hook(Evas_Object *obj)
788 Widget_Data *wd = elm_widget_data_get(obj);
790 _item_cache_zero(wd);
791 if (wd->calc_job) ecore_job_del(wd->calc_job);
792 if (wd->update_job) ecore_job_del(wd->update_job);
793 if (wd->must_recalc_idler) ecore_idler_del(wd->must_recalc_idler);
794 if (wd->multi_timer) ecore_timer_del(wd->multi_timer);
795 if (wd->scr_hold_timer) ecore_timer_del(wd->scr_hold_timer);
800 _del_pre_hook(Evas_Object *obj)
802 Widget_Data *wd = elm_widget_data_get(obj);
804 evas_object_del(wd->pan_smart);
805 wd->pan_smart = NULL;
806 elm_genlist_clear(obj);
810 _theme_hook(Evas_Object *obj)
812 Widget_Data *wd = elm_widget_data_get(obj);
815 _item_cache_zero(wd);
816 elm_smart_scroller_object_theme_set(obj, wd->scr, "genlist", "base",
817 elm_widget_style_get(obj));
818 // edje_object_scale_set(wd->scr, elm_widget_scale_get(obj) * _elm_config->scale);
819 wd->item_width = wd->item_height = 0;
820 wd->minw = wd->minh = wd->realminw = 0;
821 EINA_INLIST_FOREACH(wd->blocks, itb)
824 Elm_Genlist_Item *it;
826 if (itb->realized) _item_block_unrealize(itb);
827 EINA_LIST_FOREACH(itb->items, l, it)
828 it->mincalcd = EINA_FALSE;
830 itb->changed = EINA_TRUE;
832 if (wd->calc_job) ecore_job_del(wd->calc_job);
833 wd->calc_job = ecore_job_add(_calc_job, wd);
838 _show_region_hook(void *data, Evas_Object *obj)
840 Widget_Data *wd = elm_widget_data_get(data);
841 Evas_Coord x, y, w, h;
843 elm_widget_show_region_get(obj, &x, &y, &w, &h);
846 if (y > 0) elm_smart_scroller_child_region_show(wd->scr, x, y, w, h);
850 _sizing_eval(Evas_Object *obj)
852 Widget_Data *wd = elm_widget_data_get(obj);
853 Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
855 evas_object_size_hint_min_get(wd->scr, &minw, &minh);
856 evas_object_size_hint_max_get(wd->scr, &maxw, &maxh);
858 if (wd->height_for_width)
862 elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
863 if ((vw != 0) && (vw != wd->prev_viewport_w))
867 wd->prev_viewport_w = vw;
868 EINA_INLIST_FOREACH(wd->blocks, itb)
870 itb->must_recalc = EINA_TRUE;
872 if (wd->calc_job) ecore_job_del(wd->calc_job);
873 wd->calc_job = ecore_job_add(_calc_job, wd);
876 if (wd->mode == ELM_LIST_LIMIT)
878 Evas_Coord vmw, vmh, vw, vh;
882 elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
883 if ((minw > 0) && (vw < minw)) vw = minw;
884 else if ((maxw > 0) && (vw > maxw))
886 edje_object_size_min_calc
887 (elm_smart_scroller_edje_object_get(wd->scr), &vmw, &vmh);
894 edje_object_size_min_calc
895 (elm_smart_scroller_edje_object_get(wd->scr), &vmw, &vmh);
899 evas_object_size_hint_min_set(obj, minw, minh);
900 evas_object_size_hint_max_set(obj, maxw, maxh);
904 _item_hilight(Elm_Genlist_Item *it)
906 const char *selectraise;
907 if ((it->wd->no_select) || (it->delete_me) || (it->hilighted) ||
908 (it->disabled)) return;
909 if ((!it->sweeped) && (!it->wd->edit_mode))
910 edje_object_signal_emit(it->base.view, "elm,state,selected", "elm");
911 selectraise = edje_object_data_get(it->base.view, "selectraise");
912 if ((selectraise) && (!strcmp(selectraise, "on")))
914 if (!it->wd->edit_mode) evas_object_raise(it->base.view);
915 if ((it->group_item) && (it->group_item->realized))
916 evas_object_raise(it->group_item->base.view);
918 it->hilighted = EINA_TRUE;
919 if (it->wd->select_all_item) evas_object_raise(it->wd->select_all_item->base.view);
923 _item_block_del(Elm_Genlist_Item *it)
926 Item_Block *itb = it->block;
928 itb->items = eina_list_remove(itb->items, it);
930 itb->changed = EINA_TRUE;
931 if (!it->wd->reorder_deleted)
933 if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
934 it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
938 il = EINA_INLIST_GET(itb);
939 Item_Block *itbn = (Item_Block *)(il->next);
941 it->parent->items = eina_list_remove(it->parent->items, it);
943 it->wd->blocks = eina_inlist_remove(it->wd->blocks, il);
945 if (itbn) itbn->changed = EINA_TRUE;
949 if (itb->count < itb->wd->max_items_per_block/2)
951 il = EINA_INLIST_GET(itb);
952 Item_Block *itbp = (Item_Block *)(il->prev);
953 Item_Block *itbn = (Item_Block *)(il->next);
954 if ((itbp) && ((itbp->count + itb->count) < itb->wd->max_items_per_block + itb->wd->max_items_per_block/2))
956 Elm_Genlist_Item *it2;
958 EINA_LIST_FREE(itb->items, it2)
961 itbp->items = eina_list_append(itbp->items, it2);
963 itbp->changed = EINA_TRUE;
965 it->wd->blocks = eina_inlist_remove(it->wd->blocks,
966 EINA_INLIST_GET(itb));
969 else if ((itbn) && ((itbn->count + itb->count) < itb->wd->max_items_per_block + itb->wd->max_items_per_block/2))
973 Eina_List *last = eina_list_last(itb->items);
974 Elm_Genlist_Item *it2 = last->data;
977 itb->items = eina_list_remove_list(itb->items, last);
978 itbn->items = eina_list_prepend(itbn->items, it2);
980 itbn->changed = EINA_TRUE;
983 eina_inlist_remove(it->wd->blocks, EINA_INLIST_GET(itb));
991 _item_subitems_clear(Elm_Genlist_Item *it)
994 Eina_List *tl = NULL, *l;
995 Elm_Genlist_Item *it2;
997 EINA_LIST_FOREACH(it->items, l, it2)
998 tl = eina_list_append(tl, it2);
1000 EINA_LIST_FREE(tl, it2)
1001 elm_genlist_item_del(it2);
1005 _item_del(Elm_Genlist_Item *it)
1007 elm_widget_item_pre_notify_del(it);
1008 elm_genlist_item_subitems_clear(it);
1009 it->wd->walking -= it->walking;
1010 if (it->wd->show_item == it) it->wd->show_item = NULL;
1011 if (it->selected) it->wd->selected = eina_list_remove(it->wd->selected, it);
1012 if (it->realized) _item_unrealize(it);
1013 if (it->effect_item_realized) _effect_item_unrealize(it);
1014 if (it->block) _item_block_del(it);
1015 if ((!it->delete_me) && (it->itc->func.del))
1016 it->itc->func.del((void *)it->base.data, it->base.widget);
1017 it->delete_me = EINA_TRUE;
1019 it->wd->queue = eina_list_remove(it->wd->queue, it);
1021 if (it->wd->anchor_item == it)
1023 it->wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
1024 if (!it->wd->anchor_item)
1025 it->wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
1028 it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
1030 it->parent->items = eina_list_remove(it->parent->items, it);
1031 if (it->flags & ELM_GENLIST_ITEM_GROUP)
1032 it->wd->group_items = eina_list_remove(it->wd->group_items, it);
1033 if (it->long_timer) ecore_timer_del(it->long_timer);
1034 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
1036 if (it->tooltip.del_cb)
1037 it->tooltip.del_cb((void *)it->tooltip.data, it->base.widget, it);
1039 elm_widget_item_del(it);
1040 it->wd->total_num--; // todo : remove
1044 _item_select(Elm_Genlist_Item *it)
1046 if ((it->wd->no_select) || (it->delete_me)) return;
1047 if (it == it->wd->select_all_item)
1049 if(it->wd->select_all_check)
1050 _select_all_down_process(it->wd->select_all_item, EINA_FALSE, EINA_TRUE);
1052 _select_all_down_process(it->wd->select_all_item, EINA_TRUE, EINA_TRUE);
1057 if (it->wd->always_select) goto call;
1060 it->selected = EINA_TRUE;
1061 it->wd->selected = eina_list_append(it->wd->selected, it);
1065 if (it->func.func) it->func.func((void *)it->func.data, it->base.widget, it);
1067 evas_object_smart_callback_call(it->base.widget, "selected", it);
1070 if ((it->wd->clear_me) && (!it->wd->walking))
1071 elm_genlist_clear(it->base.widget);
1074 if ((!it->walking) && (it->delete_me))
1076 if (!it->relcount) _item_del(it);
1079 it->wd->last_selected_item = it;
1083 _item_unselect(Elm_Genlist_Item *it)
1085 const char *stacking, *selectraise;
1087 if (it == it->wd->select_all_item) return;
1088 if ((it->delete_me) || (!it->hilighted)) return;
1090 edje_object_signal_emit(it->base.view, "elm,state,unselected", "elm");
1091 stacking = edje_object_data_get(it->base.view, "stacking");
1092 selectraise = edje_object_data_get(it->base.view, "selectraise");
1093 if ((selectraise) && (!strcmp(selectraise, "on")))
1095 if ((stacking) && (!strcmp(stacking, "below")))
1096 evas_object_lower(it->base.view);
1098 it->hilighted = EINA_FALSE;
1101 it->selected = EINA_FALSE;
1102 it->wd->selected = eina_list_remove(it->wd->selected, it);
1103 evas_object_smart_callback_call(it->base.widget, "unselected", it);
1108 _mouse_move(void *data,
1109 Evas *evas __UNUSED__,
1113 Elm_Genlist_Item *it = data;
1114 Evas_Event_Mouse_Move *ev = event_info;
1115 Evas_Coord minw = 0, minh = 0, x, y, dx, dy, adx, ady;
1117 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1119 if (!it->wd->on_hold)
1121 it->wd->on_hold = EINA_TRUE;
1122 if (!it->wd->wasselected)
1126 if (it->wd->multitouched)
1128 it->wd->cur_x = ev->cur.canvas.x;
1129 it->wd->cur_y = ev->cur.canvas.y;
1132 if ((it->dragging) && (it->down))
1134 if (it->wd->movements == SWIPE_MOVES) it->wd->swipe = EINA_TRUE;
1137 it->wd->history[it->wd->movements].x = ev->cur.canvas.x;
1138 it->wd->history[it->wd->movements].y = ev->cur.canvas.y;
1139 if (abs((it->wd->history[it->wd->movements].x -
1140 it->wd->history[0].x)) > 40)
1141 it->wd->swipe = EINA_TRUE;
1143 it->wd->movements++;
1147 ecore_timer_del(it->long_timer);
1148 it->long_timer = NULL;
1150 evas_object_smart_callback_call(it->base.widget, "drag", it);
1153 if ((!it->down) /* || (it->wd->on_hold)*/ || (it->wd->longpressed))
1157 ecore_timer_del(it->long_timer);
1158 it->long_timer = NULL;
1160 if (it->wd->reorder_mode && it->wd->reorder_it)
1162 Evas_Coord ox,oy,oh,ow, sel_all_h = 0;
1163 evas_object_geometry_get(it->wd->pan_smart, &ox, &oy, &ow, &oh);
1164 int it_y = ev->cur.canvas.y - it->wd->reorder_it->dy;
1165 if (!it->wd->reorder_start_y) it->wd->reorder_start_y = it->block->y + it->y;
1167 evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
1168 if (it->wd->select_all_item)
1169 sel_all_h = it->wd->select_all_item->h;
1170 if (it_y < oy + sel_all_h) _effect_item_controls(it, it->scrl_x, oy + sel_all_h);
1171 else if (it_y + it->wd->reorder_it->h > oy+oh) _effect_item_controls(it, it->scrl_x, oy + oh - it->wd->reorder_it->h);
1172 else _effect_item_controls(it, it->scrl_x, it_y);
1174 if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
1175 it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
1179 if (!it->display_only)
1180 elm_coords_finger_size_adjust(1, &minw, 1, &minh);
1181 evas_object_geometry_get(obj, &x, &y, NULL, NULL);
1182 x = ev->cur.canvas.x - x;
1183 y = ev->cur.canvas.y - y;
1186 if (adx < 0) adx = -dx;
1189 if (ady < 0) ady = -dy;
1192 if ((adx > minw) || (ady > minh))
1194 it->dragging = EINA_TRUE;
1197 ecore_timer_del(it->long_timer);
1198 it->long_timer = NULL;
1200 if (!it->wd->wasselected)
1205 evas_object_smart_callback_call(it->base.widget,
1206 "drag,start,up", it);
1211 evas_object_smart_callback_call(it->base.widget,
1212 "drag,start,left", it);
1213 _item_slide(it, EINA_FALSE);
1217 evas_object_smart_callback_call(it->base.widget,
1218 "drag,start,right", it);
1219 _item_slide(it, EINA_TRUE);
1226 evas_object_smart_callback_call(it->base.widget,
1227 "drag,start,down", it);
1232 evas_object_smart_callback_call(it->base.widget,
1233 "drag,start,left", it);
1234 _item_slide(it, EINA_FALSE);
1238 evas_object_smart_callback_call(it->base.widget,
1239 "drag,start,right", it);
1240 _item_slide(it, EINA_TRUE);
1248 _long_press(void *data)
1250 Elm_Genlist_Item *it = data;
1251 Elm_Genlist_Item *it_tmp;
1252 static Eina_Bool done = EINA_FALSE;
1253 //static Eina_Bool contracted = EINA_FALSE;
1257 it->long_timer = NULL;
1258 if ((it->disabled) || (it->dragging) || (it->display_only))
1259 return ECORE_CALLBACK_CANCEL;
1260 it->wd->longpressed = EINA_TRUE;
1261 evas_object_smart_callback_call(it->base.widget, "longpressed", it);
1262 if ((it->wd->reorder_mode) && (it != it->wd->select_all_item) && (it->flags != ELM_GENLIST_ITEM_GROUP))
1264 it->wd->reorder_it = it;
1265 it->wd->reorder_start_y = 0;
1266 evas_object_raise(it->edit_obj);
1267 elm_smart_scroller_hold_set(it->wd->scr, EINA_TRUE);
1268 edje_object_signal_emit(it->edit_obj, "elm,action,item,reorder_start", "elm");
1270 EINA_INLIST_FOREACH(it->wd->blocks, itb)
1275 EINA_LIST_FOREACH(itb->items, l, it_tmp)
1277 if (it_tmp->flags != ELM_GENLIST_ITEM_GROUP && it_tmp->realized)
1279 _item_unselect(it_tmp);
1291 EINA_LIST_FOREACH(it->items, l, it_tmp)
1293 if (elm_genlist_item_expanded_get(it_tmp))
1295 elm_genlist_item_expanded_set(it_tmp, EINA_FALSE);
1296 return ECORE_CALLBACK_RENEW;
1300 if (elm_genlist_item_expanded_get(it)) {
1301 elm_genlist_item_expanded_set(it, EINA_FALSE);
1302 return ECORE_CALLBACK_RENEW;
1304 if (it->wd->edit_field && it->renamed)
1305 elm_genlist_item_rename_mode_set(it, EINA_FALSE);
1308 return ECORE_CALLBACK_CANCEL;
1312 _swipe(Elm_Genlist_Item *it)
1317 it->wd->swipe = EINA_FALSE;
1318 for (i = 0; i < it->wd->movements; i++)
1320 sum += it->wd->history[i].x;
1321 if (abs(it->wd->history[0].y - it->wd->history[i].y) > 10) return;
1324 sum /= it->wd->movements;
1325 if (abs(sum - it->wd->history[0].x) <= 10) return;
1326 evas_object_smart_callback_call(it->base.widget, "swipe", it);
1330 _swipe_cancel(void *data)
1332 Elm_Genlist_Item *it = data;
1334 if (!it) return ECORE_CALLBACK_CANCEL;
1335 it->wd->swipe = EINA_FALSE;
1336 it->wd->movements = 0;
1337 return ECORE_CALLBACK_RENEW;
1341 _multi_cancel(void *data)
1343 Widget_Data *wd = data;
1345 if (!wd) return ECORE_CALLBACK_CANCEL;
1346 wd->multi_timeout = EINA_TRUE;
1347 return ECORE_CALLBACK_RENEW;
1351 _multi_touch_gesture_eval(void *data)
1353 Elm_Genlist_Item *it = data;
1355 it->wd->multitouched = EINA_FALSE;
1356 if (it->wd->multi_timer)
1358 ecore_timer_del(it->wd->multi_timer);
1359 it->wd->multi_timer = NULL;
1361 if (it->wd->multi_timeout)
1363 it->wd->multi_timeout = EINA_FALSE;
1367 Evas_Coord minw = 0, minh = 0;
1368 Evas_Coord off_x, off_y, off_mx, off_my;
1370 elm_coords_finger_size_adjust(1, &minw, 1, &minh);
1371 off_x = abs(it->wd->cur_x - it->wd->prev_x);
1372 off_y = abs(it->wd->cur_y - it->wd->prev_y);
1373 off_mx = abs(it->wd->cur_mx - it->wd->prev_mx);
1374 off_my = abs(it->wd->cur_my - it->wd->prev_my);
1376 if (((off_x > minw) || (off_y > minh)) && ((off_mx > minw) || (off_my > minh)))
1378 if ((off_x + off_mx) > (off_y + off_my))
1380 if ((it->wd->cur_x > it->wd->prev_x) && (it->wd->cur_mx > it->wd->prev_mx))
1381 evas_object_smart_callback_call(it->base.widget,
1382 "multi,swipe,right", it);
1383 else if ((it->wd->cur_x < it->wd->prev_x) && (it->wd->cur_mx < it->wd->prev_mx))
1384 evas_object_smart_callback_call(it->base.widget,
1385 "multi,swipe,left", it);
1386 else if (abs(it->wd->cur_x - it->wd->cur_mx) > abs(it->wd->prev_x - it->wd->prev_mx))
1387 evas_object_smart_callback_call(it->base.widget,
1388 "multi,pinch,out", it);
1390 evas_object_smart_callback_call(it->base.widget,
1391 "multi,pinch,in", it);
1395 if ((it->wd->cur_y > it->wd->prev_y) && (it->wd->cur_my > it->wd->prev_my))
1396 evas_object_smart_callback_call(it->base.widget,
1397 "multi,swipe,down", it);
1398 else if ((it->wd->cur_y < it->wd->prev_y) && (it->wd->cur_my < it->wd->prev_my))
1399 evas_object_smart_callback_call(it->base.widget,
1400 "multi,swipe,up", it);
1401 else if (abs(it->wd->cur_y - it->wd->cur_my) > abs(it->wd->prev_y - it->wd->prev_my))
1402 evas_object_smart_callback_call(it->base.widget,
1403 "multi,pinch,out", it);
1405 evas_object_smart_callback_call(it->base.widget,
1406 "multi,pinch,in", it);
1409 it->wd->multi_timeout = EINA_FALSE;
1413 _multi_down(void *data,
1414 Evas *evas __UNUSED__,
1415 Evas_Object *obj __UNUSED__,
1418 Elm_Genlist_Item *it = data;
1419 Evas_Event_Multi_Down *ev = event_info;
1421 if ((it->wd->multi_device != 0) || (it->wd->multitouched) || (it->wd->multi_timeout)) return;
1422 it->wd->multi_device = ev->device;
1423 it->wd->multi_down = EINA_TRUE;
1424 it->wd->multitouched = EINA_TRUE;
1425 it->wd->prev_mx = ev->canvas.x;
1426 it->wd->prev_my = ev->canvas.y;
1427 if (!it->wd->wasselected) _item_unselect(it);
1428 it->wd->wasselected = EINA_FALSE;
1429 it->wd->longpressed = EINA_FALSE;
1432 ecore_timer_del(it->long_timer);
1433 it->long_timer = NULL;
1437 it->dragging = EINA_FALSE;
1438 evas_object_smart_callback_call(it->base.widget, "drag,stop", it);
1440 if (it->swipe_timer)
1442 ecore_timer_del(it->swipe_timer);
1443 it->swipe_timer = NULL;
1445 if (it->wd->on_hold)
1447 it->wd->swipe = EINA_FALSE;
1448 it->wd->movements = 0;
1449 it->wd->on_hold = EINA_FALSE;
1454 _multi_up(void *data,
1455 Evas *evas __UNUSED__,
1456 Evas_Object *obj __UNUSED__,
1459 Elm_Genlist_Item *it = data;
1460 Evas_Event_Multi_Up *ev = event_info;
1462 if (it->wd->multi_device != ev->device) return;
1463 it->wd->multi_device = 0;
1464 it->wd->multi_down = EINA_FALSE;
1465 if (it->wd->mouse_down) return;
1466 _multi_touch_gesture_eval(data);
1470 _multi_move(void *data,
1471 Evas *evas __UNUSED__,
1472 Evas_Object *obj __UNUSED__,
1475 Elm_Genlist_Item *it = data;
1476 Evas_Event_Multi_Move *ev = event_info;
1478 if (it->wd->multi_device != ev->device) return;
1479 it->wd->cur_mx = ev->cur.canvas.x;
1480 it->wd->cur_my = ev->cur.canvas.y;
1484 _mouse_down(void *data,
1485 Evas *evas __UNUSED__,
1489 Elm_Genlist_Item *it = data;
1490 Evas_Event_Mouse_Down *ev = event_info;
1493 if (ev->button != 1) return;
1494 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1496 it->wd->on_hold = EINA_TRUE;
1499 if (it->wd->edit_field && !it->renamed)
1500 elm_genlist_item_rename_mode_set(it, EINA_FALSE);
1501 it->down = EINA_TRUE;
1502 it->dragging = EINA_FALSE;
1503 evas_object_geometry_get(obj, &x, &y, NULL, NULL);
1504 it->dx = ev->canvas.x - x;
1505 it->dy = ev->canvas.y - y;
1506 it->wd->mouse_down = EINA_TRUE;
1507 if (!it->wd->multitouched)
1509 it->wd->prev_x = ev->canvas.x;
1510 it->wd->prev_y = ev->canvas.y;
1511 it->wd->multi_timeout = EINA_FALSE;
1512 if (it->wd->multi_timer) ecore_timer_del(it->wd->multi_timer);
1513 it->wd->multi_timer = ecore_timer_add(1, _multi_cancel, it->wd);
1515 it->wd->longpressed = EINA_FALSE;
1516 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) it->wd->on_hold = EINA_TRUE;
1517 else it->wd->on_hold = EINA_FALSE;
1518 if (it->wd->on_hold) return;
1519 it->wd->wasselected = it->selected;
1521 if (ev->flags & EVAS_BUTTON_DOUBLE_CLICK)
1522 evas_object_smart_callback_call(it->base.widget, "clicked", it);
1523 if (it->long_timer) ecore_timer_del(it->long_timer);
1524 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
1525 it->swipe_timer = ecore_timer_add(0.4, _swipe_cancel, it);
1527 it->long_timer = ecore_timer_add(it->wd->longpress_timeout, _long_press,
1530 it->long_timer = NULL;
1531 it->wd->swipe = EINA_FALSE;
1532 it->wd->movements = 0;
1536 _mouse_up(void *data,
1537 Evas *evas __UNUSED__,
1538 Evas_Object *obj __UNUSED__,
1541 Elm_Genlist_Item *it = data;
1542 Evas_Event_Mouse_Up *ev = event_info;
1543 Eina_Bool dragged = EINA_FALSE;
1545 if (ev->button != 1) return;
1546 it->down = EINA_FALSE;
1547 it->wd->mouse_down = EINA_FALSE;
1548 if (it->wd->multitouched)
1550 if (it->wd->multi_down) return;
1551 _multi_touch_gesture_eval(data);
1554 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) it->wd->on_hold = EINA_TRUE;
1555 else it->wd->on_hold = EINA_FALSE;
1558 ecore_timer_del(it->long_timer);
1559 it->long_timer = NULL;
1563 it->dragging = EINA_FALSE;
1564 evas_object_smart_callback_call(it->base.widget, "drag,stop", it);
1567 if (it->swipe_timer)
1569 ecore_timer_del(it->swipe_timer);
1570 it->swipe_timer = NULL;
1572 if (it->wd->multi_timer)
1574 ecore_timer_del(it->wd->multi_timer);
1575 it->wd->multi_timer = NULL;
1576 it->wd->multi_timeout = EINA_FALSE;
1578 if (it->wd->on_hold)
1580 if (it->wd->swipe) _swipe(data);
1581 it->wd->longpressed = EINA_FALSE;
1582 it->wd->on_hold = EINA_FALSE;
1585 if (it->wd->reorder_mode)
1587 Evas_Coord rox, roy, row, roh, sel_all_h = 0;
1588 Elm_Genlist_Item *reorder_it = it->wd->reorder_it;
1591 Evas_Coord ox,oy,oh,ow;
1592 evas_object_geometry_get(it->wd->pan_smart, &ox, &oy, &ow, &oh);
1593 evas_object_geometry_get(it->wd->reorder_it->base.view, &rox, &roy, &row, &roh);
1594 if (it->wd->select_all_item) sel_all_h = it->wd->select_all_item->h;
1595 if (it->wd->reorder_rel)
1597 if (it->wd->reorder_it->parent == it->wd->reorder_rel->parent) // todo : refactoring
1599 if (roy + oy - sel_all_h <= it->wd->reorder_rel->scrl_y)
1600 _effect_item_move_before(it->wd->reorder_it, it->wd->reorder_rel);
1602 _effect_item_move_after(it->wd->reorder_it, it->wd->reorder_rel);
1605 it->wd->reorder_deleted = EINA_FALSE;
1606 it->wd->reorder_it = it->wd->reorder_rel = NULL;
1607 elm_smart_scroller_hold_set(it->wd->scr, EINA_FALSE);
1608 edje_object_signal_emit(it->edit_obj, "elm,action,item,reorder_end", "elm");
1611 if (it->wd->longpressed)
1613 it->wd->longpressed = EINA_FALSE;
1614 if (!it->wd->wasselected)
1616 it->wd->wasselected = EINA_FALSE;
1621 if (it->want_unrealize)
1623 _item_unrealize(it);
1624 if (it->block->want_unrealize)
1625 _item_block_unrealize(it->block);
1628 if ((it->disabled) || (dragged) || (it->display_only)) return;
1629 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
1632 if ((!it->selected) && (!it->sweeped))
1637 else _item_unselect(it);
1643 Widget_Data *wd = it->wd;
1646 while (wd->selected) _item_unselect(wd->selected->data);
1651 const Eina_List *l, *l_next;
1652 Elm_Genlist_Item *it2;
1654 EINA_LIST_FOREACH_SAFE(it->wd->selected, l, l_next, it2)
1655 if (it2 != it) _item_unselect(it2);
1656 //_item_hilight(it);
1668 _signal_expand_toggle(void *data,
1669 Evas_Object *obj __UNUSED__,
1670 const char *emission __UNUSED__,
1671 const char *source __UNUSED__)
1673 Elm_Genlist_Item *it = data;
1676 evas_object_smart_callback_call(it->base.widget, "contract,request", it);
1678 evas_object_smart_callback_call(it->base.widget, "expand,request", it);
1682 _signal_expand(void *data,
1683 Evas_Object *obj __UNUSED__,
1684 const char *emission __UNUSED__,
1685 const char *source __UNUSED__)
1687 Elm_Genlist_Item *it = data;
1690 evas_object_smart_callback_call(it->base.widget, "expand,request", it);
1694 _signal_contract(void *data,
1695 Evas_Object *obj __UNUSED__,
1696 const char *emission __UNUSED__,
1697 const char *source __UNUSED__)
1699 Elm_Genlist_Item *it = data;
1702 evas_object_smart_callback_call(it->base.widget, "contract,request", it);
1706 _item_cache_clean(Widget_Data *wd)
1708 while ((wd->item_cache) && (wd->item_cache_count > wd->item_cache_max))
1712 itc = EINA_INLIST_CONTAINER_GET(wd->item_cache->last, Item_Cache);
1713 wd->item_cache = eina_inlist_remove(wd->item_cache,
1714 wd->item_cache->last);
1715 wd->item_cache_count--;
1716 if (itc->spacer) evas_object_del(itc->spacer);
1717 if (itc->base_view) evas_object_del(itc->base_view);
1718 if (itc->item_style) eina_stringshare_del(itc->item_style);
1724 _item_cache_zero(Widget_Data *wd)
1726 int pmax = wd->item_cache_max;
1727 wd->item_cache_max = 0;
1728 _item_cache_clean(wd);
1729 wd->item_cache_max = pmax;
1733 _item_cache_add(Elm_Genlist_Item *it)
1737 if (it->wd->item_cache_max <= 0)
1739 evas_object_del(it->base.view);
1740 it->base.view = NULL;
1741 evas_object_del(it->spacer);
1746 it->wd->item_cache_count++;
1747 itc = calloc(1, sizeof(Item_Cache));
1749 it->wd->item_cache = eina_inlist_prepend(it->wd->item_cache,
1750 EINA_INLIST_GET(itc));
1751 itc->spacer = it->spacer;
1753 itc->base_view = it->base.view;
1754 it->base.view = NULL;
1755 evas_object_hide(itc->base_view);
1756 evas_object_move(itc->base_view, -9999, -9999);
1757 itc->item_style = eina_stringshare_add(it->itc->item_style);
1758 if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) itc->tree = 1;
1759 itc->compress = (it->wd->compress);
1760 itc->odd = (it->order_num_in & 0x1);
1761 itc->selected = it->selected;
1762 itc->disabled = it->disabled;
1763 itc->expanded = it->expanded;
1766 ecore_timer_del(it->long_timer);
1767 it->long_timer = NULL;
1769 if (it->swipe_timer)
1771 ecore_timer_del(it->swipe_timer);
1772 it->swipe_timer = NULL;
1774 // FIXME: other callbacks?
1775 edje_object_signal_callback_del_full(itc->base_view,
1776 "elm,action,expand,toggle",
1777 "elm", _signal_expand_toggle, it);
1778 edje_object_signal_callback_del_full(itc->base_view, "elm,action,expand",
1780 _signal_expand, it);
1781 edje_object_signal_callback_del_full(itc->base_view, "elm,action,contract",
1782 "elm", _signal_contract, it);
1783 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_DOWN,
1785 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_UP,
1787 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_MOVE,
1789 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_DOWN,
1791 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_UP,
1793 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_MOVE,
1795 _item_cache_clean(it->wd);
1799 _item_cache_find(Elm_Genlist_Item *it)
1802 Eina_Bool tree = 0, odd;
1804 if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) tree = 1;
1805 odd = (it->order_num_in & 0x1);
1806 EINA_INLIST_FOREACH(it->wd->item_cache, itc)
1808 if ((itc->selected) || (itc->disabled) || (itc->expanded))
1810 if ((itc->tree == tree) &&
1811 (itc->odd == odd) &&
1812 (itc->compress == it->wd->compress) &&
1813 (!strcmp(it->itc->item_style, itc->item_style)))
1815 it->wd->item_cache = eina_inlist_remove(it->wd->item_cache,
1816 EINA_INLIST_GET(itc));
1817 it->wd->item_cache_count--;
1825 _item_cache_free(Item_Cache *itc)
1827 if (itc->spacer) evas_object_del(itc->spacer);
1828 if (itc->base_view) evas_object_del(itc->base_view);
1829 if (itc->item_style) eina_stringshare_del(itc->item_style);
1834 _item_realize(Elm_Genlist_Item *it,
1838 Elm_Genlist_Item *it2;
1839 const char *stacking;
1840 const char *treesize;
1842 int depth, tsize = 20;
1843 Item_Cache *itc = NULL;
1845 if ((it->realized) || (it->delete_me)) return;
1846 it->order_num_in = in;
1847 if (it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE) calc = EINA_FALSE;
1849 it->nocache = EINA_FALSE;
1851 itc = _item_cache_find(it);
1852 if ((!it->wd->effect_mode) && (itc))
1854 it->base.view = itc->base_view;
1855 itc->base_view = NULL;
1856 it->spacer = itc->spacer;
1861 it->base.view = edje_object_add(evas_object_evas_get(it->base.widget));
1862 edje_object_scale_set(it->base.view,
1863 elm_widget_scale_get(it->base.widget) *
1864 _elm_config->scale);
1865 evas_object_smart_member_add(it->base.view, it->wd->pan_smart);
1866 elm_widget_sub_object_add(it->base.widget, it->base.view);
1868 if (it->flags & ELM_GENLIST_ITEM_SUBITEMS)
1869 strncpy(buf, "tree", sizeof(buf));
1870 else strncpy(buf, "item", sizeof(buf));
1871 if (it->wd->compress)
1872 strncat(buf, "_compress", sizeof(buf) - strlen(buf));
1874 if (in & 0x1) strncat(buf, "_odd", sizeof(buf) - strlen(buf));
1875 strncat(buf, "/", sizeof(buf) - strlen(buf));
1876 strncat(buf, it->itc->item_style, sizeof(buf) - strlen(buf));
1878 _elm_theme_object_set(it->base.widget, it->base.view, "genlist", buf,
1879 elm_widget_style_get(it->base.widget));
1881 evas_object_rectangle_add(evas_object_evas_get(it->base.widget));
1882 evas_object_color_set(it->spacer, 0, 0, 0, 0);
1883 elm_widget_sub_object_add(it->base.widget, it->spacer);
1885 for (it2 = it, depth = 0; it2->parent; it2 = it2->parent)
1887 if (it2->parent->flags != ELM_GENLIST_ITEM_GROUP) depth += 1;
1889 it->expanded_depth = depth;
1890 treesize = edje_object_data_get(it->base.view, "treesize");
1891 if (treesize) tsize = atoi(treesize);
1892 evas_object_size_hint_min_set(it->spacer,
1893 (depth * tsize) * _elm_config->scale, 1);
1894 edje_object_part_swallow(it->base.view, "elm.swallow.pad", it->spacer);
1897 edje_object_signal_callback_add(it->base.view,
1898 "elm,action,expand,toggle",
1899 "elm", _signal_expand_toggle, it);
1900 edje_object_signal_callback_add(it->base.view, "elm,action,expand",
1901 "elm", _signal_expand, it);
1902 edje_object_signal_callback_add(it->base.view, "elm,action,contract",
1903 "elm", _signal_contract, it);
1904 stacking = edje_object_data_get(it->base.view, "stacking");
1907 if (!strcmp(stacking, "below")) evas_object_lower(it->base.view);
1908 else if (!strcmp(stacking, "above"))
1909 evas_object_raise(it->base.view);
1911 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_DOWN,
1913 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_UP,
1915 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_MOVE,
1917 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_DOWN,
1919 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_UP,
1921 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_MOVE,
1925 if (it->selected != itc->selected)
1927 if ((it->selected) && (!it->sweeped) && (!it->wd->edit_mode))
1928 edje_object_signal_emit(it->base.view,
1929 "elm,state,selected", "elm");
1931 if (it->disabled != itc->disabled)
1934 edje_object_signal_emit(it->base.view,
1935 "elm,state,disabled", "elm");
1937 if (it->expanded != itc->expanded)
1940 edje_object_signal_emit(it->base.view,
1941 "elm,state,expanded", "elm");
1946 if ((it->selected) && (!it->sweeped) && (!it->wd->edit_mode))
1947 edje_object_signal_emit(it->base.view,
1948 "elm,state,selected", "elm");
1950 edje_object_signal_emit(it->base.view,
1951 "elm,state,disabled", "elm");
1953 edje_object_signal_emit(it->base.view,
1954 "elm,state,expanded", "elm");
1958 if ((calc) && (it->wd->homogeneous) && (it->wd->item_width) && it->wd->group_item_width )
1960 /* homogenous genlist shortcut */
1961 if ((it->flags & ELM_GENLIST_ITEM_GROUP) && (!it->mincalcd))
1963 it->w = it->minw = it->wd->group_item_width;
1964 it->h = it->minh = it->wd->group_item_height;
1965 it->mincalcd = EINA_TRUE;
1967 else if (!it->mincalcd)
1969 it->w = it->minw = it->wd->item_width;
1970 it->h = it->minh = it->wd->item_height;
1971 it->mincalcd = EINA_TRUE;
1976 if (it->itc->func.label_get)
1982 elm_widget_stringlist_get(edje_object_data_get(it->base.view,
1984 EINA_LIST_FOREACH(it->labels, l, key)
1986 char *s = it->itc->func.label_get
1987 ((void *)it->base.data, it->base.widget, l->data);
1991 edje_object_part_text_set(it->base.view, l->data, s);
1995 edje_object_part_text_set(it->base.view, l->data, "");
1998 if (it->itc->func.icon_get)
2004 elm_widget_stringlist_get(edje_object_data_get(it->base.view,
2006 EINA_LIST_FOREACH(it->icons, l, key)
2008 Evas_Object *ic = it->itc->func.icon_get
2009 ((void *)it->base.data, it->base.widget, l->data);
2013 it->icon_objs = eina_list_append(it->icon_objs, ic);
2014 edje_object_part_swallow(it->base.view, key, ic);
2015 evas_object_show(ic);
2016 elm_widget_sub_object_add(it->base.widget, ic);
2020 if (it->itc->func.state_get)
2026 elm_widget_stringlist_get(edje_object_data_get(it->base.view,
2028 EINA_LIST_FOREACH(it->states, l, key)
2030 Eina_Bool on = it->itc->func.state_get
2031 ((void *)it->base.data, it->base.widget, l->data);
2035 snprintf(buf, sizeof(buf), "elm,state,%s,active", key);
2036 edje_object_signal_emit(it->base.view, buf, "elm");
2040 snprintf(buf, sizeof(buf), "elm,state,%s,passive", key);
2041 edje_object_signal_emit(it->base.view, buf, "elm");
2046 _create_sweep_objs(it);
2049 Evas_Coord mw = -1, mh = -1;
2051 if (it->wd->height_for_width) mw = it->wd->w;
2053 if (!it->display_only)
2054 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
2055 if (it->wd->height_for_width) mw = it->wd->prev_viewport_w;
2056 edje_object_size_min_restricted_calc(it->base.view, &mw, &mh, mw,
2058 if (!it->display_only)
2059 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
2060 it->w = it->minw = mw;
2061 it->h = it->minh = mh;
2062 it->mincalcd = EINA_TRUE;
2064 if ((it->wd->homogeneous) && (it->flags & ELM_GENLIST_ITEM_GROUP))
2066 it->wd->group_item_width = mw;
2067 it->wd->group_item_height = mh;
2069 else if ((it->wd->homogeneous))
2070 // if ((!in) && (it->wd->homogeneous))
2072 it->wd->item_width = mw;
2073 it->wd->item_height = mh;
2075 if ((!in) && (it->wd->homogeneous) && (!it->wd->group_item_width))
2077 if (it->flags & ELM_GENLIST_ITEM_GROUP)
2079 it->wd->group_item_width = mw;
2080 it->wd->group_item_height = mh;
2084 if (!calc) evas_object_show(it->base.view);
2087 if (it->tooltip.content_cb)
2089 elm_widget_item_tooltip_content_cb_set(it,
2090 it->tooltip.content_cb,
2091 it->tooltip.data, NULL);
2092 elm_widget_item_tooltip_style_set(it, it->tooltip.style);
2095 if (it->mouse_cursor)
2096 elm_widget_item_cursor_set(it, it->mouse_cursor);
2098 it->realized = EINA_TRUE;
2099 it->want_unrealize = EINA_FALSE;
2101 if (itc) _item_cache_free(itc);
2102 evas_object_smart_callback_call(it->base.widget, "realized", it);
2103 if ((it->wd->edit_mode) && (it->flags != ELM_GENLIST_ITEM_GROUP) && ((!it->wd->select_all_item) || ((it->wd->select_all_item) && (it != it->wd->select_all_item))))
2105 _effect_item_realize(it, EINA_FALSE);
2106 edje_object_message_signal_process(it->edit_obj);
2111 _item_unrealize(Elm_Genlist_Item *it)
2115 if (!it->realized) return;
2116 if (it->wd->reorder_it && it->wd->reorder_it == it) return;
2117 if (!it->wd->edit_mode && it->hilighted) return;
2118 evas_object_smart_callback_call(it->base.widget, "unrealized", it);
2121 ecore_timer_del(it->long_timer);
2122 it->long_timer = NULL;
2124 if ((it->sweeped) || (it->wassweeped) || (it->nocache))
2126 it->sweeped = EINA_FALSE;
2127 it->wassweeped = EINA_FALSE;
2128 it->wd->sweeped_items = eina_list_remove(it->wd->sweeped_items, it);
2129 _delete_sweep_objs(it);
2130 evas_object_del(it->base.view);
2131 it->base.view = NULL;
2132 evas_object_del(it->spacer);
2136 _item_cache_add(it);
2137 elm_widget_stringlist_free(it->labels);
2139 elm_widget_stringlist_free(it->icons);
2141 elm_widget_stringlist_free(it->states);
2143 EINA_LIST_FREE(it->icon_objs, icon)
2144 evas_object_del(icon);
2147 it->realized = EINA_FALSE;
2148 it->want_unrealize = EINA_FALSE;
2149 if (it->wd->edit_field && it->renamed)
2150 elm_genlist_item_rename_mode_set(it, EINA_FALSE);
2151 if (it->wd->edit_mode != ELM_GENLIST_EDIT_MODE_NONE) _effect_item_unrealize(it);
2155 _item_block_recalc(Item_Block *itb,
2161 Elm_Genlist_Item *it;
2162 Evas_Coord minw = 0, minh = 0;
2163 Eina_Bool showme = EINA_FALSE, changed = EINA_FALSE;
2167 EINA_LIST_FOREACH(itb->items, l, it)
2169 if (it->delete_me) continue;
2170 showme |= it->showme;
2175 if (!it->mincalcd) changed = EINA_TRUE;
2178 _item_realize(it, in, 1);
2179 _item_unrealize(it);
2184 _item_realize(it, in, 1);
2185 _item_unrealize(it);
2189 _item_realize(it, in, 0);
2191 if (minw < it->minw) minw = it->minw;
2199 itb->changed = EINA_FALSE;
2200 /* force an evas norender to garbage collect deleted objects */
2201 if (norender) evas_norender(evas_object_evas_get(itb->wd->obj));
2206 _item_block_realize(Item_Block *itb,
2211 Elm_Genlist_Item *it;
2213 if (itb->realized) return;
2214 EINA_LIST_FOREACH(itb->items, l, it)
2216 if (it->delete_me) continue;
2217 if (full) _item_realize(it, in, 0);
2220 itb->realized = EINA_TRUE;
2221 itb->want_unrealize = EINA_FALSE;
2225 _item_block_unrealize(Item_Block *itb)
2228 Elm_Genlist_Item *it;
2229 Eina_Bool dragging = EINA_FALSE;
2231 if (!itb->realized) return;
2232 EINA_LIST_FOREACH(itb->items, l, it)
2234 if (it->flags != ELM_GENLIST_ITEM_GROUP)
2238 dragging = EINA_TRUE;
2239 it->want_unrealize = EINA_TRUE;
2242 _item_unrealize(it);
2247 itb->realized = EINA_FALSE;
2248 itb->want_unrealize = EINA_TRUE;
2251 itb->want_unrealize = EINA_FALSE;
2255 _get_space_for_reorder_item(Elm_Genlist_Item *it)
2257 Evas_Coord rox, roy, row, roh;
2258 Eina_Bool top = EINA_FALSE;
2259 Elm_Genlist_Item *reorder_it = it->wd->reorder_it;
2260 if (!reorder_it) return 0;
2262 Evas_Coord ox,oy,oh,ow;
2263 evas_object_geometry_get(it->wd->pan_smart, &ox, &oy, &ow, &oh);
2264 evas_object_geometry_get(it->wd->reorder_it->base.view, &rox, &roy, &row, &roh);
2266 if ((it->wd->reorder_start_y < it->block->y) && (roy - oy + roh/2 >= it->block->y - it->wd->pan_y))
2268 it->block->reorder_offset = it->wd->reorder_it->h * -1;
2269 if (it->block->count == 1)
2270 it->wd->reorder_rel = it;
2272 else if ((it->wd->reorder_start_y >= it->block->y) && (roy - oy + roh/2 <= it->block->y - it->wd->pan_y))
2274 it->block->reorder_offset = it->wd->reorder_it->h;
2277 it->block->reorder_offset = 0;
2279 it->scrl_y += it->block->reorder_offset;
2281 top = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
2282 rox, roy+roh/2, row, 1));
2285 it->wd->reorder_rel = it;
2286 it->scrl_y+=it->wd->reorder_it->h;
2287 return it->wd->reorder_it->h;
2294 _reorder_item_moving_effect_timer_cb(void *data)
2296 Elm_Genlist_Item *it = data;
2297 Eina_Bool down = EINA_FALSE;
2298 double time = 0.4, t;
2300 t = ((0.0 > (t = current_time_get() - it->wd->start_time)) ? 0.0 : t) / 1000;
2303 y = (1 * sin((t / time) * (M_PI / 2)) * dy);
2307 if (it->old_scrl_y < it->scrl_y)
2309 it->old_scrl_y += y;
2312 else if (it->old_scrl_y > it->scrl_y)
2314 it->old_scrl_y -= y;
2318 _effect_item_controls(it, it->scrl_x, it->old_scrl_y);
2320 _group_items_recalc(it->wd);
2321 if (!it->wd->reorder_it || it->wd->reorder_pan_move)
2323 it->old_scrl_y = it->scrl_y;
2324 it->move_effect_me = EINA_FALSE;
2325 it->wd->item_moving_effect_timer = NULL;
2326 return ECORE_CALLBACK_CANCEL;
2328 if ((down && it->old_scrl_y >= it->scrl_y) || (!down && it->old_scrl_y <= it->scrl_y))
2330 it->old_scrl_y = it->scrl_y;
2331 it->move_effect_me = EINA_FALSE;
2332 it->wd->item_moving_effect_timer = NULL;
2333 return ECORE_CALLBACK_CANCEL;
2335 return ECORE_CALLBACK_RENEW;
2339 _item_block_position(Item_Block *itb,
2343 Elm_Genlist_Item *it;
2344 Elm_Genlist_Item *git;
2345 Evas_Coord y = 0, ox, oy, ow, oh, cvx, cvy, cvw, cvh;
2348 Elm_Genlist_Item *select_all_item = NULL;
2350 evas_object_geometry_get(itb->wd->pan_smart, &ox, &oy, &ow, &oh);
2351 evas_output_viewport_get(evas_object_evas_get(itb->wd->obj), &cvx, &cvy,
2354 if (itb->wd->select_all_item &&
2355 (itb->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECT || itb->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECTALL))
2357 if (itb->wd->select_all_check)
2358 edje_object_signal_emit(itb->wd->select_all_item->base.view, "elm,state,sel_check", "elm");
2360 edje_object_signal_emit(itb->wd->select_all_item->base.view, "elm,state,sel_uncheck", "elm");
2362 select_all_item = itb->wd->select_all_item;
2364 evas_object_resize(select_all_item->base.view, itb->w, select_all_item->h);
2365 evas_object_move(select_all_item->base.view, ox, oy);
2366 evas_object_raise(select_all_item->base.view);
2368 y = select_all_item->h;
2369 sel_all_h = select_all_item->h;
2372 EINA_LIST_FOREACH(itb->items, l, it)
2374 if (it->delete_me) continue;
2375 else if (it->wd->reorder_it && it->wd->reorder_it == it) continue;
2380 it->scrl_x = itb->x + it->x - it->wd->pan_x + ox;
2381 it->scrl_y = itb->y + it->y - it->wd->pan_y + oy;
2383 vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
2384 cvx, cvy, cvw, cvh));
2385 if (it->flags != ELM_GENLIST_ITEM_GROUP || (it->wd->reorder_it ))
2387 if ((itb->realized) && (!it->realized))
2389 if (vis) _item_realize(it, in, 0);
2395 if(it->wd->reorder_mode)
2396 y += _get_space_for_reorder_item(it);
2397 git = it->group_item;
2400 git->scrl_x = it->scrl_x;
2401 if (git->scrl_y < oy + sel_all_h)
2402 git->scrl_y = oy + sel_all_h;
2403 if ((git->scrl_y + git->h) > (it->scrl_y + it->h))
2404 git->scrl_y = (it->scrl_y + it->h) - git->h;
2405 git->want_realize = EINA_TRUE;
2407 if (it->wd->reorder_it && !it->wd->reorder_pan_move && it->old_scrl_y && it->old_scrl_y != it->scrl_y)
2409 if (!it->move_effect_me)
2411 it->move_effect_me = EINA_TRUE;
2412 it->item_moving_effect_timer = ecore_animator_add(_reorder_item_moving_effect_timer_cb, it);
2416 if (!it->move_effect_me )
2417 if (!it->wd->effect_mode || it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_NONE || ((it->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE) && it->parent == it->wd->expand_item))
2419 if (it->wd->edit_mode != ELM_GENLIST_EDIT_MODE_NONE)
2421 _effect_item_controls(it, it->scrl_x, it->scrl_y);
2425 evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
2426 evas_object_move(it->base.view, it->scrl_x+it->pad_left, it->scrl_y);
2427 if((!it->wd->effect_mode || it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_NONE) || ((it->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_NONE) && (it->old_scrl_y == it->scrl_y)))
2428 evas_object_show(it->base.view);
2430 evas_object_hide(it->base.view);
2432 it->old_scrl_x = it->scrl_x;
2433 it->old_scrl_y = it->scrl_y;
2438 if (!it->dragging) _item_unrealize(it);
2445 if (vis) it->want_realize = EINA_TRUE;
2452 _group_items_recalc(void *data)
2454 Widget_Data *wd = data;
2456 Elm_Genlist_Item *git;
2458 EINA_LIST_FOREACH(wd->group_items, l, git)
2460 if (git->want_realize)
2463 _item_realize(git, 0, 0);
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);
2478 _must_recalc_idler(void *data)
2480 Widget_Data *wd = data;
2481 if (wd->calc_job) ecore_job_del(wd->calc_job);
2482 wd->calc_job = ecore_job_add(_calc_job, wd);
2483 wd->must_recalc_idler = NULL;
2484 return ECORE_CALLBACK_CANCEL;
2488 _calc_job(void *data)
2490 Widget_Data *wd = data;
2492 Evas_Coord minw = -1, minh = 0, y = 0, ow;
2493 Item_Block *chb = NULL;
2494 int in = 0, minw_change = 0;
2495 Eina_Bool changed = EINA_FALSE;
2497 Eina_Bool did_must_recalc = EINA_FALSE;
2500 t0 = ecore_time_get();
2501 evas_object_geometry_get(wd->pan_smart, NULL, NULL, &ow, &wd->h);
2505 // if (wd->height_for_width) changed = EINA_TRUE;
2508 EINA_INLIST_FOREACH(wd->blocks, itb)
2510 Eina_Bool showme = EINA_FALSE;
2513 showme = itb->showme;
2514 itb->showme = EINA_FALSE;
2517 if (itb->realized) _item_block_unrealize(itb);
2519 if ((itb->changed) || (changed) ||
2520 ((itb->must_recalc) && (!did_must_recalc)))
2522 if ((changed) || (itb->must_recalc))
2525 Elm_Genlist_Item *it;
2526 EINA_LIST_FOREACH(itb->items, l, it)
2527 if (it->mincalcd) it->mincalcd = EINA_FALSE;
2528 itb->changed = EINA_TRUE;
2529 if (itb->must_recalc) did_must_recalc = EINA_TRUE;
2530 itb->must_recalc = EINA_FALSE;
2532 if (itb->realized) _item_block_unrealize(itb);
2533 showme = _item_block_recalc(itb, in, 0, 1);
2539 if (minw == -1) minw = itb->minw;
2540 else if ((!itb->must_recalc) && (minw < itb->minw))
2549 if ((showme) && (wd->show_item) && (!wd->show_item->queued))
2551 wd->show_item->showme = EINA_FALSE;
2553 elm_smart_scroller_region_bring_in(wd->scr,
2555 wd->show_item->block->x,
2557 wd->show_item->block->y,
2558 wd->show_item->block->w,
2561 elm_smart_scroller_child_region_show(wd->scr,
2563 wd->show_item->block->x,
2565 wd->show_item->block->y,
2566 wd->show_item->block->w,
2568 wd->show_item = NULL;
2573 EINA_INLIST_FOREACH(wd->blocks, itb)
2579 if ((chb) && (EINA_INLIST_GET(chb)->next))
2581 EINA_INLIST_FOREACH(EINA_INLIST_GET(chb)->next, itb)
2583 if (itb->realized) _item_block_unrealize(itb);
2586 wd->realminw = minw;
2587 if (minw < wd->w) minw = wd->w;
2588 if ((minw != wd->minw) || (minh != wd->minh) || (wd->select_all_item))
2592 if (wd->select_all_item)
2593 wd->minh += wd->select_all_item->h;
2594 if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
2595 evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
2596 _sizing_eval(wd->obj);
2598 if ((wd->anchor_item) && (wd->anchor_item->block) && (!wd->auto_scrolled))
2600 Elm_Genlist_Item *it;
2603 it = wd->anchor_item;
2604 it_y = wd->anchor_y;
2605 elm_smart_scroller_child_pos_set(wd->scr, wd->pan_x,
2606 it->block->y + it->y + it_y);
2607 wd->anchor_item = it;
2608 wd->anchor_y = it_y;
2612 t = ecore_time_get();
2613 if (did_must_recalc)
2615 if (!wd->must_recalc_idler)
2616 wd->must_recalc_idler = ecore_idler_add(_must_recalc_idler, wd);
2618 wd->calc_job = NULL;
2619 evas_object_smart_changed(wd->pan_smart);
2623 _update_job(void *data)
2625 Widget_Data *wd = data;
2628 int num, num0, position = 0, recalc = 0;
2630 wd->update_job = NULL;
2632 EINA_INLIST_FOREACH(wd->blocks, itb)
2634 Evas_Coord itminw, itminh;
2635 Elm_Genlist_Item *it;
2641 _item_block_position(itb, num);
2646 EINA_LIST_FOREACH(itb->items, l2, it)
2653 it->updateme = EINA_FALSE;
2656 _item_unrealize(it);
2657 _item_realize(it, num, 0);
2662 _item_realize(it, num, 1);
2663 _item_unrealize(it);
2665 if ((it->minw != itminw) || (it->minh != itminh))
2670 itb->updateme = EINA_FALSE;
2674 itb->changed = EINA_TRUE;
2675 _item_block_recalc(itb, num0, 0, 1);
2676 _item_block_position(itb, num0);
2681 if (wd->calc_job) ecore_job_del(wd->calc_job);
2682 wd->calc_job = ecore_job_add(_calc_job, wd);
2687 _pan_set(Evas_Object *obj,
2691 Pan *sd = evas_object_smart_data_get(obj);
2694 // Evas_Coord ow, oh;
2695 // evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2696 // ow = sd->wd->minw - ow;
2697 // if (ow < 0) ow = 0;
2698 // oh = sd->wd->minh - oh;
2699 // if (oh < 0) oh = 0;
2700 // if (x < 0) x = 0;
2701 // if (y < 0) y = 0;
2702 // if (x > ow) x = ow;
2703 // if (y > oh) y = oh;
2704 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);
2729 if(!sd->wd->item_moving_effect_timer) evas_object_smart_changed(obj);
2733 _pan_get(Evas_Object *obj,
2737 Pan *sd = evas_object_smart_data_get(obj);
2739 if (x) *x = sd->wd->pan_x;
2740 if (y) *y = sd->wd->pan_y;
2744 _pan_max_get(Evas_Object *obj,
2748 Pan *sd = evas_object_smart_data_get(obj);
2751 evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2752 ow = sd->wd->minw - ow;
2754 oh = sd->wd->minh - oh;
2761 _pan_min_get(Evas_Object *obj __UNUSED__,
2770 _pan_child_size_get(Evas_Object *obj,
2774 Pan *sd = evas_object_smart_data_get(obj);
2776 if (w) *w = sd->wd->minw;
2777 if (h) *h = sd->wd->minh;
2781 _pan_add(Evas_Object *obj)
2784 Evas_Object_Smart_Clipped_Data *cd;
2787 cd = evas_object_smart_data_get(obj);
2790 sd->__clipped_data = *cd;
2792 evas_object_smart_data_set(obj, sd);
2796 _pan_del(Evas_Object *obj)
2798 Pan *sd = evas_object_smart_data_get(obj);
2803 ecore_job_del(sd->resize_job);
2804 sd->resize_job = NULL;
2810 _pan_resize_job(void *data)
2813 _sizing_eval(sd->wd->obj);
2814 sd->resize_job = NULL;
2818 _pan_resize(Evas_Object *obj,
2822 Pan *sd = evas_object_smart_data_get(obj);
2825 evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2826 if ((ow == w) && (oh == h)) return;
2827 if ((sd->wd->height_for_width) && (ow != w))
2829 if (sd->resize_job) ecore_job_del(sd->resize_job);
2830 sd->resize_job = ecore_job_add(_pan_resize_job, sd);
2832 if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
2833 sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
2837 _pan_calculate(Evas_Object *obj)
2839 Pan *sd = evas_object_smart_data_get(obj);
2841 Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
2842 static Evas_Coord old_pan_y = 0;
2844 Elm_Genlist_Item *git;
2847 evas_object_geometry_get(obj, &ox, &oy, &ow, &oh);
2848 evas_output_viewport_get(evas_object_evas_get(obj), &cvx, &cvy, &cvw, &cvh);
2849 EINA_LIST_FOREACH(sd->wd->group_items, l, git)
2851 git->want_realize = EINA_FALSE;
2853 EINA_INLIST_FOREACH(sd->wd->blocks, itb)
2855 itb->w = sd->wd->minw;
2856 if (ELM_RECTS_INTERSECT(itb->x - sd->wd->pan_x + ox,
2857 itb->y - sd->wd->pan_y + oy,
2859 cvx, cvy, cvw, cvh))
2861 if ((!itb->realized) || (itb->changed))
2862 _item_block_realize(itb, in, 0);
2863 _item_block_position(itb, in);
2867 if (itb->realized) _item_block_unrealize(itb);
2871 if (!sd->wd->reorder_it || sd->wd->reorder_pan_move)
2872 _group_items_recalc(sd->wd);
2874 if (sd->wd->reorder_mode && sd->wd->reorder_it)
2876 if (sd->wd->pan_y != old_pan_y) sd->wd->reorder_pan_move = EINA_TRUE;
2877 else sd->wd->reorder_pan_move = EINA_FALSE;
2878 evas_object_raise(sd->wd->reorder_it->edit_obj);
2879 old_pan_y = sd->wd->pan_y;
2882 if (sd->wd->effect_mode &&
2883 ((sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND) ||
2884 (sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT) ||
2885 (sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)))
2887 if (!sd->wd->item_moving_effect_timer)
2889 if (sd->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
2890 _item_flip_effect_show(sd->wd->expand_item);
2892 evas_object_raise(sd->wd->alpha_bg);
2893 evas_object_show(sd->wd->alpha_bg);
2894 elm_smart_scroller_bounce_animator_disabled_set(sd->wd->scr, EINA_TRUE);
2895 sd->wd->start_time = current_time_get();
2896 sd->wd->item_moving_effect_timer = ecore_animator_add(_item_moving_effect_timer_cb, sd->wd);
2899 else _item_auto_scroll(sd->wd);
2900 if (sd->wd->select_all_item) evas_object_raise(sd->wd->select_all_item->base.view);
2904 _pan_move(Evas_Object *obj,
2905 Evas_Coord x __UNUSED__,
2906 Evas_Coord y __UNUSED__)
2908 Pan *sd = evas_object_smart_data_get(obj);
2910 if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
2911 sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
2915 _hold_on(void *data __UNUSED__,
2917 void *event_info __UNUSED__)
2919 Widget_Data *wd = elm_widget_data_get(obj);
2921 elm_smart_scroller_hold_set(wd->scr, 1);
2925 _hold_off(void *data __UNUSED__,
2927 void *event_info __UNUSED__)
2929 Widget_Data *wd = elm_widget_data_get(obj);
2931 elm_smart_scroller_hold_set(wd->scr, 0);
2935 _freeze_on(void *data __UNUSED__,
2937 void *event_info __UNUSED__)
2939 Widget_Data *wd = elm_widget_data_get(obj);
2941 elm_smart_scroller_freeze_set(wd->scr, 1);
2945 _freeze_off(void *data __UNUSED__,
2947 void *event_info __UNUSED__)
2949 Widget_Data *wd = elm_widget_data_get(obj);
2951 elm_smart_scroller_freeze_set(wd->scr, 0);
2955 _scroll_edge_left(void *data,
2956 Evas_Object *scr __UNUSED__,
2957 void *event_info __UNUSED__)
2959 Evas_Object *obj = data;
2960 evas_object_smart_callback_call(obj, "scroll,edge,left", NULL);
2964 _scroll_edge_right(void *data,
2965 Evas_Object *scr __UNUSED__,
2966 void *event_info __UNUSED__)
2968 Evas_Object *obj = data;
2969 evas_object_smart_callback_call(obj, "scroll,edge,right", NULL);
2973 _scroll_edge_top(void *data,
2974 Evas_Object *scr __UNUSED__,
2975 void *event_info __UNUSED__)
2977 Evas_Object *obj = data;
2978 evas_object_smart_callback_call(obj, "scroll,edge,top", NULL);
2982 _scroll_edge_bottom(void *data,
2983 Evas_Object *scr __UNUSED__,
2984 void *event_info __UNUSED__)
2986 Evas_Object *obj = data;
2987 evas_object_smart_callback_call(obj, "scroll,edge,bottom", NULL);
2991 * Add a new Genlist object
2993 * @param parent The parent object
2994 * @return The new object or NULL if it cannot be created
2999 elm_genlist_add(Evas_Object *parent)
3004 Evas_Coord minw, minh;
3005 static Evas_Smart *smart = NULL;
3007 EINA_SAFETY_ON_NULL_RETURN_VAL(parent, NULL);
3011 static Evas_Smart_Class sc;
3013 evas_object_smart_clipped_smart_set(&_pan_sc);
3015 sc.name = "elm_genlist_pan";
3016 sc.version = EVAS_SMART_CLASS_VERSION;
3019 sc.resize = _pan_resize;
3020 sc.move = _pan_move;
3021 sc.calculate = _pan_calculate;
3022 if (!(smart = evas_smart_class_new(&sc))) return NULL;
3024 wd = ELM_NEW(Widget_Data);
3025 e = evas_object_evas_get(parent);
3026 if (!e) return NULL;
3027 obj = elm_widget_add(e);
3028 ELM_SET_WIDTYPE(widtype, "genlist");
3029 elm_widget_type_set(obj, "genlist");
3030 elm_widget_sub_object_add(parent, obj);
3031 elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
3032 elm_widget_data_set(obj, wd);
3033 elm_widget_del_hook_set(obj, _del_hook);
3034 elm_widget_del_pre_hook_set(obj, _del_pre_hook);
3035 elm_widget_theme_hook_set(obj, _theme_hook);
3036 elm_widget_can_focus_set(obj, EINA_TRUE);
3037 elm_widget_event_hook_set(obj, _event_hook);
3038 elm_widget_on_show_region_hook_set(obj, _show_region_hook, obj);
3040 wd->scr = elm_smart_scroller_add(e);
3041 elm_smart_scroller_widget_set(wd->scr, obj);
3042 elm_smart_scroller_object_theme_set(obj, wd->scr, "genlist", "base",
3043 elm_widget_style_get(obj));
3044 elm_smart_scroller_bounce_allow_set(wd->scr, EINA_FALSE,
3045 _elm_config->thumbscroll_bounce_enable);
3046 elm_widget_resize_object_set(obj, wd->scr);
3048 evas_object_smart_callback_add(wd->scr, "edge,left", _scroll_edge_left, obj);
3049 evas_object_smart_callback_add(wd->scr, "edge,right", _scroll_edge_right,
3051 evas_object_smart_callback_add(wd->scr, "edge,top", _scroll_edge_top, obj);
3052 evas_object_smart_callback_add(wd->scr, "edge,bottom", _scroll_edge_bottom,
3056 wd->mode = ELM_LIST_SCROLL;
3057 wd->max_items_per_block = MAX_ITEMS_PER_BLOCK;
3058 wd->item_cache_max = wd->max_items_per_block * 2;
3059 wd->longpress_timeout = _elm_config->longpress_timeout;
3060 //wd->effect_mode = _elm_config->effect_enable;
3061 // wd->effect_mode = EINA_TRUE;
3063 evas_object_smart_callback_add(obj, "scroll-hold-on", _hold_on, obj);
3064 evas_object_smart_callback_add(obj, "scroll-hold-off", _hold_off, obj);
3065 evas_object_smart_callback_add(obj, "scroll-freeze-on", _freeze_on, obj);
3066 evas_object_smart_callback_add(obj, "scroll-freeze-off", _freeze_off, obj);
3068 wd->pan_smart = evas_object_smart_add(e, smart);
3069 wd->pan = evas_object_smart_data_get(wd->pan_smart);
3072 elm_smart_scroller_extern_pan_set(wd->scr, wd->pan_smart,
3073 _pan_set, _pan_get, _pan_max_get,
3074 _pan_min_get, _pan_child_size_get);
3076 edje_object_size_min_calc(elm_smart_scroller_edje_object_get(wd->scr),
3078 evas_object_size_hint_min_set(obj, minw, minh);
3084 static Elm_Genlist_Item *
3085 _item_new(Widget_Data *wd,
3086 const Elm_Genlist_Item_Class *itc,
3088 Elm_Genlist_Item *parent,
3089 Elm_Genlist_Item_Flags flags,
3091 const void *func_data)
3093 Elm_Genlist_Item *it;
3095 it = elm_widget_item_new(wd->obj, Elm_Genlist_Item);
3096 if (!it) return NULL;
3099 it->base.data = data;
3100 it->parent = parent;
3102 it->func.func = func;
3103 it->func.data = func_data;
3104 it->mouse_cursor = NULL;
3105 it->expanded_depth = 0;
3106 if ((it->parent) && (it->parent->edit_select_check)) it->edit_select_check = EINA_TRUE;
3107 if ((!it->parent) && (it->wd->select_all_item))
3108 _select_all_down_process(it->wd->select_all_item, EINA_FALSE, EINA_FALSE);
3109 it->num = ++wd->total_num; // todo : remov
3114 _item_block_add(Widget_Data *wd,
3115 Elm_Genlist_Item *it)
3117 Item_Block *itb = NULL;
3124 itb = calloc(1, sizeof(Item_Block));
3127 if (!it->rel->block)
3130 eina_inlist_append(wd->blocks, EINA_INLIST_GET(itb));
3131 itb->items = eina_list_append(itb->items, it);
3137 wd->blocks = eina_inlist_prepend_relative
3138 (wd->blocks, EINA_INLIST_GET(itb),
3139 EINA_INLIST_GET(it->rel->block));
3141 eina_list_prepend_relative(itb->items, it, it->rel);
3145 wd->blocks = eina_inlist_append_relative
3146 (wd->blocks, EINA_INLIST_GET(itb),
3147 EINA_INLIST_GET(it->rel->block));
3149 eina_list_append_relative(itb->items, it, it->rel);
3159 itb = (Item_Block *)(wd->blocks);
3160 if (itb->count >= wd->max_items_per_block)
3162 itb = calloc(1, sizeof(Item_Block));
3166 eina_inlist_prepend(wd->blocks,
3167 EINA_INLIST_GET(itb));
3172 itb = calloc(1, sizeof(Item_Block));
3176 eina_inlist_prepend(wd->blocks, EINA_INLIST_GET(itb));
3178 itb->items = eina_list_prepend(itb->items, it);
3184 itb = (Item_Block *)(wd->blocks->last);
3185 if (itb->count >= wd->max_items_per_block)
3187 itb = calloc(1, sizeof(Item_Block));
3191 eina_inlist_append(wd->blocks,
3192 EINA_INLIST_GET(itb));
3197 itb = calloc(1, sizeof(Item_Block));
3201 eina_inlist_append(wd->blocks, EINA_INLIST_GET(itb));
3203 itb->items = eina_list_append(itb->items, it);
3209 itb = it->rel->block;
3210 if (!itb) goto newblock;
3212 itb->items = eina_list_prepend_relative(itb->items, it, it->rel);
3214 itb->items = eina_list_append_relative(itb->items, it, it->rel);
3217 itb->changed = EINA_TRUE;
3219 if (itb->wd->calc_job) ecore_job_del(itb->wd->calc_job);
3220 itb->wd->calc_job = ecore_job_add(_calc_job, itb->wd);
3223 it->rel->relcount--;
3224 if ((it->rel->delete_me) && (!it->rel->relcount))
3228 if (itb->count > itb->wd->max_items_per_block)
3232 Elm_Genlist_Item *it2;
3234 newc = itb->count / 2;
3235 itb2 = calloc(1, sizeof(Item_Block));
3239 eina_inlist_append_relative(wd->blocks, EINA_INLIST_GET(itb2),
3240 EINA_INLIST_GET(itb));
3241 itb2->changed = EINA_TRUE;
3242 while ((itb->count > newc) && (itb->items))
3246 l = eina_list_last(itb->items);
3248 itb->items = eina_list_remove_list(itb->items, l);
3251 itb2->items = eina_list_prepend(itb2->items, it2);
3259 _queue_proecess(Widget_Data *wd,
3263 Eina_Bool showme = EINA_FALSE;
3266 t0 = ecore_time_get();
3267 for (n = 0; (wd->queue) && (n < 128); n++)
3269 Elm_Genlist_Item *it;
3271 it = wd->queue->data;
3272 wd->queue = eina_list_remove_list(wd->queue, wd->queue);
3273 it->queued = EINA_FALSE;
3274 _item_block_add(wd, it);
3275 t = ecore_time_get();
3276 if (it->block->changed)
3278 showme = _item_block_recalc(it->block, it->block->num, 1,
3280 it->block->changed = 0;
3282 if (showme) it->block->showme = EINA_TRUE;
3283 if (eina_inlist_count(wd->blocks) > 1)
3285 if ((t - t0) > (ecore_animator_frametime_get())) break;
3292 _item_idler(void *data)
3294 Widget_Data *wd = data;
3297 //static double q_start = 0.0;
3298 //if (q_start == 0.0) q_start = ecore_time_get();
3301 if (_queue_proecess(wd, 1) > 0)
3303 if (wd->calc_job) ecore_job_del(wd->calc_job);
3304 wd->calc_job = ecore_job_add(_calc_job, wd);
3309 //printf("PROCESS TIME: %3.3f\n", ecore_time_get() - q_start);
3311 wd->queue_idler = NULL;
3312 return ECORE_CALLBACK_CANCEL;
3314 return ECORE_CALLBACK_RENEW;
3318 _item_queue(Widget_Data *wd,
3319 Elm_Genlist_Item *it)
3321 if (it->queued) return;
3322 it->queued = EINA_TRUE;
3323 wd->queue = eina_list_append(wd->queue, it);
3324 while ((wd->queue) && ((!wd->blocks) || (!wd->blocks->next)))
3326 if (wd->queue_idler)
3328 ecore_idler_del(wd->queue_idler);
3329 wd->queue_idler = NULL;
3331 _queue_proecess(wd, 0);
3333 if (!wd->queue_idler) wd->queue_idler = ecore_idler_add(_item_idler, wd);
3337 * Append item to the end of the genlist
3339 * This appends the given item to the end of the list or the end of
3340 * the children if the parent is given.
3342 * @param obj The genlist object
3343 * @param itc The item class for the item
3344 * @param data The item data
3345 * @param parent The parent item, or NULL if none
3346 * @param flags Item flags
3347 * @param func Convenience function called when item selected
3348 * @param func_data Data passed to @p func above.
3349 * @return A handle to the item added or NULL if not possible
3353 EAPI Elm_Genlist_Item *
3354 elm_genlist_item_append(Evas_Object *obj,
3355 const Elm_Genlist_Item_Class *itc,
3357 Elm_Genlist_Item *parent,
3358 Elm_Genlist_Item_Flags flags,
3360 const void *func_data)
3362 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3363 Widget_Data *wd = elm_widget_data_get(obj);
3364 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3366 if (!wd) return NULL;
3367 if (!it) return NULL;
3370 if (flags & ELM_GENLIST_ITEM_GROUP)
3371 wd->group_items = eina_list_append(wd->group_items, it);
3372 wd->items = eina_inlist_append(wd->items, EINA_INLIST_GET(it));
3377 Elm_Genlist_Item *it2 = NULL;
3378 Eina_List *ll = eina_list_last(it->parent->items);
3379 if (ll) it2 = ll->data;
3380 it->parent->items = eina_list_append(it->parent->items, it);
3381 if (!it2) it2 = it->parent;
3383 eina_inlist_append_relative(wd->items, EINA_INLIST_GET(it),
3384 EINA_INLIST_GET(it2));
3386 it->rel->relcount++;
3388 if (it->parent->flags & ELM_GENLIST_ITEM_GROUP)
3389 it->group_item = parent;
3390 else if (it->parent->group_item)
3391 it->group_item = it->parent->group_item;
3393 it->before = EINA_FALSE;
3394 _item_queue(wd, it);
3399 * Prepend item at start of the genlist
3401 * This adds an item to the beginning of the list or beginning of the
3402 * children of the parent if given.
3404 * @param obj The genlist object
3405 * @param itc The item class for the item
3406 * @param data The item data
3407 * @param parent The parent item, or NULL if none
3408 * @param flags Item flags
3409 * @param func Convenience function called when item selected
3410 * @param func_data Data passed to @p func above.
3411 * @return A handle to the item added or NULL if not possible
3415 EAPI Elm_Genlist_Item *
3416 elm_genlist_item_prepend(Evas_Object *obj,
3417 const Elm_Genlist_Item_Class *itc,
3419 Elm_Genlist_Item *parent,
3420 Elm_Genlist_Item_Flags flags,
3422 const void *func_data)
3424 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3425 Widget_Data *wd = elm_widget_data_get(obj);
3426 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3428 if (!wd) return NULL;
3429 if (!it) return NULL;
3432 if (flags & ELM_GENLIST_ITEM_GROUP)
3433 wd->group_items = eina_list_prepend(wd->group_items, it);
3434 wd->items = eina_inlist_prepend(wd->items, EINA_INLIST_GET(it));
3439 Elm_Genlist_Item *it2 = NULL;
3440 Eina_List *ll = it->parent->items;
3441 if (ll) it2 = ll->data;
3442 it->parent->items = eina_list_prepend(it->parent->items, it);
3443 if (!it2) it2 = it->parent;
3445 eina_inlist_prepend_relative(wd->items, EINA_INLIST_GET(it),
3446 EINA_INLIST_GET(it2));
3448 it->rel->relcount++;
3450 it->before = EINA_TRUE;
3451 _item_queue(wd, it);
3456 * Insert item before another in the genlist
3458 * This inserts an item before another in the list. It will be in the
3459 * same tree level or group as the item it is inseted before.
3461 * @param obj The genlist object
3462 * @param itc The item class for the item
3463 * @param data The item data
3464 * @param before The item to insert before
3465 * @param flags Item flags
3466 * @param func Convenience function called when item selected
3467 * @param func_data Data passed to @p func above.
3468 * @return A handle to the item added or NULL if not possible
3472 EAPI Elm_Genlist_Item *
3473 elm_genlist_item_insert_before(Evas_Object *obj,
3474 const Elm_Genlist_Item_Class *itc,
3476 Elm_Genlist_Item *parent,
3477 Elm_Genlist_Item *before,
3478 Elm_Genlist_Item_Flags flags,
3480 const void *func_data)
3482 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3483 EINA_SAFETY_ON_NULL_RETURN_VAL(before, NULL);
3484 Widget_Data *wd = elm_widget_data_get(obj);
3485 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3487 if (!wd) return NULL;
3488 if (!it) return NULL;
3491 it->parent->items = eina_list_prepend_relative(it->parent->items, it,
3494 wd->items = eina_inlist_prepend_relative(wd->items, EINA_INLIST_GET(it),
3495 EINA_INLIST_GET(before));
3497 it->rel->relcount++;
3498 it->before = EINA_TRUE;
3499 _item_queue(wd, it);
3504 * Insert an item after another in the genlst
3506 * This inserts an item after another in the list. It will be in the
3507 * same tree level or group as the item it is inseted after.
3509 * @param obj The genlist object
3510 * @param itc The item class for the item
3511 * @param data The item data
3512 * @param after The item to insert after
3513 * @param flags Item flags
3514 * @param func Convenience function called when item selected
3515 * @param func_data Data passed to @p func above.
3516 * @return A handle to the item added or NULL if not possible
3520 EAPI Elm_Genlist_Item *
3521 elm_genlist_item_insert_after(Evas_Object *obj,
3522 const Elm_Genlist_Item_Class *itc,
3524 Elm_Genlist_Item *parent,
3525 Elm_Genlist_Item *after,
3526 Elm_Genlist_Item_Flags flags,
3528 const void *func_data)
3530 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3531 EINA_SAFETY_ON_NULL_RETURN_VAL(after, NULL);
3532 Widget_Data *wd = elm_widget_data_get(obj);
3533 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3535 if (!wd) return NULL;
3536 if (!it) return NULL;
3537 wd->items = eina_inlist_append_relative(wd->items, EINA_INLIST_GET(it),
3538 EINA_INLIST_GET(after));
3541 it->parent->items = eina_list_append_relative(it->parent->items, it,
3545 it->rel->relcount++;
3546 it->before = EINA_FALSE;
3547 _item_queue(wd, it);
3554 * This clears all items in the list, leaving it empty.
3556 * @param obj The genlist object
3561 elm_genlist_clear(Evas_Object *obj)
3563 ELM_CHECK_WIDTYPE(obj, widtype);
3564 Widget_Data *wd = elm_widget_data_get(obj);
3566 if (wd->walking > 0)
3568 Elm_Genlist_Item *it;
3570 wd->clear_me = EINA_TRUE;
3571 EINA_INLIST_FOREACH(wd->items, it)
3573 it->delete_me = EINA_TRUE;
3577 wd->clear_me = EINA_FALSE;
3580 Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
3581 it->nocache = EINA_TRUE;
3582 it->hilighted = EINA_FALSE;
3584 if (wd->anchor_item == it)
3586 wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3587 if (!wd->anchor_item)
3589 ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3592 wd->items = eina_inlist_remove(wd->items, wd->items);
3593 if (it->flags & ELM_GENLIST_ITEM_GROUP)
3594 it->wd->group_items = eina_list_remove(it->wd->group_items, it);
3595 elm_widget_item_pre_notify_del(it);
3596 if (it->effect_item_realized) _effect_item_unrealize(it);
3597 if (it->realized) _item_unrealize(it);
3598 if (it->itc->func.del)
3599 it->itc->func.del((void *)it->base.data, it->base.widget);
3600 if (it->long_timer) ecore_timer_del(it->long_timer);
3601 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
3602 elm_widget_item_del(it);
3604 wd->anchor_item = NULL;
3607 Item_Block *itb = (Item_Block *)(wd->blocks);
3609 wd->blocks = eina_inlist_remove(wd->blocks, wd->blocks);
3610 if (itb->items) eina_list_free(itb->items);
3615 ecore_job_del(wd->calc_job);
3616 wd->calc_job = NULL;
3618 if (wd->queue_idler)
3620 ecore_idler_del(wd->queue_idler);
3621 wd->queue_idler = NULL;
3623 if (wd->must_recalc_idler)
3625 ecore_idler_del(wd->must_recalc_idler);
3626 wd->must_recalc_idler = NULL;
3630 eina_list_free(wd->queue);
3635 eina_list_free(wd->selected);
3636 wd->selected = NULL;
3640 Evas_Object *editfield;
3641 EINA_LIST_FREE(wd->edit_field, editfield)
3642 evas_object_del(editfield);
3643 wd->edit_field = NULL;
3645 if (wd->item_moving_effect_timer)
3647 ecore_animator_del(wd->item_moving_effect_timer);
3648 wd->item_moving_effect_timer = NULL;
3652 wd->edit_mode = ELM_GENLIST_EDIT_MODE_NONE;
3653 elm_genlist_edit_mode_set(wd->obj, ELM_GENLIST_EDIT_MODE_NONE, NULL);
3655 wd->show_item = NULL;
3662 evas_object_del(wd->alpha_bg);
3663 wd->alpha_bg = NULL;
3667 evas_object_size_hint_min_set(wd->pan_smart, wd->minw, wd->minh);
3668 evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
3674 * Enable or disable multi-select in the genlist
3676 * This enables (EINA_TRUE) or disableds (EINA_FALSE) multi-select in
3677 * the list. This allows more than 1 item to be selected.
3679 * @param obj The genlist object
3680 * @param multi Multi-select enable/disable
3685 elm_genlist_multi_select_set(Evas_Object *obj,
3688 ELM_CHECK_WIDTYPE(obj, widtype);
3689 Widget_Data *wd = elm_widget_data_get(obj);
3695 * Gets if multi-select in genlist is enable or disable
3697 * @param obj The genlist object
3698 * @return Multi-select enable/disable
3699 * (EINA_TRUE = enabled/EINA_FALSE = disabled)
3704 elm_genlist_multi_select_get(const Evas_Object *obj)
3706 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3707 Widget_Data *wd = elm_widget_data_get(obj);
3708 if (!wd) return EINA_FALSE;
3713 * Get the selectd item in the genlist
3715 * This gets the selected item in the list (if multi-select is enabled
3716 * only the first item in the list is selected - which is not very
3717 * useful, so see elm_genlist_selected_items_get() for when
3718 * multi-select is used).
3720 * If no item is selected, NULL is returned.
3722 * @param obj The genlist object
3723 * @return The selected item, or NULL if none.
3727 EAPI Elm_Genlist_Item *
3728 elm_genlist_selected_item_get(const Evas_Object *obj)
3730 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3731 Widget_Data *wd = elm_widget_data_get(obj);
3732 if (!wd) return NULL;
3733 if (wd->selected) return wd->selected->data;
3738 * Get a list of selected items in the genlist
3740 * This returns a list of the selected items. This list pointer is
3741 * only valid so long as no items are selected or unselected (or
3742 * unselected implicitly by deletion). The list contains
3743 * Elm_Genlist_Item pointers.
3745 * @param obj The genlist object
3746 * @return The list of selected items, nor NULL if none are selected.
3750 EAPI const Eina_List *
3751 elm_genlist_selected_items_get(const Evas_Object *obj)
3753 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3754 Widget_Data *wd = elm_widget_data_get(obj);
3755 if (!wd) return NULL;
3756 return wd->selected;
3760 * Get a list of realized items in genlist
3762 * This returns a list of the realized items in the genlist. The list
3763 * contains Elm_Genlist_Item pointers. The list must be freed by the
3764 * caller when done with eina_list_free(). The item pointers in the
3765 * list are only valid so long as those items are not deleted or the
3766 * genlist is not deleted.
3768 * @param obj The genlist object
3769 * @return The list of realized items, nor NULL if none are realized.
3774 elm_genlist_realized_items_get(const Evas_Object *obj)
3776 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3777 Widget_Data *wd = elm_widget_data_get(obj);
3778 Eina_List *list = NULL;
3780 Eina_Bool done = EINA_FALSE;
3781 if (!wd) return NULL;
3782 EINA_INLIST_FOREACH(wd->blocks, itb)
3787 Elm_Genlist_Item *it;
3790 EINA_LIST_FOREACH(itb->items, l, it)
3792 if (it->realized) list = eina_list_append(list, it);
3804 * Get the item that is at the x, y canvas coords
3806 * This returns the item at the given coordinates (which are canvas
3807 * relative not object-relative). If an item is at that coordinate,
3808 * that item handle is returned, and if @p posret is not NULL, the
3809 * integer pointed to is set to a value of -1, 0 or 1, depending if
3810 * the coordinate is on the upper portion of that item (-1), on the
3811 * middle section (0) or on the lower part (1). If NULL is returned as
3812 * an item (no item found there), then posret may indicate -1 or 1
3813 * based if the coordinate is above or below all items respectively in
3816 * @param it The item
3817 * @param x The input x coordinate
3818 * @param y The input y coordinate
3819 * @param posret The position relative to the item returned here
3820 * @return The item at the coordinates or NULL if none
3824 EAPI Elm_Genlist_Item *
3825 elm_genlist_at_xy_item_get(const Evas_Object *obj,
3830 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3831 Widget_Data *wd = elm_widget_data_get(obj);
3832 Evas_Coord ox, oy, ow, oh;
3835 if (!wd) return NULL;
3836 evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
3838 EINA_INLIST_FOREACH(wd->blocks, itb)
3841 Elm_Genlist_Item *it;
3843 if (!ELM_RECTS_INTERSECT(ox + itb->x - itb->wd->pan_x,
3844 oy + itb->y - itb->wd->pan_y,
3845 itb->w, itb->h, x, y, 1, 1))
3847 EINA_LIST_FOREACH(itb->items, l, it)
3849 Evas_Coord itx, ity;
3851 itx = ox + itb->x + it->x - itb->wd->pan_x;
3852 ity = oy + itb->y + it->y - itb->wd->pan_y;
3853 if (ELM_RECTS_INTERSECT(itx, ity, it->w, it->h, x, y, 1, 1))
3857 if (y <= (ity + (it->h / 4))) *posret = -1;
3858 else if (y >= (ity + it->h - (it->h / 4)))
3864 lasty = ity + it->h;
3869 if (y > lasty) *posret = 1;
3876 * Get the first item in the genlist
3878 * This returns the first item in the list.
3880 * @param obj The genlist object
3881 * @return The first item, or NULL if none
3885 EAPI Elm_Genlist_Item *
3886 elm_genlist_first_item_get(const Evas_Object *obj)
3888 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3889 Widget_Data *wd = elm_widget_data_get(obj);
3890 if (!wd) return NULL;
3891 if (!wd->items) return NULL;
3892 Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
3893 while ((it) && (it->delete_me))
3894 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3899 * Get the last item in the genlist
3901 * This returns the last item in the list.
3903 * @return The last item, or NULL if none
3907 EAPI Elm_Genlist_Item *
3908 elm_genlist_last_item_get(const Evas_Object *obj)
3910 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3911 Widget_Data *wd = elm_widget_data_get(obj);
3912 if (!wd) return NULL;
3913 if (!wd->items) return NULL;
3914 Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items->last);
3915 while ((it) && (it->delete_me))
3916 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3921 * Get the next item in the genlist
3923 * This returns the item after the item @p it.
3925 * @param it The item
3926 * @return The item after @p it, or NULL if none
3930 EAPI Elm_Genlist_Item *
3931 elm_genlist_item_next_get(const Elm_Genlist_Item *it)
3933 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3936 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3937 if ((it) && (!it->delete_me)) break;
3939 return (Elm_Genlist_Item *)it;
3943 * Get the previous item in the genlist
3945 * This returns the item before the item @p it.
3947 * @param it The item
3948 * @return The item before @p it, or NULL if none
3952 EAPI Elm_Genlist_Item *
3953 elm_genlist_item_prev_get(const Elm_Genlist_Item *it)
3955 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3958 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3959 if ((it) && (!it->delete_me)) break;
3961 return (Elm_Genlist_Item *)it;
3965 * Get the genlist object from an item
3967 * This returns the genlist object itself that an item belongs to.
3969 * @param it The item
3970 * @return The genlist object
3975 elm_genlist_item_genlist_get(const Elm_Genlist_Item *it)
3977 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3978 return it->base.widget;
3982 * Get the parent item of the given item
3984 * This returns the parent item of the item @p it given.
3986 * @param it The item
3987 * @return The parent of the item or NULL if none
3991 EAPI Elm_Genlist_Item *
3992 elm_genlist_item_parent_get(const Elm_Genlist_Item *it)
3994 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
3999 * Clear all sub-items (children) of the given item
4001 * This clears all items that are children (or their descendants) of the
4004 * @param it The item
4009 elm_genlist_item_subitems_clear(Elm_Genlist_Item *it)
4011 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4012 Elm_Genlist_Item *it2;
4015 if(!it->wd->effect_mode || !it->wd->move_effect_mode)
4016 _item_subitems_clear(it);
4019 if((!it->wd->item_moving_effect_timer) && (it->flags != ELM_GENLIST_ITEM_GROUP) &&
4020 it->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE )
4022 it->wd->expand_item = it;
4023 _item_flip_effect_show(it);
4024 evas_object_geometry_get(it->base.view, NULL, &y, NULL, &h);
4025 it->wd->expand_item_end = y + h;
4029 it2 = elm_genlist_item_next_get(it2);
4031 } while (it2->expanded_depth > it->expanded_depth);
4033 it->wd->expand_item_gap = it->wd->expand_item_end - it2->old_scrl_y;
4035 it->wd->expand_item_gap = 0;
4037 evas_object_raise(it->wd->alpha_bg);
4038 evas_object_show(it->wd->alpha_bg);
4040 it->wd->start_time = current_time_get();
4041 it->wd->item_moving_effect_timer = ecore_animator_add(_item_moving_effect_timer_cb, it->wd);
4044 _item_subitems_clear(it);
4049 * Set the selected state of an item
4051 * This sets the selected state (1 selected, 0 not selected) of the given
4054 * @param it The item
4055 * @param selected The selected state
4060 elm_genlist_item_selected_set(Elm_Genlist_Item *it,
4063 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4064 Widget_Data *wd = elm_widget_data_get(it->base.widget);
4066 if (it->delete_me) return;
4067 selected = !!selected;
4068 if (it->selected == selected) return;
4074 while (wd->selected)
4075 _item_unselect(wd->selected->data);
4085 * Get the selected state of an item
4087 * This gets the selected state of an item (1 selected, 0 not selected).
4089 * @param it The item
4090 * @return The selected state
4095 elm_genlist_item_selected_get(const Elm_Genlist_Item *it)
4097 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4098 return it->selected;
4102 * Sets the expanded state of an item (if it's a parent)
4104 * This expands or contracts a parent item (thus showing or hiding the
4107 * @param it The item
4108 * @param expanded The expanded state (1 expanded, 0 not expanded).
4113 elm_genlist_item_expanded_set(Elm_Genlist_Item *it,
4116 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4117 if (it->expanded == expanded) return;
4118 it->expanded = expanded;
4119 it->wd->expand_item = it;
4121 if(it->wd->effect_mode && !it->wd->alpha_bg)
4122 it->wd->alpha_bg = _create_tray_alpha_bg(it->base.widget);
4126 it->wd->auto_scrolled = EINA_FALSE;
4127 it->wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND;
4129 edje_object_signal_emit(it->base.view, "elm,state,expanded", "elm");
4130 evas_object_smart_callback_call(it->base.widget, "expanded", it);
4134 it->wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT;
4136 edje_object_signal_emit(it->base.view, "elm,state,contracted", "elm");
4137 evas_object_smart_callback_call(it->base.widget, "contracted", it);
4142 * Get the expanded state of an item
4144 * This gets the expanded state of an item
4146 * @param it The item
4147 * @return Thre expanded state
4152 elm_genlist_item_expanded_get(const Elm_Genlist_Item *it)
4154 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4155 return it->expanded;
4159 * Get the depth of expanded item
4161 * @param it The genlist item object
4162 * @return The depth of expanded item
4167 elm_genlist_item_expanded_depth_get(const Elm_Genlist_Item *it)
4169 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, 0);
4170 return it->expanded_depth;
4174 * Sets the disabled state of an item.
4176 * A disabled item cannot be selected or unselected. It will also
4177 * change appearance to appear disabled. This sets the disabled state
4178 * (1 disabled, 0 not disabled).
4180 * @param it The item
4181 * @param disabled The disabled state
4186 elm_genlist_item_disabled_set(Elm_Genlist_Item *it,
4189 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4190 if (it->disabled == disabled) return;
4191 if (it->delete_me) return;
4192 it->disabled = disabled;
4196 edje_object_signal_emit(it->base.view, "elm,state,disabled", "elm");
4198 edje_object_signal_emit(it->base.view, "elm,state,enabled", "elm");
4203 * Get the disabled state of an item
4205 * This gets the disabled state of the given item.
4207 * @param it The item
4208 * @return The disabled state
4213 elm_genlist_item_disabled_get(const Elm_Genlist_Item *it)
4215 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4216 if (it->delete_me) return EINA_FALSE;
4217 return it->disabled;
4221 * Sets the display only state of an item.
4223 * A display only item cannot be selected or unselected. It is for
4224 * display only and not selecting or otherwise clicking, dragging
4225 * etc. by the user, thus finger size rules will not be applied to
4228 * @param it The item
4229 * @param display_only The display only state
4234 elm_genlist_item_display_only_set(Elm_Genlist_Item *it,
4235 Eina_Bool display_only)
4237 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4238 if (!it->block) return;
4239 if (it->display_only == display_only) return;
4240 if (it->delete_me) return;
4241 it->display_only = display_only;
4242 it->mincalcd = EINA_FALSE;
4243 it->updateme = EINA_TRUE;
4244 it->block->updateme = EINA_TRUE;
4245 if (it->wd->update_job) ecore_job_del(it->wd->update_job);
4246 it->wd->update_job = ecore_job_add(_update_job, it->wd);
4250 * Get the display only state of an item
4252 * This gets the display only state of the given item.
4254 * @param it The item
4255 * @return The display only state
4260 elm_genlist_item_display_only_get(const Elm_Genlist_Item *it)
4262 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4263 if (it->delete_me) return EINA_FALSE;
4264 return it->display_only;
4268 * Show the given item
4270 * This causes genlist to jump to the given item @p it and show it (by
4271 * scrolling), if it is not fully visible.
4273 * @param it The item
4278 elm_genlist_item_show(Elm_Genlist_Item *it)
4280 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4281 Evas_Coord gith = 0;
4282 if (it->delete_me) return;
4283 if ((it->queued) || (!it->mincalcd))
4285 it->wd->show_item = it;
4286 it->wd->bring_in = EINA_TRUE;
4287 it->showme = EINA_TRUE;
4290 if (it->wd->show_item)
4292 it->wd->show_item->showme = EINA_FALSE;
4293 it->wd->show_item = NULL;
4295 if ((it->group_item) && (it->wd->pan_y > (it->y + it->block->y)))
4296 gith = it->group_item->h;
4297 elm_smart_scroller_child_region_show(it->wd->scr,
4298 it->x + it->block->x,
4299 it->y + it->block->y - gith,
4300 it->block->w, it->h);
4304 * Bring in the given item
4306 * This causes genlist to jump to the given item @p it and show it (by
4307 * scrolling), if it is not fully visible. This may use animation to
4308 * do so and take a period of time
4310 * @param it The item
4315 elm_genlist_item_bring_in(Elm_Genlist_Item *it)
4317 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4318 Evas_Coord gith = 0;
4319 if (it->delete_me) return;
4320 if ((it->queued) || (!it->mincalcd))
4322 it->wd->show_item = it;
4323 it->wd->bring_in = EINA_TRUE;
4324 it->showme = EINA_TRUE;
4327 if (it->wd->show_item)
4329 it->wd->show_item->showme = EINA_FALSE;
4330 it->wd->show_item = NULL;
4332 if ((it->group_item) && (it->wd->pan_y > (it->y + it->block->y)))
4333 gith = it->group_item->h;
4334 elm_smart_scroller_region_bring_in(it->wd->scr,
4335 it->x + it->block->x,
4336 it->y + it->block->y - gith,
4337 it->block->w, it->h);
4341 * Show the given item at the top
4343 * This causes genlist to jump to the given item @p it and show it (by
4344 * scrolling), if it is not fully visible.
4346 * @param it The item
4351 elm_genlist_item_top_show(Elm_Genlist_Item *it)
4353 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4355 Evas_Coord gith = 0;
4357 if (it->delete_me) return;
4358 if ((it->queued) || (!it->mincalcd))
4360 it->wd->show_item = it;
4361 it->wd->bring_in = EINA_TRUE;
4362 it->showme = EINA_TRUE;
4365 if (it->wd->show_item)
4367 it->wd->show_item->showme = EINA_FALSE;
4368 it->wd->show_item = NULL;
4370 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4371 if (it->group_item) gith = it->group_item->h;
4372 elm_smart_scroller_child_region_show(it->wd->scr,
4373 it->x + it->block->x,
4374 it->y + it->block->y - gith,
4379 * Bring in the given item at the top
4381 * This causes genlist to jump to the given item @p it and show it (by
4382 * scrolling), if it is not fully visible. This may use animation to
4383 * do so and take a period of time
4385 * @param it The item
4390 elm_genlist_item_top_bring_in(Elm_Genlist_Item *it)
4392 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4394 Evas_Coord gith = 0;
4396 if (it->delete_me) return;
4397 if ((it->queued) || (!it->mincalcd))
4399 it->wd->show_item = it;
4400 it->wd->bring_in = EINA_TRUE;
4401 it->showme = EINA_TRUE;
4404 if (it->wd->show_item)
4406 it->wd->show_item->showme = EINA_FALSE;
4407 it->wd->show_item = NULL;
4409 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4410 if (it->group_item) gith = it->group_item->h;
4411 elm_smart_scroller_region_bring_in(it->wd->scr,
4412 it->x + it->block->x,
4413 it->y + it->block->y - gith,
4418 * Show the given item at the middle
4420 * This causes genlist to jump to the given item @p it and show it (by
4421 * scrolling), if it is not fully visible.
4423 * @param it The item
4428 elm_genlist_item_middle_show(Elm_Genlist_Item *it)
4430 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4433 if (it->delete_me) return;
4434 if ((it->queued) || (!it->mincalcd))
4436 it->wd->show_item = it;
4437 it->wd->bring_in = EINA_TRUE;
4438 it->showme = EINA_TRUE;
4441 if (it->wd->show_item)
4443 it->wd->show_item->showme = EINA_FALSE;
4444 it->wd->show_item = NULL;
4446 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4447 elm_smart_scroller_child_region_show(it->wd->scr,
4448 it->x + it->block->x,
4449 it->y + it->block->y - oh / 2 +
4450 it->h / 2, it->block->w, oh);
4454 * Bring in the given item at the middle
4456 * This causes genlist to jump to the given item @p it and show it (by
4457 * scrolling), if it is not fully visible. This may use animation to
4458 * do so and take a period of time
4460 * @param it The item
4465 elm_genlist_item_middle_bring_in(Elm_Genlist_Item *it)
4467 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4470 if (it->delete_me) return;
4471 if ((it->queued) || (!it->mincalcd))
4473 it->wd->show_item = it;
4474 it->wd->bring_in = EINA_TRUE;
4475 it->showme = EINA_TRUE;
4478 if (it->wd->show_item)
4480 it->wd->show_item->showme = EINA_FALSE;
4481 it->wd->show_item = NULL;
4483 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4484 elm_smart_scroller_region_bring_in(it->wd->scr,
4485 it->x + it->block->x,
4486 it->y + it->block->y - oh / 2 + it->h / 2,
4491 * Delete a given item
4493 * This deletes the item from genlist and calls the genlist item del
4494 * class callback defined in the item class, if it is set. This clears all
4495 * subitems if it is a tree.
4497 * @param it The item
4502 elm_genlist_item_del(Elm_Genlist_Item *it)
4504 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4505 if ((it->relcount > 0) || (it->walking > 0))
4507 elm_widget_item_pre_notify_del(it);
4508 elm_genlist_item_subitems_clear(it);
4509 it->delete_me = EINA_TRUE;
4510 if (it->wd->show_item == it) it->wd->show_item = NULL;
4512 it->wd->selected = eina_list_remove(it->wd->selected,
4516 if (it->realized) _item_unrealize(it);
4517 if (it->effect_item_realized) _effect_item_unrealize(it);
4518 it->block->changed = EINA_TRUE;
4519 if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
4520 it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
4522 // if (it->itc->func.del)
4523 // it->itc->func.del((void *)it->base.data, it->base.widget);
4530 * Set the data item from the genlist item
4532 * This set the data value passed on the elm_genlist_item_append() and
4533 * related item addition calls. This function will also call
4534 * elm_genlist_item_update() so the item will be updated to reflect the
4537 * @param it The item
4538 * @param data The new data pointer to set
4543 elm_genlist_item_data_set(Elm_Genlist_Item *it,
4546 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4547 elm_widget_item_data_set(it, data);
4548 elm_genlist_item_update(it);
4552 * Get the data item from the genlist item
4554 * This returns the data value passed on the elm_genlist_item_append()
4555 * and related item addition calls and elm_genlist_item_data_set().
4557 * @param it The item
4558 * @return The data pointer provided when created
4563 elm_genlist_item_data_get(const Elm_Genlist_Item *it)
4565 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4566 return elm_widget_item_data_get(it);
4570 * Tells genlist to "orphan" icons fetchs by the item class
4572 * This instructs genlist to release references to icons in the item,
4573 * meaning that they will no longer be managed by genlist and are
4574 * floating "orphans" that can be re-used elsewhere if the user wants
4577 * @param it The item
4582 elm_genlist_item_icons_orphan(Elm_Genlist_Item *it)
4585 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4586 EINA_LIST_FREE(it->icon_objs, icon)
4588 elm_widget_sub_object_del(it->base.widget, icon);
4589 evas_object_smart_member_del(icon);
4590 evas_object_hide(icon);
4595 * Get the real evas object of the genlist item
4597 * This returns the actual evas object used for the specified genlist
4598 * item. This may be NULL as it may not be created, and may be deleted
4599 * at any time by genlist. Do not modify this object (move, resize,
4600 * show, hide etc.) as genlist is controlling it. This function is for
4601 * querying, emitting custom signals or hooking lower level callbacks
4602 * for events. Do not delete this object under any circumstances.
4604 * @param it The item
4605 * @return The object pointer
4609 EAPI const Evas_Object *
4610 elm_genlist_item_object_get(const Elm_Genlist_Item *it)
4612 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4613 return it->base.view;
4617 * Update the contents of an item
4619 * This updates an item by calling all the item class functions again
4620 * to get the icons, labels and states. Use this when the original
4621 * item data has changed and the changes are desired to be reflected.
4623 * @param it The item
4628 elm_genlist_item_update(Elm_Genlist_Item *it)
4630 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4631 if (!it->block) return;
4632 if (it->delete_me) return;
4633 it->mincalcd = EINA_FALSE;
4634 it->updateme = EINA_TRUE;
4635 it->block->updateme = EINA_TRUE;
4636 if (it->wd->update_job) ecore_job_del(it->wd->update_job);
4637 it->wd->update_job = ecore_job_add(_update_job, it->wd);
4641 * Update the item class of an item
4643 * @param it The item
4644 * @parem itc The item class for the item
4649 elm_genlist_item_item_class_update(Elm_Genlist_Item *it,
4650 const Elm_Genlist_Item_Class *itc)
4652 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4653 if (!it->block) return;
4654 EINA_SAFETY_ON_NULL_RETURN(itc);
4655 if (it->delete_me) return;
4657 it->nocache = EINA_TRUE;
4658 elm_genlist_item_update(it);
4661 static Evas_Object *
4662 _elm_genlist_item_label_create(void *data,
4664 void *item __UNUSED__)
4666 Evas_Object *label = elm_label_add(obj);
4669 elm_object_style_set(label, "tooltip");
4670 elm_label_label_set(label, data);
4675 _elm_genlist_item_label_del_cb(void *data,
4676 Evas_Object *obj __UNUSED__,
4677 void *event_info __UNUSED__)
4679 eina_stringshare_del(data);
4683 * Set the text to be shown in the genlist item.
4685 * @param item Target item
4686 * @param text The text to set in the content
4688 * Setup the text as tooltip to object. The item can have only one
4689 * tooltip, so any previous tooltip data is removed.
4694 elm_genlist_item_tooltip_text_set(Elm_Genlist_Item *item,
4697 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4698 text = eina_stringshare_add(text);
4699 elm_genlist_item_tooltip_content_cb_set(item, _elm_genlist_item_label_create,
4701 _elm_genlist_item_label_del_cb);
4705 * Set the content to be shown in the tooltip item
4707 * Setup the tooltip to item. The item can have only one tooltip, so
4708 * any previous tooltip data is removed. @p func(with @p data) will be
4709 * called every time that need to show the tooltip and it should return a
4710 * valid Evas_Object. This object is then managed fully by tooltip
4711 * system and is deleted when the tooltip is gone.
4713 * @param item the genlist item being attached by a tooltip.
4714 * @param func the function used to create the tooltip contents.
4715 * @param data what to provide to @a func as callback data/context.
4716 * @param del_cb called when data is not needed anymore, either when
4717 * another callback replaces @func, the tooltip is unset with
4718 * elm_genlist_item_tooltip_unset() or the owner @a item
4719 * dies. This callback receives as the first parameter the
4720 * given @a data, and @c event_info is the item.
4725 elm_genlist_item_tooltip_content_cb_set(Elm_Genlist_Item *item,
4726 Elm_Tooltip_Item_Content_Cb func,
4728 Evas_Smart_Cb del_cb)
4730 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_GOTO(item, error);
4732 if ((item->tooltip.content_cb == func) && (item->tooltip.data == data))
4735 if (item->tooltip.del_cb)
4736 item->tooltip.del_cb((void *)item->tooltip.data,
4737 item->base.widget, item);
4739 item->tooltip.content_cb = func;
4740 item->tooltip.data = data;
4741 item->tooltip.del_cb = del_cb;
4743 if (item->base.view)
4745 elm_widget_item_tooltip_content_cb_set(item,
4746 item->tooltip.content_cb,
4747 item->tooltip.data, NULL);
4748 elm_widget_item_tooltip_style_set(item, item->tooltip.style);
4754 if (del_cb) del_cb((void *)data, NULL, NULL);
4758 * Unset tooltip from item
4760 * @param item genlist item to remove previously set tooltip.
4762 * Remove tooltip from item. The callback provided as del_cb to
4763 * elm_genlist_item_tooltip_content_cb_set() will be called to notify
4764 * it is not used anymore.
4766 * @see elm_genlist_item_tooltip_content_cb_set()
4771 elm_genlist_item_tooltip_unset(Elm_Genlist_Item *item)
4773 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4774 if ((item->base.view) && (item->tooltip.content_cb))
4775 elm_widget_item_tooltip_unset(item);
4777 if (item->tooltip.del_cb)
4778 item->tooltip.del_cb((void *)item->tooltip.data, item->base.widget, item);
4779 item->tooltip.del_cb = NULL;
4780 item->tooltip.content_cb = NULL;
4781 item->tooltip.data = NULL;
4782 if (item->tooltip.style)
4783 elm_genlist_item_tooltip_style_set(item, NULL);
4787 * Sets a different style for this item tooltip.
4789 * @note before you set a style you should define a tooltip with
4790 * elm_genlist_item_tooltip_content_cb_set() or
4791 * elm_genlist_item_tooltip_text_set()
4793 * @param item genlist item with tooltip already set.
4794 * @param style the theme style to use (default, transparent, ...)
4799 elm_genlist_item_tooltip_style_set(Elm_Genlist_Item *item,
4802 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4803 eina_stringshare_replace(&item->tooltip.style, style);
4804 if (item->base.view) elm_widget_item_tooltip_style_set(item, style);
4808 * Get the style for this item tooltip.
4810 * @param item genlist item with tooltip already set.
4811 * @return style the theme style in use, defaults to "default". If the
4812 * object does not have a tooltip set, then NULL is returned.
4817 elm_genlist_item_tooltip_style_get(const Elm_Genlist_Item *item)
4819 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4820 return item->tooltip.style;
4824 * Set the cursor to be shown when mouse is over the genlist item
4826 * @param item Target item
4827 * @param cursor the cursor name to be used.
4829 * @see elm_object_cursor_set()
4833 elm_genlist_item_cursor_set(Elm_Genlist_Item *item,
4836 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4837 eina_stringshare_replace(&item->mouse_cursor, cursor);
4838 if (item->base.view) elm_widget_item_cursor_set(item, cursor);
4842 * Get the cursor to be shown when mouse is over the genlist item
4844 * @param item genlist item with cursor already set.
4845 * @return the cursor name.
4850 elm_genlist_item_cursor_get(const Elm_Genlist_Item *item)
4852 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4853 return elm_widget_item_cursor_get(item);
4857 * Unset the cursor to be shown when mouse is over the genlist item
4859 * @param item Target item
4861 * @see elm_object_cursor_unset()
4865 elm_genlist_item_cursor_unset(Elm_Genlist_Item *item)
4867 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4868 if (!item->mouse_cursor)
4871 if (item->base.view)
4872 elm_widget_item_cursor_unset(item);
4874 eina_stringshare_del(item->mouse_cursor);
4875 item->mouse_cursor = NULL;
4879 * Sets a different style for this item cursor.
4881 * @note before you set a style you should define a cursor with
4882 * elm_genlist_item_cursor_set()
4884 * @param item genlist item with cursor already set.
4885 * @param style the theme style to use (default, transparent, ...)
4890 elm_genlist_item_cursor_style_set(Elm_Genlist_Item *item,
4893 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4894 elm_widget_item_cursor_style_set(item, style);
4898 * Get the style for this item cursor.
4900 * @param item genlist item with cursor already set.
4901 * @return style the theme style in use, defaults to "default". If the
4902 * object does not have a cursor set, then NULL is returned.
4907 elm_genlist_item_cursor_style_get(const Elm_Genlist_Item *item)
4909 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4910 return elm_widget_item_cursor_style_get(item);
4914 * Set if the cursor set should be searched on the theme or should use
4915 * the provided by the engine, only.
4917 * @note before you set if should look on theme you should define a
4918 * cursor with elm_object_cursor_set(). By default it will only look
4919 * for cursors provided by the engine.
4921 * @param item widget item with cursor already set.
4922 * @param engine_only boolean to define it cursors should be looked
4923 * only between the provided by the engine or searched on widget's
4929 elm_genlist_item_cursor_engine_only_set(Elm_Genlist_Item *item,
4930 Eina_Bool engine_only)
4932 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4933 elm_widget_item_cursor_engine_only_set(item, engine_only);
4937 * Get the cursor engine only usage for this item cursor.
4939 * @param item widget item with cursor already set.
4940 * @return engine_only boolean to define it cursors should be looked
4941 * only between the provided by the engine or searched on widget's
4942 * theme as well. If the object does not have a cursor set, then
4943 * EINA_FALSE is returned.
4948 elm_genlist_item_cursor_engine_only_get(const Elm_Genlist_Item *item)
4950 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
4951 return elm_widget_item_cursor_engine_only_get(item);
4955 * This sets the horizontal stretching mode
4957 * This sets the mode used for sizing items horizontally. Valid modes
4958 * are ELM_LIST_LIMIT and ELM_LIST_SCROLL. The default is
4959 * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
4960 * the scroller will scroll horizontally. Otherwise items are expanded
4961 * to fill the width of the viewport of the scroller. If it is
4962 * ELM_LIST_LIMIT, Items will be expanded to the viewport width and
4963 * limited to that size.
4965 * @param obj The genlist object
4966 * @param mode The mode to use
4971 elm_genlist_horizontal_mode_set(Evas_Object *obj,
4974 ELM_CHECK_WIDTYPE(obj, widtype);
4975 Widget_Data *wd = elm_widget_data_get(obj);
4977 if (wd->mode == mode) return;
4983 * Gets the horizontal stretching mode
4985 * @param obj The genlist object
4986 * @return The mode to use
4987 * (ELM_LIST_LIMIT, ELM_LIST_SCROLL)
4992 elm_genlist_horizontal_mode_get(const Evas_Object *obj)
4994 ELM_CHECK_WIDTYPE(obj, widtype) ELM_LIST_LAST;
4995 Widget_Data *wd = elm_widget_data_get(obj);
4996 if (!wd) return ELM_LIST_LAST;
5001 * Set the always select mode.
5003 * Items will only call their selection func and callback when first
5004 * becoming selected. Any further clicks will do nothing, unless you
5005 * enable always select with elm_genlist_always_select_mode_set().
5006 * This means even if selected, every click will make the selected
5007 * callbacks be called.
5009 * @param obj The genlist object
5010 * @param always_select The always select mode
5011 * (EINA_TRUE = on, EINA_FALSE = off)
5016 elm_genlist_always_select_mode_set(Evas_Object *obj,
5017 Eina_Bool always_select)
5019 ELM_CHECK_WIDTYPE(obj, widtype);
5020 Widget_Data *wd = elm_widget_data_get(obj);
5022 wd->always_select = always_select;
5026 * Get the always select mode.
5028 * @param obj The genlist object
5029 * @return The always select mode
5030 * (EINA_TRUE = on, EINA_FALSE = off)
5035 elm_genlist_always_select_mode_get(const Evas_Object *obj)
5037 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5038 Widget_Data *wd = elm_widget_data_get(obj);
5039 if (!wd) return EINA_FALSE;
5040 return wd->always_select;
5044 * Set no select mode
5046 * This will turn off the ability to select items entirely and they
5047 * will neither appear selected nor call selected callback functions.
5049 * @param obj The genlist object
5050 * @param no_select The no select mode
5051 * (EINA_TRUE = on, EINA_FALSE = off)
5056 elm_genlist_no_select_mode_set(Evas_Object *obj,
5057 Eina_Bool no_select)
5059 ELM_CHECK_WIDTYPE(obj, widtype);
5060 Widget_Data *wd = elm_widget_data_get(obj);
5062 wd->no_select = no_select;
5066 * Gets no select mode
5068 * @param obj The genlist object
5069 * @return The no select mode
5070 * (EINA_TRUE = on, EINA_FALSE = off)
5075 elm_genlist_no_select_mode_get(const Evas_Object *obj)
5077 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5078 Widget_Data *wd = elm_widget_data_get(obj);
5079 if (!wd) return EINA_FALSE;
5080 return wd->no_select;
5086 * This will enable the compress mode where items are "compressed"
5087 * horizontally to fit the genlist scrollable viewport width. This is
5088 * special for genlist. Do not rely on
5089 * elm_genlist_horizontal_mode_set() being set to ELM_LIST_COMPRESS to
5090 * work as genlist needs to handle it specially.
5092 * @param obj The genlist object
5093 * @param compress The compress mode
5094 * (EINA_TRUE = on, EINA_FALSE = off)
5099 elm_genlist_compress_mode_set(Evas_Object *obj,
5102 ELM_CHECK_WIDTYPE(obj, widtype);
5103 Widget_Data *wd = elm_widget_data_get(obj);
5105 wd->compress = compress;
5109 * Get the compress mode
5111 * @param obj The genlist object
5112 * @return The compress mode
5113 * (EINA_TRUE = on, EINA_FALSE = off)
5118 elm_genlist_compress_mode_get(const Evas_Object *obj)
5120 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5121 Widget_Data *wd = elm_widget_data_get(obj);
5122 if (!wd) return EINA_FALSE;
5123 return wd->compress;
5127 * Set height-for-width mode
5129 * With height-for-width mode the item width will be fixed (restricted
5130 * to a minimum of) to the list width when calculating its size in
5131 * order to allow the height to be calculated based on it. This allows,
5132 * for instance, text block to wrap lines if the Edje part is
5133 * configured with "text.min: 0 1".
5135 * @note This mode will make list resize slower as it will have to
5136 * recalculate every item height again whenever the list width
5139 * @note When height-for-width mode is enabled, it also enables
5140 * compress mode (see elm_genlist_compress_mode_set()) and
5141 * disables homogeneous (see elm_genlist_homogeneous_set()).
5143 * @param obj The genlist object
5144 * @param setting The height-for-width mode (EINA_TRUE = on,
5150 elm_genlist_height_for_width_mode_set(Evas_Object *obj,
5151 Eina_Bool height_for_width)
5153 ELM_CHECK_WIDTYPE(obj, widtype);
5154 Widget_Data *wd = elm_widget_data_get(obj);
5156 wd->height_for_width = !!height_for_width;
5157 if (wd->height_for_width)
5159 elm_genlist_homogeneous_set(obj, EINA_FALSE);
5160 elm_genlist_compress_mode_set(obj, EINA_TRUE);
5165 * Get the height-for-width mode
5167 * @param obj The genlist object
5168 * @return The height-for-width mode (EINA_TRUE = on, EINA_FALSE =
5174 elm_genlist_height_for_width_mode_get(const Evas_Object *obj)
5176 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5177 Widget_Data *wd = elm_widget_data_get(obj);
5178 if (!wd) return EINA_FALSE;
5179 return wd->height_for_width;
5185 * This will enable or disable the scroller bounce mode for the
5186 * genlist. See elm_scroller_bounce_set() for details
5188 * @param obj The genlist object
5189 * @param h_bounce Allow bounce horizontally
5190 * @param v_bounce Allow bounce vertically
5195 elm_genlist_bounce_set(Evas_Object *obj,
5199 ELM_CHECK_WIDTYPE(obj, widtype);
5200 Widget_Data *wd = elm_widget_data_get(obj);
5202 elm_smart_scroller_bounce_allow_set(wd->scr, h_bounce, v_bounce);
5206 * Get the bounce mode
5208 * @param obj The genlist object
5209 * @param h_bounce Allow bounce horizontally
5210 * @param v_bounce Allow bounce vertically
5215 elm_genlist_bounce_get(const Evas_Object *obj,
5216 Eina_Bool *h_bounce,
5217 Eina_Bool *v_bounce)
5219 ELM_CHECK_WIDTYPE(obj, widtype);
5220 Widget_Data *wd = elm_widget_data_get(obj);
5222 elm_smart_scroller_bounce_allow_get(obj, h_bounce, v_bounce);
5226 * Set homogenous mode
5228 * This will enable the homogeneous mode where items are of the same
5229 * height and width so that genlist may do the lazy-loading at its
5230 * maximum. This implies 'compressed' mode.
5232 * @param obj The genlist object
5233 * @param homogeneous Assume the items within the genlist are of the
5234 * same height and width (EINA_TRUE = on, EINA_FALSE = off)
5239 elm_genlist_homogeneous_set(Evas_Object *obj,
5240 Eina_Bool homogeneous)
5242 ELM_CHECK_WIDTYPE(obj, widtype);
5243 Widget_Data *wd = elm_widget_data_get(obj);
5245 if (homogeneous) elm_genlist_compress_mode_set(obj, EINA_TRUE);
5246 wd->homogeneous = homogeneous;
5250 * Get the homogenous mode
5252 * @param obj The genlist object
5253 * @return Assume the items within the genlist are of the same height
5254 * and width (EINA_TRUE = on, EINA_FALSE = off)
5259 elm_genlist_homogeneous_get(const Evas_Object *obj)
5261 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5262 Widget_Data *wd = elm_widget_data_get(obj);
5263 if (!wd) return EINA_FALSE;
5264 return wd->homogeneous;
5268 * Set the maximum number of items within an item block
5270 * This will configure the block count to tune to the target with
5271 * particular performance matrix.
5273 * @param obj The genlist object
5274 * @param n Maximum number of items within an item block
5279 elm_genlist_block_count_set(Evas_Object *obj,
5282 ELM_CHECK_WIDTYPE(obj, widtype);
5283 Widget_Data *wd = elm_widget_data_get(obj);
5285 wd->max_items_per_block = n;
5286 wd->item_cache_max = wd->max_items_per_block * 2;
5287 _item_cache_clean(wd);
5291 * Get the maximum number of items within an item block
5293 * @param obj The genlist object
5294 * @return Maximum number of items within an item block
5299 elm_genlist_block_count_get(const Evas_Object *obj)
5301 ELM_CHECK_WIDTYPE(obj, widtype) 0;
5302 Widget_Data *wd = elm_widget_data_get(obj);
5304 return wd->max_items_per_block;
5308 * Set the timeout in seconds for the longpress event
5310 * @param obj The genlist object
5311 * @param timeout timeout in seconds
5316 elm_genlist_longpress_timeout_set(Evas_Object *obj,
5319 ELM_CHECK_WIDTYPE(obj, widtype);
5320 Widget_Data *wd = elm_widget_data_get(obj);
5322 wd->longpress_timeout = timeout;
5326 * Get the timeout in seconds for the longpress event
5328 * @param obj The genlist object
5329 * @return timeout in seconds
5334 elm_genlist_longpress_timeout_get(const Evas_Object *obj)
5336 ELM_CHECK_WIDTYPE(obj, widtype) 0;
5337 Widget_Data *wd = elm_widget_data_get(obj);
5339 return wd->longpress_timeout;
5343 * Set the scrollbar policy
5345 * This sets the scrollbar visibility policy for the given genlist
5346 * scroller. ELM_SMART_SCROLLER_POLICY_AUTO means the scrollbar is
5347 * made visible if it is needed, and otherwise kept hidden.
5348 * ELM_SMART_SCROLLER_POLICY_ON turns it on all the time, and
5349 * ELM_SMART_SCROLLER_POLICY_OFF always keeps it off. This applies
5350 * respectively for the horizontal and vertical scrollbars.
5352 * @param obj The genlist object
5353 * @param policy_h Horizontal scrollbar policy
5354 * @param policy_v Vertical scrollbar policy
5359 elm_genlist_scroller_policy_set(Evas_Object *obj,
5360 Elm_Scroller_Policy policy_h,
5361 Elm_Scroller_Policy policy_v)
5363 ELM_CHECK_WIDTYPE(obj, widtype);
5364 Widget_Data *wd = elm_widget_data_get(obj);
5366 if ((policy_h >= ELM_SCROLLER_POLICY_LAST) ||
5367 (policy_v >= ELM_SCROLLER_POLICY_LAST))
5370 elm_smart_scroller_policy_set(wd->scr, policy_h, policy_v);
5374 * Get the scrollbar policy
5376 * @param obj The genlist object
5377 * @param policy_h Horizontal scrollbar policy
5378 * @param policy_v Vertical scrollbar policy
5383 elm_genlist_scroller_policy_get(const Evas_Object *obj,
5384 Elm_Scroller_Policy *policy_h,
5385 Elm_Scroller_Policy *policy_v)
5387 ELM_CHECK_WIDTYPE(obj, widtype);
5388 Widget_Data *wd = elm_widget_data_get(obj);
5389 Elm_Smart_Scroller_Policy s_policy_h, s_policy_v;
5390 if ((!wd) || (!wd->scr)) return;
5391 elm_smart_scroller_policy_get(wd->scr, &s_policy_h, &s_policy_v);
5392 if (policy_h) *policy_h = (Elm_Scroller_Policy)s_policy_h;
5393 if (policy_v) *policy_v = (Elm_Scroller_Policy)s_policy_v;
5396 /****************************************************************************/
5401 * @param obj The genlist object
5402 * @param reorder_mode The reorder mode
5403 * (EINA_TRUE = on, EINA_FALSE = off)
5408 elm_genlist_reorder_mode_set(Evas_Object *obj,
5409 Eina_Bool reorder_mode)
5411 ELM_CHECK_WIDTYPE(obj, widtype);
5412 Widget_Data *wd = elm_widget_data_get(obj);
5414 wd->reorder_mode = reorder_mode;
5418 * Get the reorder mode
5420 * @param obj The genlist object
5421 * @return The reorder mode
5422 * (EINA_TRUE = on, EINA_FALSE = off)
5427 elm_genlist_reorder_mode_get(const Evas_Object *obj)
5429 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5430 Widget_Data *wd = elm_widget_data_get(obj);
5431 if (!wd) return EINA_FALSE;
5432 return wd->reorder_mode;
5436 elm_genlist_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after)
5442 elm_genlist_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before)
5448 _effect_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after)
5453 if (it->wd->ed->ec->move)
5454 it->wd->ed->ec->move(it->base.widget, it, after, EINA_TRUE);
5456 // printf("MOVE AFTER : %d after = %d \n", (int)elm_genlist_item_data_get(it)+1, (int)elm_genlist_item_data_get(after)+1);
5457 it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
5458 it->wd->reorder_deleted = EINA_TRUE;
5459 _item_block_del(it);
5461 it->wd->items = eina_inlist_append_relative(it->wd->items, EINA_INLIST_GET(it), EINA_INLIST_GET(after));
5463 it->rel->relcount++;
5464 it->before = EINA_FALSE;
5465 _item_queue(it->wd, it);
5469 _effect_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before)
5472 if (!before) return;
5474 if (it->wd->ed->ec->move)
5475 it->wd->ed->ec->move(it->base.widget, it, before, EINA_FALSE);
5477 // printf("MOVE BEFORE : %d before = %d \n", (int)elm_genlist_item_data_get(it)+1, (int)elm_genlist_item_data_get(before)+1);
5478 it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
5479 it->wd->reorder_deleted = EINA_TRUE;
5480 _item_block_del(it);
5481 it->wd->items = eina_inlist_prepend_relative(it->wd->items, EINA_INLIST_GET(it), EINA_INLIST_GET(before));
5483 it->rel->relcount++;
5484 it->before = EINA_TRUE;
5485 _item_queue(it->wd, it);
5489 elm_genlist_effect_set(const Evas_Object *obj, Eina_Bool emode)
5491 ELM_CHECK_WIDTYPE(obj, widtype);
5492 Widget_Data *wd = elm_widget_data_get(obj);
5494 wd->effect_mode = emode;
5495 // wd->point_rect = evas_object_rectangle_add(evas_object_evas_get(wd->obj));
5496 // evas_object_resize(wd->point_rect, 10, 25);
5497 // evas_object_color_set(wd->point_rect, 255, 0, 0, 130);
5498 // evas_object_show(wd->point_rect);
5499 // evas_object_hide(wd->point_rect);
5503 _create_tray_alpha_bg(const Evas_Object *obj)
5505 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
5506 Widget_Data *wd = elm_widget_data_get(obj);
5507 if (!wd) return NULL;
5509 Evas_Object *bg = NULL;
5510 Evas_Coord ox, oy, ow, oh;
5512 evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
5513 bg = evas_object_rectangle_add(evas_object_evas_get(wd->obj));
5514 evas_object_color_set(bg,0,0,0,0);
5515 evas_object_resize(bg , ow, oh);
5516 evas_object_move(bg , ox, oy);
5517 evas_object_show(bg);
5518 evas_object_hide(bg);
5525 struct timeval timev;
5527 gettimeofday(&timev, NULL);
5528 return ((timev.tv_sec * 1000) + ((timev.tv_usec) / 1000));
5531 // added for item moving animation.
5533 _item_moving_effect_timer_cb(void *data)
5535 Widget_Data *wd = data;
5536 if (!wd) return EINA_FALSE;
5538 Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
5539 Elm_Genlist_Item *it, *it2;
5541 double time = 0.4, t;
5543 Eina_Bool check, end = EINA_FALSE;
5544 // static Eina_Bool first = EINA_TRUE;
5547 t = ((0.0 > (t = current_time_get() - wd->start_time)) ? 0.0 : t) / 1000;
5549 evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
5550 evas_output_viewport_get(evas_object_evas_get(wd->pan_smart), &cvx, &cvy, &cvw, &cvh);
5551 if (t > time) end = EINA_TRUE;
5552 EINA_INLIST_FOREACH(wd->blocks, itb)
5555 if (ELM_RECTS_INTERSECT(itb->x - wd->pan_x + ox,
5556 itb->y - wd->pan_y + oy,
5558 cvx, cvy, cvw, cvh))
5560 EINA_LIST_FOREACH(itb->items, l, it)
5562 if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
5567 if(it2->parent == wd->expand_item) check = EINA_TRUE;
5573 //printf(" s: %d %d ", oy, oh);
5574 if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
5575 dy = it->scrl_y - it->old_scrl_y;
5576 else if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5578 // printf("%d %d\n", it->old_scrl_y, wd->expand_item_end);
5579 if(wd->expand_item_end < it->old_scrl_y)
5580 dy = wd->expand_item_gap;
5582 else if (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
5584 if (wd->expand_item_end < it->old_scrl_y)
5585 dy = wd->expand_item_gap;
5588 y = (1 * sin((t / time) * (M_PI / 2)) * dy);
5595 if (!it->old_scrl_y)
5596 it->old_scrl_y = it->scrl_y;
5599 if (it->old_scrl_y + y < oy + oh)
5601 if (!it->realized) _item_realize(it, in, 0);
5603 if (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE && it->old_scrl_y + y < it->scrl_y)
5604 it->old_scrl_y = it->scrl_y - y;
5607 if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE ||
5608 (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE && it->old_scrl_y + y >= it->scrl_y))
5610 if (wd->edit_mode) _effect_item_controls(it, it->scrl_x, it->old_scrl_y + y);
5613 evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
5614 evas_object_move(it->base.view, it->scrl_x+it->pad_left, it->old_scrl_y + y);
5615 evas_object_show(it->base.view);
5616 evas_object_raise(it->base.view);
5619 if(wd->select_all_item) evas_object_raise(wd->select_all_item->base.view);
5620 if (it->group_item) evas_object_raise(it->group_item->base.view);
5623 if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
5625 it2 = elm_genlist_item_prev_get(it);
5628 if((it2->scrl_y < it->old_scrl_y + y) && (it2->expanded_depth > it->expanded_depth))
5630 if(!it2->effect_done)
5632 //edje_object_signal_emit(it2->base.view, "elm,state,expand_flip", "");
5633 evas_object_move(it2->base.view, it2->scrl_x, it2->scrl_y);
5634 evas_object_show(it2->base.view);
5635 it2->effect_done = EINA_TRUE;
5639 it2 = elm_genlist_item_prev_get(it2);
5642 else if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5644 it2 = elm_genlist_item_prev_get(it);
5647 if((it2->scrl_y > it->old_scrl_y + y) && (it2->expanded_depth > it->expanded_depth))
5649 if(!it2->effect_done)
5651 edje_object_signal_emit(it2->base.view, "elm,state,hide", "");
5652 it2->effect_done = EINA_TRUE;
5657 it2 = elm_genlist_item_prev_get(it2);
5663 // first = EINA_FALSE;
5667 if (wd->item_moving_effect_timer)
5669 if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5670 _item_subitems_clear(wd->expand_item);
5671 EINA_INLIST_FOREACH(wd->blocks, itb)
5673 EINA_LIST_FOREACH(itb->items, l, it)
5675 it->effect_done = EINA_TRUE;
5676 it->list_expanded = 0;
5677 it->old_scrl_y = it->scrl_y;
5681 //evas_render(evas_object_evas_get(wd->obj));
5682 wd->item_moving_effect_timer = NULL;
5683 // first = EINA_TRUE;
5685 _item_auto_scroll(wd);
5686 evas_object_lower(wd->alpha_bg);
5687 evas_object_hide(wd->alpha_bg);
5688 if (wd->calc_job) ecore_job_del(wd->calc_job);
5689 wd->calc_job = ecore_job_add(_calc_job, wd);
5690 elm_smart_scroller_bounce_animator_disabled_set(wd->scr, EINA_FALSE);
5691 wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_NONE;
5693 evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
5694 evas_object_smart_callback_call(wd->obj, "effect_done", NULL);
5695 return ECORE_CALLBACK_CANCEL;
5697 return ECORE_CALLBACK_RENEW;
5701 _emit_contract(Elm_Genlist_Item *it)
5703 Elm_Genlist_Item *it2;
5706 // printf("%p is emited contract\n", it);
5707 edje_object_signal_emit(it->base.view, "elm,state,contract_flip", "");
5708 it->effect_done = EINA_FALSE;
5710 EINA_LIST_FOREACH(it->items, l, it2)
5712 _emit_contract(it2);
5715 // added for item moving animation.
5717 _item_flip_effect_show(Elm_Genlist_Item *it)
5719 Elm_Genlist_Item *it2;
5721 Widget_Data *wd = it->wd;
5722 Eina_Bool check = EINA_FALSE;
5724 it2 = elm_genlist_item_next_get(it);
5727 if(it2->expanded_depth <= it->expanded_depth) check = EINA_TRUE;
5728 it2 = elm_genlist_item_next_get(it2);
5730 EINA_LIST_FOREACH(it->items, l, it2)
5732 if (it2->parent && it == it2->parent)
5734 if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
5736 edje_object_signal_emit(it2->base.view, "flip_item", "");
5738 evas_object_move(it2->base.view, -9999, -9999);
5740 evas_object_show(it2->base.view);
5742 else if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5743 _emit_contract(it2);
5747 return ECORE_CALLBACK_CANCEL;
5752 _elm_genlist_pinch_zoom_execute(Evas_Object *obj, Eina_Bool emode)
5754 printf("!!! NOW FIXING \n");
5759 * Set pinch zoom mode
5761 * @param obj The genlist object
5763 * (EINA_TRUE = pinch contract (zoom in), EINA_FALSE = pinch expand (zoom out)
5768 elm_genlist_pinch_zoom_mode_set(Evas_Object *obj, Eina_Bool emode)
5770 printf("!!! NOW FIXING \n");
5774 * Get pinch zoom mode
5776 * @param obj The genlist object
5777 * @return The pinch mode
5778 * (EINA_TRUE = pinch contract (zoom in), EINA_FALSE = pinch expand (zoom out)
5783 elm_genlist_pinch_zoom_mode_get(const Evas_Object *obj)
5785 printf("!!! NOW FIXING \n");
5790 elm_genlist_pinch_zoom_set(Evas_Object *obj, Eina_Bool emode)
5792 printf("!!! NOW FIXING \n");
5796 ////////////////////////////////////////////////////////////////////////
5798 ////////////////////////////////////////////////////////////////////////
5800 _effect_item_update(Elm_Genlist_Item *it)
5802 if (it->edit_select_check)
5804 edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
5808 edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
5813 _edit_item_checkbox_set(Elm_Genlist_Item *it, Eina_Bool edit_select_check_state)
5816 if (edit_select_check_state)
5818 it->edit_select_check = EINA_TRUE;
5819 edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
5823 it->edit_select_check = EINA_FALSE;
5824 edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
5826 if (it->wd->ed && it->wd->ed->ec && it->wd->ed->ec->item_selected)
5827 it->wd->ed->ec->item_selected(it->base.data, it, it->edit_select_check);
5831 _edit_subitems_checkbox_set(Elm_Genlist_Item *it)
5834 Eina_List *tl = NULL, *l;
5835 Elm_Genlist_Item *it2;
5837 EINA_LIST_FOREACH(it->items, l, it2)
5838 tl = eina_list_append(tl, it2);
5839 EINA_LIST_FREE(tl, it2)
5840 if(it2->parent) _edit_item_checkbox_set(it2, it2->parent->edit_select_check);
5844 _edit_parent_items_checkbox_set(Elm_Genlist_Item *it)
5847 Elm_Genlist_Item *tmp_it;
5848 Eina_Bool parent_check = EINA_TRUE;
5850 EINA_INLIST_FOREACH(it->wd->items, tmp_it)
5852 if (tmp_it->parent && it->parent)
5853 if(tmp_it->parent == it->parent && tmp_it->edit_select_check == EINA_FALSE) parent_check = EINA_FALSE;
5857 if (parent_check) it->parent->edit_select_check = EINA_TRUE;
5858 else it->parent->edit_select_check = EINA_FALSE;
5863 _effect_item_update(it->parent);
5864 return _edit_parent_items_checkbox_set(it->parent);
5869 _select_all_down_process(Elm_Genlist_Item *select_all_it, Eina_Bool checked, Eina_Bool update_items)
5871 if (!select_all_it || !select_all_it->wd) return;
5873 Eina_Bool old_check_state;
5874 Elm_Genlist_Item *it;
5875 Widget_Data *wd = select_all_it->wd;
5877 wd->select_all_check = checked;
5878 if (wd->select_all_check)
5879 edje_object_signal_emit(select_all_it->base.view, "elm,state,sel_check", "elm");
5881 edje_object_signal_emit(select_all_it->base.view, "elm,state,sel_uncheck", "elm");
5885 EINA_INLIST_FOREACH(wd->items, it)
5887 old_check_state = it->edit_select_check;
5888 if (wd->select_all_check) it->edit_select_check = EINA_TRUE;
5889 else it->edit_select_check = EINA_FALSE;
5891 // TODO : check this
5892 // if (old_check_state != it->edit_select_check && it->wd->ed && it->wd->ed->ec && it->wd->ed->ec->item_selected)
5893 // it->wd->ed->ec->item_selected(it->base.data, it, it->edit_select_check);
5897 if (wd->ed->ec->item_selected)
5898 wd->ed->ec->item_selected(select_all_it->base.data, select_all_it, wd->select_all_check);
5900 if (wd->calc_job) ecore_job_del(wd->calc_job);
5901 wd->calc_job = ecore_job_add(_calc_job, wd);
5905 _checkbox_item_select_process(Elm_Genlist_Item *it)
5907 Elm_Genlist_Item *tmp_it;
5908 Eina_Bool old_check_state;
5909 int check_cnt = 0, total_cnt = 0;
5912 _edit_item_checkbox_set(it, it->edit_select_check);
5913 _edit_subitems_checkbox_set(it);
5914 _edit_parent_items_checkbox_set(it);
5916 if (it->wd->ed) it->wd->ed->del_item = it;
5918 EINA_INLIST_FOREACH(it->wd->items, tmp_it)
5920 if (tmp_it->edit_select_check) check_cnt++;
5924 if (it->wd->select_all_item)
5926 old_check_state = it->wd->select_all_check;
5927 if (check_cnt == total_cnt) it->wd->select_all_check = EINA_TRUE;
5928 else it->wd->select_all_check = EINA_FALSE;
5930 if (check_cnt == total_cnt)
5932 it->wd->select_all_check = EINA_TRUE;
5933 edje_object_signal_emit(it->wd->select_all_item->base.view, "elm,state,sel_check", "elm");
5937 it->wd->select_all_check = EINA_FALSE;
5938 edje_object_signal_emit(it->wd->select_all_item->base.view, "elm,state,sel_uncheck", "elm");
5944 _checkbox_item_select_cb(void *data, Evas_Object *obj, const char *emission, const char *source)
5946 Elm_Genlist_Item *it = data;
5948 it->edit_select_check = !it->edit_select_check;
5949 _checkbox_item_select_process(it);
5953 _select_all_down(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
5955 Elm_Genlist_Item *select_all_it = data;
5956 Widget_Data *wd = select_all_it->wd;
5959 _select_all_down_process(select_all_it, !wd->select_all_check, EINA_TRUE);
5964 _effect_item_controls(Elm_Genlist_Item *it, int itx, int ity)
5966 if (it->wd->edit_mode == ELM_GENLIST_EDIT_MODE_NONE)
5968 evas_object_resize(it->edit_obj,it->w, it->h);
5969 evas_object_move(it->edit_obj, itx, ity);
5971 if (it->wd->select_all_check)
5972 it->edit_select_check = EINA_TRUE;
5975 if (it->edit_select_check)
5977 edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
5981 edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
5987 _effect_item_realize(Elm_Genlist_Item *it, Eina_Bool effect_on)
5989 if ((it->effect_item_realized) || (it->delete_me)) return;
5990 int itmode = 0, pad = 0;
5991 const char *pad_str;
5993 it->pad_left = it->pad_right = 0;
5995 if (it->itc->func.editmode_get)
5996 itmode = it->itc->func.editmode_get(it->base.data, it->base.widget, it->wd->edit_mode);
5997 itmode &= it->wd->edit_mode;
5999 if (itmode & ELM_GENLIST_EDIT_MODE_SELECTALL)
6000 itmode |= ELM_GENLIST_EDIT_MODE_SELECT;
6002 it->edit_obj = edje_object_add(evas_object_evas_get(it->base.widget));
6003 edje_object_scale_set(it->edit_obj, elm_widget_scale_get(it->base.widget) *
6004 _elm_config->scale);
6005 evas_object_smart_member_add(it->edit_obj, it->wd->pan_smart);
6006 elm_widget_sub_object_add(it->base.widget, it->edit_obj);
6008 if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) strncpy(buf, "tree", sizeof(buf));
6009 else strncpy(buf, "item", sizeof(buf));
6010 if (it->wd->compress) strncat(buf, "_compress", sizeof(buf) - strlen(buf));
6012 strncat(buf, "/", sizeof(buf) - strlen(buf));
6014 if (it->wd->ed && it->wd->ed->ec->item_style && strcmp(it->wd->ed->ec->item_style, "default"))
6016 strncat(buf, it->wd->ed->ec->item_style, sizeof(buf) - strlen(buf));
6017 _elm_theme_object_set(it->base.widget, it->edit_obj, "genlist", buf, elm_widget_style_get(it->base.widget));
6021 _elm_theme_object_set(it->base.widget, it->edit_obj, "genlist", "item/edit_control", elm_widget_style_get(it->base.widget));
6024 pad_str = edje_object_data_get(it->edit_obj, "icon_width");
6025 if (pad_str) pad = atoi(pad_str);
6027 if ((itmode & ELM_GENLIST_EDIT_MODE_DELETE) || (itmode & ELM_GENLIST_EDIT_MODE_SELECT))
6029 if (effect_on) edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable_effect", "elm");
6030 else edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable", "elm");
6032 edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
6033 edje_object_signal_callback_del(it->edit_obj, "elm,action,item,select",
6034 "elm", _checkbox_item_select_cb);
6036 edje_object_signal_callback_add(it->edit_obj, "elm,action,item,select",
6037 "elm", _checkbox_item_select_cb, it);
6038 it->pad_left += pad * _elm_config->scale;
6042 edje_object_signal_emit(it->edit_obj, "elm,state,sel,disable", "elm");
6044 edje_object_signal_callback_del(it->edit_obj, "elm,action,item,select",
6045 "elm", _checkbox_item_select_cb);
6048 if (effect_on && itmode & ELM_GENLIST_EDIT_MODE_REORDER)
6050 edje_object_signal_emit(it->edit_obj, "elm,state,reorder_enable_effect", "elm");
6051 edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable", "elm");
6053 else if (itmode & ELM_GENLIST_EDIT_MODE_REORDER)
6054 edje_object_signal_emit(it->edit_obj, "elm,state,reorder_enable", "elm");
6056 if ((it->wd->edit_mode) || (!it->wd->edit_mode && it->renamed))
6058 if (it->itc->func.icon_get)
6063 it->icons = elm_widget_stringlist_get(edje_object_data_get(it->edit_obj, "icons"));
6064 EINA_LIST_FOREACH(it->icons, l, key)
6066 Evas_Object *ic = it->itc->func.icon_get
6067 (it->base.data, it->base.widget, l->data);
6071 it->edit_icon_objs = eina_list_append(it->edit_icon_objs, ic);
6072 edje_object_part_swallow(it->edit_obj, key, ic);
6073 evas_object_show(ic);
6074 elm_widget_sub_object_add(it->base.widget, ic);
6079 edje_object_part_swallow(it->edit_obj, "original_edc", it->base.view);
6080 _effect_item_controls(it,it->scrl_x, it->scrl_y);
6081 evas_object_show(it->edit_obj);
6083 it->effect_item_realized = EINA_TRUE;
6084 it->want_unrealize = EINA_FALSE;
6088 _effect_item_unrealize(Elm_Genlist_Item *it)
6092 if (!it->effect_item_realized) return;
6093 if (it->wd->reorder_it && it->wd->reorder_it == it) return;
6095 it->pad_left = it->pad_right = 0;
6096 edje_object_signal_emit(it->edit_obj, "elm,state,reorder_disable_effect", "elm");
6097 edje_object_signal_emit(it->edit_obj, "elm,state,sel,disable", "elm");
6098 edje_object_message_signal_process(it->edit_obj);
6099 edje_object_part_unswallow(it->edit_obj, it->base.view);
6100 evas_object_smart_member_add(it->base.view, it->wd->pan_smart);
6101 elm_widget_sub_object_add(it->base.widget, it->base.view);
6102 // evas_object_smart_callback_call(it->edit_obj, "unrealized", it);
6103 // _item_cache_add(it);
6104 evas_object_del(it->edit_obj);
6105 it->edit_obj = NULL;
6106 EINA_LIST_FREE(it->edit_icon_objs, icon)
6107 evas_object_del(icon);
6109 // edje_object_signal_emit(it->edit_obj, "elm,state,edit_end,disable", "elm");
6110 it->effect_item_realized = EINA_FALSE;
6114 elm_genlist_set_edit_mode(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *edit_class)
6116 fprintf(stderr, "=================> Caution!!! <========================\n");
6117 fprintf(stderr, "==> elm_genlist_set_edit_mode() is deprecated. <=======\n");
6118 fprintf(stderr, "==> Please use elm_genlist_edit_mode_set() instead. <==\n");
6119 fprintf(stderr, "=======================================================\n");
6121 elm_genlist_edit_mode_set(obj, emode, edit_class);
6125 * Get Genlist edit mode
6127 * @param obj The genlist object
6128 * @return The edit mode status
6129 * (EINA_TRUE = edit mode, EINA_FALSE = normal mode
6134 elm_genlist_edit_mode_get(const Evas_Object *obj)
6136 ELM_CHECK_WIDTYPE(obj, widtype);
6137 Widget_Data *wd = elm_widget_data_get(obj);
6138 if (!wd) return EINA_FALSE;
6140 if (wd->edit_mode) return EINA_TRUE;
6141 else return EINA_FALSE;
6145 * Set Genlist edit mode
6147 * This sets Genlist edit mode.
6149 * @param obj The Genlist object
6150 * @param emode ELM_GENLIST_EDIT_MODE_{NONE & REORDER & INSERT & DELETE & SELECT & SELECT_ALL}
6151 * @param edit_class Genlist edit class (Elm_Genlist_Edit_Class structure)
6156 elm_genlist_edit_mode_set(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *edit_class)
6158 ELM_CHECK_WIDTYPE(obj, widtype);
6161 Eina_Bool done = EINA_FALSE;
6162 static Elm_Genlist_Item_Class itc;
6164 Elm_Genlist_Item *it;
6166 Widget_Data *wd = elm_widget_data_get(obj);
6168 if (wd->edit_mode == emode) return;
6170 wd->edit_mode = emode;
6172 if (wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECTALL)
6173 wd->edit_mode |= ELM_GENLIST_EDIT_MODE_SELECT;
6176 if (wd->edit_mode == ELM_GENLIST_EDIT_MODE_NONE)
6178 EINA_INLIST_FOREACH(wd->blocks, itb)
6183 EINA_LIST_FOREACH(itb->items, l, it)
6185 if (it->flags != ELM_GENLIST_ITEM_GROUP && it->realized)
6187 it->pad_left = it->pad_right = 0;
6188 _effect_item_unrealize(it);
6198 EINA_INLIST_FOREACH(wd->items, it)
6200 it->edit_select_check = EINA_FALSE;
6202 if (wd->ed) free (wd->ed);
6204 wd->reorder_mode = EINA_FALSE;
6205 if (wd->select_all_item)
6207 wd->select_all_check = EINA_FALSE;
6208 edje_object_signal_callback_del(wd->select_all_item->base.view, "elm,action,select,click", "elm", _select_all_down);
6209 elm_widget_item_pre_notify_del(wd->select_all_item);
6210 _item_unrealize(wd->select_all_item);
6211 elm_widget_item_del(wd->select_all_item);
6213 wd->select_all_item = NULL;
6216 Evas_Object *editfield;
6217 EINA_LIST_FREE(wd->edit_field, editfield)
6218 evas_object_del(editfield);
6219 wd->edit_field = NULL;
6221 _item_cache_zero(wd);
6225 if (wd->edit_mode & ELM_GENLIST_EDIT_MODE_REORDER)
6226 wd->reorder_mode = EINA_TRUE;
6229 wd->ed = calloc(1, sizeof(Edit_Data));
6231 wd->ed->ec = edit_class;
6233 EINA_INLIST_FOREACH(wd->blocks, itb)
6238 EINA_LIST_FOREACH(itb->items, l, it)
6240 if (it->flags != ELM_GENLIST_ITEM_GROUP && it->realized)
6242 if(it->selected) _item_unselect(it);
6243 _effect_item_realize(it, EINA_TRUE);
6253 if (wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECTALL)
6255 if (edit_class->select_all_item_style && strcmp(edit_class->select_all_item_style, "default"))
6256 itc.item_style = edit_class->select_all_item_style;
6258 itc.item_style = "select_all";
6259 itc.func.label_get = NULL;
6260 itc.func.icon_get = NULL;
6261 itc.func.del = NULL;
6262 itc.func.editmode_get = NULL;
6263 wd->select_all_item = _item_new(wd, &itc, (void *)(edit_class->select_all_data), NULL, ELM_GENLIST_ITEM_NONE, NULL, NULL);
6266 if (!wd->select_all_item) return;
6268 _item_realize(wd->select_all_item, 0, 0);
6269 edje_object_signal_callback_add(wd->select_all_item->base.view, "elm,action,select,click", "elm", _select_all_down, wd->select_all_item);
6271 wd->select_all_item->rel = NULL;
6272 wd->select_all_item->block = NULL;
6276 if (wd->calc_job) ecore_job_del(wd->calc_job);
6277 wd->calc_job = ecore_job_add(_calc_job, wd);
6281 * Delete selected items in genlist edit mode.
6283 * @param obj The genlist object
6288 elm_genlist_edit_selected_items_del(Evas_Object *obj)
6290 ELM_CHECK_WIDTYPE(obj, widtype);
6291 Widget_Data *wd = elm_widget_data_get(obj);
6293 if (!wd->blocks) return;
6294 Elm_Genlist_Item *it;
6295 Eina_List *edit_selected_list, *l;
6299 Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
6302 if (wd->edit_field) return;
6303 evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
6304 evas_output_viewport_get(evas_object_evas_get(wd->obj), &cvx, &cvy,&cvw, &cvh);
6305 EINA_INLIST_FOREACH(wd->blocks, itb)
6307 if (ELM_RECTS_INTERSECT(itb->x - wd->pan_x + ox,
6308 itb->y - wd->pan_y + oy,
6310 cvx, cvy, cvw, cvh))
6311 EINA_LIST_FOREACH(itb->items, l, it)
6313 it->old_scrl_y =itb->y + it->y - it->wd->pan_y + oy;
6316 edit_selected_list = elm_genlist_edit_selected_items_get(obj);
6317 cnt = eina_list_count(edit_selected_list);
6318 // printf("elm_genlist_edit_selected_items_del items selected counts = %d \n", cnt);
6320 wd->expand_item_gap = wd->expand_item_end = 0;
6321 EINA_LIST_FOREACH(edit_selected_list, l, it)
6323 if (it->flags != ELM_GENLIST_ITEM_GROUP)
6325 it->wd->expand_item_gap += it->h * -1;
6326 vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
6327 cvx, cvy, cvw, cvh));
6328 if (!it->wd->expand_item_end && vis ) it->wd->expand_item_end = it->old_scrl_y;
6329 it->wd->expand_item = elm_genlist_item_prev_get(it);
6330 elm_genlist_item_del(it);
6333 wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE;
6334 eina_list_free(edit_selected_list);
6336 evas_render(evas_object_evas_get(wd->obj));
6337 if (wd->calc_job) ecore_job_del(wd->calc_job);
6338 wd->calc_job = ecore_job_add(_calc_job, wd);
6342 elm_genlist_selected_items_del(Evas_Object *obj)
6344 fprintf(stderr, "=================> Caution!!! <========================\n");
6345 fprintf(stderr, "==> elm_genlist_selected_items_del() is deprecated. <=======\n");
6346 fprintf(stderr, "==> Please use elm_genlist_edit_selected_items_del() instead. <==\n");
6347 fprintf(stderr, "=======================================================\n");
6348 elm_genlist_edit_selected_items_del(obj);
6352 * Get a list of selected items in genlist
6354 * This returns a list of the selected items in the genlist. The list
6355 * contains Elm_Genlist_Item pointers. The list must be freed by the
6356 * caller when done with eina_list_free(). The item pointers in the list
6357 * are only vallid so long as those items are not deleted or the genlist is
6360 * @param obj The genlist object
6361 * @return The list of selected items, nor NULL if none are selected.
6366 elm_genlist_edit_selected_items_get(const Evas_Object *obj)
6368 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
6369 Widget_Data *wd = elm_widget_data_get(obj);
6370 Eina_List *list = NULL;
6371 Elm_Genlist_Item *it;
6372 if (!wd) return NULL;
6374 EINA_INLIST_FOREACH(wd->items, it)
6376 if (it->edit_select_check && it->flags != ELM_GENLIST_ITEM_GROUP) list = eina_list_append(list, it);
6382 // TODO : add comment
6384 elm_genlist_edit_item_selected_set(Elm_Genlist_Item *it,
6387 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
6388 Widget_Data *wd = elm_widget_data_get(it->base.widget);
6390 selected = !!selected;
6391 if (it->edit_select_check == selected) return;
6393 it->edit_select_check = selected;
6394 _checkbox_item_select_process(it);
6397 // TODO : add comment
6398 EAPI const Eina_Bool
6399 elm_genlist_edit_item_selected_get(const Elm_Genlist_Item *it)
6401 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
6402 return it->edit_select_check;
6406 * Set a given item's rename mode
6408 * This renames the item's label from genlist
6410 * @param it The item
6411 * @param emode set if emode is EINA_TRUE, unset if emode is EINA_FALSE
6416 elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, int emode)
6418 if (!it) return NULL;
6419 if (it->wd->queue_idler) return NULL;
6421 const Eina_List *l, *list, *l2;
6422 const char *label, *rename_swallow_part;
6424 Eina_Bool done = EINA_FALSE;
6425 int label_cnt = 0 , swallow_part_cnt = 0;
6428 Evas_Object *editfield;
6429 Evas_Object *entry = NULL;
6430 int edit_field_cnt = 0;
6432 EINA_INLIST_FOREACH(it->wd->blocks, itb)
6437 Elm_Genlist_Item *it;
6439 EINA_LIST_FOREACH(itb->items, l, it)
6443 it->renamed = EINA_FALSE;
6444 if (it->selected) _item_unselect(it);
6445 EINA_LIST_FOREACH(it->wd->edit_field, l2, editfield)
6447 entry = elm_editfield_entry_get(editfield);
6448 const char *text = elm_entry_entry_get(entry);
6449 if (it->itc->func.label_changed)
6450 it->itc->func.label_changed(it->base.data, it, text, edit_field_cnt++);
6452 EINA_LIST_FREE(it->wd->edit_field, editfield)
6453 evas_object_del(editfield);
6454 it->wd->edit_field = NULL;
6456 if (it->wd->edit_mode)
6458 edje_object_signal_emit(it->edit_obj, "elm,state,edit_end,enable", "elm");
6459 edje_object_signal_emit(it->edit_obj, "elm,state,rename,disable", "elm");
6460 if (it->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECT)
6461 edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
6464 if(!it->wd->edit_mode) _effect_item_unrealize(it);
6477 it->renamed = EINA_TRUE;
6478 if (it->wd->edit_mode == ELM_GENLIST_EDIT_MODE_NONE)
6480 it->wd->edit_mode = 0xF0;
6481 _effect_item_realize(it, EINA_TRUE);
6482 it->wd->edit_mode = ELM_GENLIST_EDIT_MODE_NONE;
6485 edje_object_signal_emit(it->edit_obj, "elm,state,rename,enable", "elm");
6486 EINA_LIST_FOREACH(it->labels, list, label)
6488 if (it->itc->func.label_get)
6490 swallow_part_cnt = 0;
6492 Eina_List *rename = elm_widget_stringlist_get(edje_object_data_get(it->edit_obj, "rename"));
6493 EINA_LIST_FOREACH(rename, l, rename_swallow_part)
6495 if (label_cnt == swallow_part_cnt)
6497 editfield = elm_editfield_add(it->base.widget);
6498 it->wd->edit_field = eina_list_append(it->wd->edit_field, editfield);
6500 elm_editfield_entry_single_line_set(editfield, EINA_TRUE);
6501 elm_editfield_eraser_set(editfield, EINA_TRUE);
6502 edje_object_part_swallow(it->edit_obj, rename_swallow_part, editfield);
6503 elm_widget_sub_object_add(it->edit_obj, editfield);
6505 evas_object_show(editfield);
6507 s = it->itc->func.label_get((void *)it->base.data, it->base.widget, list->data);
6510 entry = elm_editfield_entry_get(editfield);
6511 elm_entry_entry_set(entry,s);
6512 elm_entry_cursor_end_set(entry);
6516 elm_editfield_guide_text_set(editfield, "Text Input");
6523 elm_widget_focused_object_clear(elm_widget_focused_object_get(it->wd->obj));
6524 elm_widget_focus_set(editfield, EINA_TRUE);
6530 static void _sweep_finish(void *data, Evas_Object *o, const char *emission, const char *source)
6532 Elm_Genlist_Item *it = data;
6534 _delete_sweep_objs(it);
6538 _scr_hold_timer_cb(void *data)
6540 Elm_Genlist_Item *it = data;
6541 elm_smart_scroller_hold_set(it->wd->scr, EINA_FALSE);
6542 it->wd->scr_hold_timer = NULL;
6543 return ECORE_CALLBACK_CANCEL;
6547 _delete_sweep_objs(Elm_Genlist_Item *it)
6551 elm_widget_stringlist_free(it->sweep_labels);
6552 it->sweep_labels = NULL;
6553 elm_widget_stringlist_free(it->sweep_icons);
6554 it->sweep_icons = NULL;
6555 EINA_LIST_FREE(it->sweep_icon_objs, ic)
6556 evas_object_del(ic);
6560 _create_sweep_objs(Elm_Genlist_Item *it)
6566 if (it->itc->func.label_get)
6569 elm_widget_stringlist_get(edje_object_data_get(it->base.view,
6571 EINA_LIST_FOREACH(it->sweep_labels, l, key)
6573 char *s = it->itc->func.label_get
6574 ((void *)it->base.data, it->base.widget, l->data);
6578 edje_object_part_text_set(it->base.view, l->data, s);
6583 if (it->itc->func.icon_get)
6586 elm_widget_stringlist_get(edje_object_data_get(it->base.view,
6588 EINA_LIST_FOREACH(it->sweep_icons, l, key)
6590 ic = it->itc->func.icon_get
6591 ((void *)it->base.data, it->base.widget, l->data);
6595 it->sweep_icon_objs = eina_list_append(it->sweep_icon_objs, ic);
6596 edje_object_part_swallow(it->base.view, key, ic);
6597 evas_object_show(ic);
6598 elm_widget_sub_object_add(it->base.widget, ic);
6605 _item_slide(Elm_Genlist_Item *it, Eina_Bool slide_to_right)
6608 Elm_Genlist_Item *it2;
6609 const char *allow_slide;
6611 allow_slide = edje_object_data_get(it->base.view, "allow_slide");
6612 if ((!allow_slide) || (atoi(allow_slide) != 1))
6617 if (it->sweeped) return;
6618 if (it->wd->scr_hold_timer)
6620 ecore_timer_del(it->wd->scr_hold_timer);
6621 it->wd->scr_hold_timer = NULL;
6623 elm_smart_scroller_hold_set(it->wd->scr, EINA_TRUE);
6624 it->wd->scr_hold_timer = ecore_timer_add(0.1, _scr_hold_timer_cb, it);
6626 _delete_sweep_objs(it);
6627 _create_sweep_objs(it);
6628 edje_object_signal_emit(it->base.view, "elm,state,slide,right", "elm");
6629 it->wd->sweeped_items = eina_list_append(it->wd->sweeped_items, it);
6630 it->wassweeped = EINA_TRUE;
6631 it->sweeped = EINA_TRUE;
6633 EINA_LIST_FOREACH(it->wd->sweeped_items, l, it2)
6637 it2->sweeped = EINA_FALSE;
6638 edje_object_signal_emit(it2->base.view, "elm,state,slide,left", "elm");
6639 edje_object_signal_callback_add(it2->base.view, "elm,action,sweep,left,finish", "elm", _sweep_finish, it2);
6640 it2->wd->sweeped_items = eina_list_remove(it2->wd->sweeped_items, it2);
6646 if (!it->sweeped) return;
6647 edje_object_signal_emit(it->base.view, "elm,state,slide,left", "elm");
6648 edje_object_signal_callback_add(it->base.view, "elm,action,sweep,left,finish", "elm", _sweep_finish, it);
6649 it->wd->sweeped_items = eina_list_remove(it->wd->sweeped_items, it);
6650 it->sweeped = EINA_FALSE;
6655 _item_auto_scroll(void *data)
6657 Widget_Data *wd = data;
6660 if ((wd->expand_item) && (!wd->auto_scrolled))
6662 Elm_Genlist_Item *it;
6664 Evas_Coord ox, oy, ow, oh;
6665 evas_object_geometry_get(wd->obj, &ox, &oy, &ow, &oh);
6667 wd->auto_scrolled = EINA_TRUE;
6668 if (wd->expand_item->scrl_y > (oh + oy) / 2)
6670 EINA_LIST_FOREACH(wd->expand_item->items, l, it)
6672 elm_genlist_item_bring_in(it);