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, *changed_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;
357 Eina_Bool contracting : 1;
360 Eina_List *edit_field;
361 Elm_Genlist_Item *select_all_item;
362 Eina_List *sweeped_items;
363 Ecore_Timer *scr_hold_timer;
365 int group_item_width;
366 int group_item_height;
367 Elm_Genlist_Item *reorder_it, *reorder_rel;
368 Evas_Coord reorder_start_y;
369 Ecore_Animator *item_moving_effect_timer;
370 Evas_Object *alpha_bg;
371 Elm_Genlist_Item *expand_item;
372 Evas_Coord expand_item_end;
373 Evas_Coord expand_item_gap;
374 int move_effect_mode;
375 unsigned int start_time;
385 Evas_Coord x, y, w, h, minw, minh;
386 Eina_Bool want_unrealize : 1;
387 Eina_Bool realized : 1;
388 Eina_Bool changed : 1;
389 Eina_Bool updateme : 1;
390 Eina_Bool showme : 1;
391 Eina_Bool must_recalc : 1;
395 struct _Elm_Genlist_Item
397 Elm_Widget_Item base;
402 Evas_Coord x, y, w, h, minw, minh;
403 const Elm_Genlist_Item_Class *itc;
404 Elm_Genlist_Item *parent;
405 Elm_Genlist_Item *group_item;
406 Elm_Genlist_Item_Flags flags;
414 Eina_List *labels, *icons, *states, *icon_objs;
415 Ecore_Timer *long_timer;
416 Ecore_Timer *swipe_timer;
418 Evas_Coord scrl_x, scrl_y;
420 Elm_Genlist_Item *rel;
425 Elm_Tooltip_Item_Content_Cb content_cb;
426 Evas_Smart_Cb del_cb;
430 const char *mouse_cursor;
437 Eina_Bool before : 1;
439 Eina_Bool want_unrealize : 1;
440 Eina_Bool want_realize : 1;
441 Eina_Bool realized : 1;
442 Eina_Bool selected : 1;
443 Eina_Bool hilighted : 1;
444 Eina_Bool expanded : 1;
445 Eina_Bool disabled : 1;
446 Eina_Bool display_only : 1;
447 Eina_Bool mincalcd : 1;
448 Eina_Bool queued : 1;
449 Eina_Bool showme : 1;
450 Eina_Bool delete_me : 1;
452 Eina_Bool dragging : 1;
453 Eina_Bool updateme : 1;
454 Eina_Bool nocache : 1;
457 Eina_Bool move_effect_me : 1;
458 Eina_Bool effect_done : 1;
459 Eina_Bool reordering : 1;
460 Eina_Bool edit_select_check: 1;
461 Eina_Bool renamed : 1;
462 Eina_Bool effect_item_realized : 1;
463 Eina_Bool sweeped : 1;
464 Eina_Bool wassweeped : 1;
465 Eina_List *edit_icon_objs;
466 Evas_Object *edit_obj;
467 Eina_List *sweep_labels, *sweep_icons, *sweep_icon_objs;
469 Ecore_Animator *item_moving_effect_timer;
470 Evas_Coord old_scrl_x, old_scrl_y;
471 Evas_Coord pad_left, pad_right;
479 Evas_Object *base_view, *spacer;
481 const char *item_style; // it->itc->item_style
482 Eina_Bool tree : 1; // it->flags & ELM_GENLIST_ITEM_SUBITEMS
483 Eina_Bool compress : 1; // it->wd->compress
484 Eina_Bool odd : 1; // in & 0x1
486 Eina_Bool selected : 1; // it->selected
487 Eina_Bool disabled : 1; // it->disabled
488 Eina_Bool expanded : 1; // it->expanded
493 Elm_Genlist_Edit_Class *ec;
494 Elm_Genlist_Item *del_item;
495 Elm_Genlist_Item *reorder_item;
496 Elm_Genlist_Item *reorder_rel;
497 Evas_Object *del_confirm;
500 #define ELM_GENLIST_ITEM_FROM_INLIST(item) \
501 ((item) ? EINA_INLIST_CONTAINER_GET(item, Elm_Genlist_Item) : NULL)
505 Evas_Object_Smart_Clipped_Data __clipped_data;
507 Ecore_Job *resize_job;
510 static const char *widtype = NULL;
511 static void _item_cache_zero(Widget_Data *wd);
512 static void _del_hook(Evas_Object *obj);
513 static void _theme_hook(Evas_Object *obj);
514 static void _show_region_hook(void *data, Evas_Object *obj);
515 static void _sizing_eval(Evas_Object *obj);
516 static void _item_unrealize(Elm_Genlist_Item *it);
517 static void _item_block_unrealize(Item_Block *itb);
518 static void _calc_job(void *data);
519 static void _on_focus_hook(void *data,
521 static void _changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);
522 static void _changed_job(void *data);
523 static Eina_Bool _item_multi_select_up(Widget_Data *wd);
524 static Eina_Bool _item_multi_select_down(Widget_Data *wd);
525 static Eina_Bool _item_single_select_up(Widget_Data *wd);
526 static Eina_Bool _item_single_select_down(Widget_Data *wd);
527 static Eina_Bool _event_hook(Evas_Object *obj,
529 Evas_Callback_Type type,
531 static Eina_Bool _deselect_all_items(Widget_Data *wd);
532 static void _pan_calculate(Evas_Object *obj);
533 // TODO : refactoring
534 static Evas_Object* _create_tray_alpha_bg(const Evas_Object *obj);
535 static unsigned int current_time_get();
536 static Eina_Bool _item_moving_effect_timer_cb(void *data);
537 static int _item_flip_effect_show(Elm_Genlist_Item *it);
538 static void _effect_item_controls(Elm_Genlist_Item *it, int itx, int ity);
539 static void _effect_item_realize(Elm_Genlist_Item *it, Eina_Bool effect_on);
540 static void _effect_item_unrealize(Elm_Genlist_Item *it);
541 static void _item_slide(Elm_Genlist_Item *it, Eina_Bool slide_to_right);
542 static void _sweep_finish(void *data, Evas_Object *o, const char *emission, const char *source);
543 static void _create_sweep_objs(Elm_Genlist_Item *it);
544 static void _delete_sweep_objs(Elm_Genlist_Item *it);
545 static void _effect_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after);
546 static void _effect_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before);
547 static void _group_items_recalc(void *data);
548 static void _select_all_down_process(Elm_Genlist_Item *select_all_it, Eina_Bool checked, Eina_Bool update_items);
549 static void _checkbox_item_select_process(Elm_Genlist_Item *it);
550 static void _item_auto_scroll(void *data);
552 static Evas_Smart_Class _pan_sc = EVAS_SMART_CLASS_INIT_VERSION;
555 _event_hook(Evas_Object *obj,
556 Evas_Object *src __UNUSED__,
557 Evas_Callback_Type type,
560 if (type != EVAS_CALLBACK_KEY_DOWN) return EINA_FALSE;
561 Evas_Event_Key_Down *ev = event_info;
562 Widget_Data *wd = elm_widget_data_get(obj);
563 if (!wd) return EINA_FALSE;
564 if (!wd->items) return EINA_FALSE;
565 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return EINA_FALSE;
566 if (elm_widget_disabled_get(obj)) return EINA_FALSE;
568 Elm_Genlist_Item *it = NULL;
571 Evas_Coord step_x = 0;
572 Evas_Coord step_y = 0;
575 Evas_Coord page_x = 0;
576 Evas_Coord page_y = 0;
578 elm_smart_scroller_child_pos_get(wd->scr, &x, &y);
579 elm_smart_scroller_step_size_get(wd->scr, &step_x, &step_y);
580 elm_smart_scroller_page_size_get(wd->scr, &page_x, &page_y);
581 elm_smart_scroller_child_viewport_size_get(wd->scr, &v_w, &v_h);
583 if ((!strcmp(ev->keyname, "Left")) || (!strcmp(ev->keyname, "KP_Left")))
587 else if ((!strcmp(ev->keyname, "Right")) ||
588 (!strcmp(ev->keyname, "KP_Right")))
592 else if ((!strcmp(ev->keyname, "Up")) || (!strcmp(ev->keyname, "KP_Up")))
594 if (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
595 (_item_multi_select_up(wd)))
596 || (_item_single_select_up(wd)))
598 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
604 else if ((!strcmp(ev->keyname, "Down")) || (!strcmp(ev->keyname, "KP_Down")))
606 if (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
607 (_item_multi_select_down(wd)))
608 || (_item_single_select_down(wd)))
610 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
616 else if ((!strcmp(ev->keyname, "Home")) ||
617 (!strcmp(ev->keyname, "KP_Home")))
619 it = elm_genlist_first_item_get(obj);
620 elm_genlist_item_bring_in(it);
621 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
624 else if ((!strcmp(ev->keyname, "End")) ||
625 (!strcmp(ev->keyname, "KP_End")))
627 it = elm_genlist_last_item_get(obj);
628 elm_genlist_item_bring_in(it);
629 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
632 else if ((!strcmp(ev->keyname, "Prior")) ||
633 (!strcmp(ev->keyname, "KP_Prior")))
636 y -= -(page_y * v_h) / 100;
640 else if ((!strcmp(ev->keyname, "Next")) ||
641 (!strcmp(ev->keyname, "KP_Next")))
644 y += -(page_y * v_h) / 100;
648 else if(((!strcmp(ev->keyname, "Return")) ||
649 (!strcmp(ev->keyname, "KP_Enter")) ||
650 (!strcmp(ev->keyname, "space")))
651 && (!wd->multi) && (wd->selected))
653 Elm_Genlist_Item *it = elm_genlist_selected_item_get(obj);
654 elm_genlist_item_expanded_set(it,
655 !elm_genlist_item_expanded_get(it));
657 else if (!strcmp(ev->keyname, "Escape"))
659 if (!_deselect_all_items(wd)) return EINA_FALSE;
660 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
663 else return EINA_FALSE;
665 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
666 elm_smart_scroller_child_pos_set(wd->scr, x, y);
671 _deselect_all_items(Widget_Data *wd)
673 if (!wd->selected) return EINA_FALSE;
675 elm_genlist_item_selected_set(wd->selected->data, EINA_FALSE);
681 _item_multi_select_up(Widget_Data *wd)
683 if (!wd->selected) return EINA_FALSE;
684 if (!wd->multi) return EINA_FALSE;
686 Elm_Genlist_Item *prev = elm_genlist_item_prev_get(wd->last_selected_item);
687 if (!prev) return EINA_TRUE;
689 if (elm_genlist_item_selected_get(prev))
691 elm_genlist_item_selected_set(wd->last_selected_item, EINA_FALSE);
692 wd->last_selected_item = prev;
693 elm_genlist_item_show(wd->last_selected_item);
697 elm_genlist_item_selected_set(prev, EINA_TRUE);
698 elm_genlist_item_show(prev);
704 _item_multi_select_down(Widget_Data *wd)
706 if (!wd->selected) return EINA_FALSE;
707 if (!wd->multi) return EINA_FALSE;
709 Elm_Genlist_Item *next = elm_genlist_item_next_get(wd->last_selected_item);
710 if (!next) return EINA_TRUE;
712 if (elm_genlist_item_selected_get(next))
714 elm_genlist_item_selected_set(wd->last_selected_item, EINA_FALSE);
715 wd->last_selected_item = next;
716 elm_genlist_item_show(wd->last_selected_item);
720 elm_genlist_item_selected_set(next, EINA_TRUE);
721 elm_genlist_item_show(next);
727 _item_single_select_up(Widget_Data *wd)
729 Elm_Genlist_Item *prev;
732 prev = ELM_GENLIST_ITEM_FROM_INLIST(wd->items->last);
733 while ((prev) && (prev->delete_me))
734 prev = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(prev)->prev);
736 else prev = elm_genlist_item_prev_get(wd->last_selected_item);
738 if (!prev) return EINA_FALSE;
740 _deselect_all_items(wd);
742 elm_genlist_item_selected_set(prev, EINA_TRUE);
743 elm_genlist_item_show(prev);
748 _item_single_select_down(Widget_Data *wd)
750 Elm_Genlist_Item *next;
753 next = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
754 while ((next) && (next->delete_me))
755 next = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(next)->next);
757 else next = elm_genlist_item_next_get(wd->last_selected_item);
759 if (!next) return EINA_FALSE;
761 _deselect_all_items(wd);
763 elm_genlist_item_selected_set(next, EINA_TRUE);
764 elm_genlist_item_show(next);
769 _on_focus_hook(void *data __UNUSED__,
772 Widget_Data *wd = elm_widget_data_get(obj);
774 if (elm_widget_focus_get(obj))
776 edje_object_signal_emit(wd->obj, "elm,action,focus", "elm");
777 evas_object_focus_set(wd->obj, EINA_TRUE);
778 if ((wd->selected) && (!wd->last_selected_item))
779 wd->last_selected_item = eina_list_data_get(wd->selected);
783 edje_object_signal_emit(wd->obj, "elm,action,unfocus", "elm");
784 evas_object_focus_set(wd->obj, EINA_FALSE);
789 _del_hook(Evas_Object *obj)
791 Widget_Data *wd = elm_widget_data_get(obj);
793 _item_cache_zero(wd);
794 if (wd->calc_job) ecore_job_del(wd->calc_job);
795 if (wd->update_job) ecore_job_del(wd->update_job);
796 if (wd->changed_job) ecore_job_del(wd->changed_job);
797 if (wd->must_recalc_idler) ecore_idler_del(wd->must_recalc_idler);
798 if (wd->multi_timer) ecore_timer_del(wd->multi_timer);
799 if (wd->scr_hold_timer) ecore_timer_del(wd->scr_hold_timer);
804 _del_pre_hook(Evas_Object *obj)
806 Widget_Data *wd = elm_widget_data_get(obj);
808 if (wd->edit_mode) elm_genlist_edit_mode_set(wd->obj, ELM_GENLIST_EDIT_MODE_NONE, NULL);
809 evas_object_del(wd->pan_smart);
810 wd->pan_smart = NULL;
811 elm_genlist_clear(obj);
815 _theme_hook(Evas_Object *obj)
817 Widget_Data *wd = elm_widget_data_get(obj);
820 _item_cache_zero(wd);
821 elm_smart_scroller_object_theme_set(obj, wd->scr, "genlist", "base",
822 elm_widget_style_get(obj));
823 // edje_object_scale_set(wd->scr, elm_widget_scale_get(obj) * _elm_config->scale);
824 wd->item_width = wd->item_height = 0;
825 wd->group_item_width = wd->group_item_height = 0;
826 wd->minw = wd->minh = wd->realminw = 0;
827 EINA_INLIST_FOREACH(wd->blocks, itb)
830 Elm_Genlist_Item *it;
832 if (itb->realized) _item_block_unrealize(itb);
833 EINA_LIST_FOREACH(itb->items, l, it)
834 it->mincalcd = EINA_FALSE;
836 itb->changed = EINA_TRUE;
838 if (wd->calc_job) ecore_job_del(wd->calc_job);
839 wd->calc_job = ecore_job_add(_calc_job, wd);
844 _show_region_hook(void *data, Evas_Object *obj)
846 Widget_Data *wd = elm_widget_data_get(data);
847 Evas_Coord x, y, w, h;
849 elm_widget_show_region_get(obj, &x, &y, &w, &h);
852 if (y > 0) elm_smart_scroller_child_region_show(wd->scr, x, y, w, h);
856 _sizing_eval(Evas_Object *obj)
858 Widget_Data *wd = elm_widget_data_get(obj);
859 Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
861 evas_object_size_hint_min_get(wd->scr, &minw, &minh);
862 evas_object_size_hint_max_get(wd->scr, &maxw, &maxh);
864 if (wd->height_for_width)
868 elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
869 if ((vw != 0) && (vw != wd->prev_viewport_w))
873 wd->prev_viewport_w = vw;
874 EINA_INLIST_FOREACH(wd->blocks, itb)
876 itb->must_recalc = EINA_TRUE;
878 if (wd->calc_job) ecore_job_del(wd->calc_job);
879 wd->calc_job = ecore_job_add(_calc_job, wd);
882 if (wd->mode == ELM_LIST_LIMIT)
884 Evas_Coord vmw, vmh, vw, vh;
888 elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
889 if ((minw > 0) && (vw < minw)) vw = minw;
890 else if ((maxw > 0) && (vw > maxw))
892 edje_object_size_min_calc
893 (elm_smart_scroller_edje_object_get(wd->scr), &vmw, &vmh);
900 edje_object_size_min_calc
901 (elm_smart_scroller_edje_object_get(wd->scr), &vmw, &vmh);
905 evas_object_size_hint_min_set(obj, minw, minh);
906 evas_object_size_hint_max_set(obj, maxw, maxh);
910 _item_hilight(Elm_Genlist_Item *it)
912 const char *selectraise;
913 if ((it->wd->no_select) || (it->delete_me) || (it->hilighted) || (it->disabled) || (it->display_only)) return;
914 if ((!it->sweeped) && (!it->wd->edit_mode))
915 edje_object_signal_emit(it->base.view, "elm,state,selected", "elm");
916 selectraise = edje_object_data_get(it->base.view, "selectraise");
917 if ((selectraise) && (!strcmp(selectraise, "on")))
919 if (!it->wd->edit_mode) evas_object_raise(it->base.view);
920 if ((it->group_item) && (it->group_item->realized))
921 evas_object_raise(it->group_item->base.view);
923 it->hilighted = EINA_TRUE;
924 if (it->wd->select_all_item) evas_object_raise(it->wd->select_all_item->base.view);
928 _item_block_del(Elm_Genlist_Item *it)
931 Item_Block *itb = it->block;
933 itb->items = eina_list_remove(itb->items, it);
935 itb->changed = EINA_TRUE;
936 if (!it->wd->reorder_deleted)
938 if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
939 it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
943 il = EINA_INLIST_GET(itb);
944 Item_Block *itbn = (Item_Block *)(il->next);
946 it->parent->items = eina_list_remove(it->parent->items, it);
948 it->wd->blocks = eina_inlist_remove(it->wd->blocks, il);
950 if (itbn) itbn->changed = EINA_TRUE;
954 if (itb->count < itb->wd->max_items_per_block/2)
956 il = EINA_INLIST_GET(itb);
957 Item_Block *itbp = (Item_Block *)(il->prev);
958 Item_Block *itbn = (Item_Block *)(il->next);
959 if ((itbp) && ((itbp->count + itb->count) < itb->wd->max_items_per_block + itb->wd->max_items_per_block/2))
961 Elm_Genlist_Item *it2;
963 EINA_LIST_FREE(itb->items, it2)
966 itbp->items = eina_list_append(itbp->items, it2);
968 itbp->changed = EINA_TRUE;
970 it->wd->blocks = eina_inlist_remove(it->wd->blocks,
971 EINA_INLIST_GET(itb));
974 else if ((itbn) && ((itbn->count + itb->count) < itb->wd->max_items_per_block + itb->wd->max_items_per_block/2))
978 Eina_List *last = eina_list_last(itb->items);
979 Elm_Genlist_Item *it2 = last->data;
982 itb->items = eina_list_remove_list(itb->items, last);
983 itbn->items = eina_list_prepend(itbn->items, it2);
985 itbn->changed = EINA_TRUE;
988 eina_inlist_remove(it->wd->blocks, EINA_INLIST_GET(itb));
996 _item_subitems_clear(Elm_Genlist_Item *it)
999 Eina_List *tl = NULL, *l;
1000 Elm_Genlist_Item *it2;
1002 EINA_LIST_FOREACH(it->items, l, it2)
1003 tl = eina_list_append(tl, it2);
1005 EINA_LIST_FREE(tl, it2)
1006 elm_genlist_item_del(it2);
1010 _item_del(Elm_Genlist_Item *it)
1012 elm_widget_item_pre_notify_del(it);
1013 elm_genlist_item_subitems_clear(it);
1014 it->wd->walking -= it->walking;
1015 if (it->wd->show_item == it) it->wd->show_item = NULL;
1016 if (it->selected) it->wd->selected = eina_list_remove(it->wd->selected, it);
1017 if (it->realized) _item_unrealize(it);
1018 if (it->effect_item_realized) _effect_item_unrealize(it);
1019 if (it->block) _item_block_del(it);
1020 if ((!it->delete_me) && (it->itc->func.del))
1021 it->itc->func.del((void *)it->base.data, it->base.widget);
1022 it->delete_me = EINA_TRUE;
1024 it->wd->queue = eina_list_remove(it->wd->queue, it);
1026 if (it->wd->anchor_item == it)
1028 it->wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
1029 if (!it->wd->anchor_item)
1030 it->wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
1033 it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
1035 it->parent->items = eina_list_remove(it->parent->items, it);
1036 if (it->flags & ELM_GENLIST_ITEM_GROUP)
1037 it->wd->group_items = eina_list_remove(it->wd->group_items, it);
1038 if (it->long_timer) ecore_timer_del(it->long_timer);
1039 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
1041 if (it->tooltip.del_cb)
1042 it->tooltip.del_cb((void *)it->tooltip.data, it->base.widget, it);
1044 elm_widget_item_del(it);
1045 it->wd->total_num--; // todo : remove
1049 _item_select(Elm_Genlist_Item *it)
1051 if ((it->wd->no_select) || (it->delete_me)) return;
1052 if (it == it->wd->select_all_item)
1054 if(it->wd->select_all_check)
1055 _select_all_down_process(it->wd->select_all_item, EINA_FALSE, EINA_TRUE);
1057 _select_all_down_process(it->wd->select_all_item, EINA_TRUE, EINA_TRUE);
1062 if (it->wd->always_select) goto call;
1065 it->selected = EINA_TRUE;
1066 it->wd->selected = eina_list_append(it->wd->selected, it);
1070 if (it->func.func) it->func.func((void *)it->func.data, it->base.widget, it);
1072 evas_object_smart_callback_call(it->base.widget, "selected", it);
1075 if ((it->wd->clear_me) && (!it->wd->walking))
1077 elm_genlist_clear(it->base.widget);
1082 if ((!it->walking) && (it->delete_me))
1084 if (!it->relcount) _item_del(it);
1087 if (it && it->wd) it->wd->last_selected_item = it;
1091 _item_unselect(Elm_Genlist_Item *it)
1093 const char *stacking, *selectraise;
1095 if (it == it->wd->select_all_item) return;
1096 if ((it->delete_me) || (!it->hilighted)) return;
1098 edje_object_signal_emit(it->base.view, "elm,state,unselected", "elm");
1099 stacking = edje_object_data_get(it->base.view, "stacking");
1100 selectraise = edje_object_data_get(it->base.view, "selectraise");
1101 if ((selectraise) && (!strcmp(selectraise, "on")))
1103 if ((stacking) && (!strcmp(stacking, "below")))
1104 evas_object_lower(it->base.view);
1106 it->hilighted = EINA_FALSE;
1109 it->selected = EINA_FALSE;
1110 it->wd->selected = eina_list_remove(it->wd->selected, it);
1111 evas_object_smart_callback_call(it->base.widget, "unselected", it);
1116 _mouse_move(void *data,
1117 Evas *evas __UNUSED__,
1121 Elm_Genlist_Item *it = data;
1122 Evas_Event_Mouse_Move *ev = event_info;
1123 Evas_Coord minw = 0, minh = 0, x, y, dx, dy, adx, ady;
1125 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1127 if (!it->wd->on_hold)
1129 it->wd->on_hold = EINA_TRUE;
1130 if (!it->wd->wasselected)
1134 if (it->wd->multitouched)
1136 it->wd->cur_x = ev->cur.canvas.x;
1137 it->wd->cur_y = ev->cur.canvas.y;
1140 if ((it->dragging) && (it->down))
1142 if (it->wd->movements == SWIPE_MOVES) it->wd->swipe = EINA_TRUE;
1145 it->wd->history[it->wd->movements].x = ev->cur.canvas.x;
1146 it->wd->history[it->wd->movements].y = ev->cur.canvas.y;
1147 if (abs((it->wd->history[it->wd->movements].x -
1148 it->wd->history[0].x)) > 40)
1149 it->wd->swipe = EINA_TRUE;
1151 it->wd->movements++;
1155 ecore_timer_del(it->long_timer);
1156 it->long_timer = NULL;
1158 evas_object_smart_callback_call(it->base.widget, "drag", it);
1161 if ((!it->down) /* || (it->wd->on_hold)*/ || (it->wd->longpressed))
1165 ecore_timer_del(it->long_timer);
1166 it->long_timer = NULL;
1168 if (it->wd->reorder_mode && it->wd->reorder_it)
1170 Evas_Coord ox,oy,oh,ow, sel_all_h = 0;
1171 evas_object_geometry_get(it->wd->pan_smart, &ox, &oy, &ow, &oh);
1172 int it_y = ev->cur.canvas.y - it->wd->reorder_it->dy;
1173 if (!it->wd->reorder_start_y) it->wd->reorder_start_y = it->block->y + it->y;
1175 evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
1176 if (it->wd->select_all_item)
1177 sel_all_h = it->wd->select_all_item->h;
1178 if (it_y < oy + sel_all_h) _effect_item_controls(it, it->scrl_x, oy + sel_all_h);
1179 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);
1180 else _effect_item_controls(it, it->scrl_x, it_y);
1182 if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
1183 it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
1187 if (!it->display_only)
1188 elm_coords_finger_size_adjust(1, &minw, 1, &minh);
1189 evas_object_geometry_get(obj, &x, &y, NULL, NULL);
1190 x = ev->cur.canvas.x - x;
1191 y = ev->cur.canvas.y - y;
1194 if (adx < 0) adx = -dx;
1197 if (ady < 0) ady = -dy;
1200 if ((adx > minw) || (ady > minh))
1202 it->dragging = EINA_TRUE;
1205 ecore_timer_del(it->long_timer);
1206 it->long_timer = NULL;
1208 if (!it->wd->wasselected)
1213 evas_object_smart_callback_call(it->base.widget,
1214 "drag,start,up", it);
1219 evas_object_smart_callback_call(it->base.widget,
1220 "drag,start,left", it);
1221 _item_slide(it, EINA_FALSE);
1225 evas_object_smart_callback_call(it->base.widget,
1226 "drag,start,right", it);
1227 _item_slide(it, EINA_TRUE);
1234 evas_object_smart_callback_call(it->base.widget,
1235 "drag,start,down", it);
1240 evas_object_smart_callback_call(it->base.widget,
1241 "drag,start,left", it);
1242 _item_slide(it, EINA_FALSE);
1246 evas_object_smart_callback_call(it->base.widget,
1247 "drag,start,right", it);
1248 _item_slide(it, EINA_TRUE);
1256 _long_press(void *data)
1258 Elm_Genlist_Item *it = data;
1259 Elm_Genlist_Item *it_tmp;
1260 static Eina_Bool done = EINA_FALSE;
1261 //static Eina_Bool contracted = EINA_FALSE;
1265 it->long_timer = NULL;
1266 if ((it->disabled) || (it->dragging) || (it->display_only))
1267 return ECORE_CALLBACK_CANCEL;
1268 it->wd->longpressed = EINA_TRUE;
1269 evas_object_smart_callback_call(it->base.widget, "longpressed", it);
1270 if ((it->wd->reorder_mode) && (it != it->wd->select_all_item) && (it->flags != ELM_GENLIST_ITEM_GROUP))
1272 it->wd->reorder_it = it;
1273 it->wd->reorder_start_y = 0;
1274 evas_object_raise(it->edit_obj);
1275 elm_smart_scroller_hold_set(it->wd->scr, EINA_TRUE);
1276 edje_object_signal_emit(it->edit_obj, "elm,action,item,reorder_start", "elm");
1278 EINA_INLIST_FOREACH(it->wd->blocks, itb)
1283 EINA_LIST_FOREACH(itb->items, l, it_tmp)
1285 if (it_tmp->flags != ELM_GENLIST_ITEM_GROUP && it_tmp->realized)
1287 _item_unselect(it_tmp);
1299 EINA_LIST_FOREACH(it->items, l, it_tmp)
1301 if (elm_genlist_item_expanded_get(it_tmp))
1303 elm_genlist_item_expanded_set(it_tmp, EINA_FALSE);
1304 return ECORE_CALLBACK_RENEW;
1308 if (elm_genlist_item_expanded_get(it)) {
1309 elm_genlist_item_expanded_set(it, EINA_FALSE);
1310 return ECORE_CALLBACK_RENEW;
1312 if (it->wd->edit_field && it->renamed)
1313 elm_genlist_item_rename_mode_set(it, EINA_FALSE);
1316 return ECORE_CALLBACK_CANCEL;
1320 _swipe(Elm_Genlist_Item *it)
1325 it->wd->swipe = EINA_FALSE;
1326 for (i = 0; i < it->wd->movements; i++)
1328 sum += it->wd->history[i].x;
1329 if (abs(it->wd->history[0].y - it->wd->history[i].y) > 10) return;
1332 sum /= it->wd->movements;
1333 if (abs(sum - it->wd->history[0].x) <= 10) return;
1334 evas_object_smart_callback_call(it->base.widget, "swipe", it);
1338 _swipe_cancel(void *data)
1340 Elm_Genlist_Item *it = data;
1342 if (!it) return ECORE_CALLBACK_CANCEL;
1343 it->wd->swipe = EINA_FALSE;
1344 it->wd->movements = 0;
1345 return ECORE_CALLBACK_RENEW;
1349 _multi_cancel(void *data)
1351 Widget_Data *wd = data;
1353 if (!wd) return ECORE_CALLBACK_CANCEL;
1354 wd->multi_timeout = EINA_TRUE;
1355 return ECORE_CALLBACK_RENEW;
1359 _multi_touch_gesture_eval(void *data)
1361 Elm_Genlist_Item *it = data;
1363 it->wd->multitouched = EINA_FALSE;
1364 if (it->wd->multi_timer)
1366 ecore_timer_del(it->wd->multi_timer);
1367 it->wd->multi_timer = NULL;
1369 if (it->wd->multi_timeout)
1371 it->wd->multi_timeout = EINA_FALSE;
1375 Evas_Coord minw = 0, minh = 0;
1376 Evas_Coord off_x, off_y, off_mx, off_my;
1378 elm_coords_finger_size_adjust(1, &minw, 1, &minh);
1379 off_x = abs(it->wd->cur_x - it->wd->prev_x);
1380 off_y = abs(it->wd->cur_y - it->wd->prev_y);
1381 off_mx = abs(it->wd->cur_mx - it->wd->prev_mx);
1382 off_my = abs(it->wd->cur_my - it->wd->prev_my);
1384 if (((off_x > minw) || (off_y > minh)) && ((off_mx > minw) || (off_my > minh)))
1386 if ((off_x + off_mx) > (off_y + off_my))
1388 if ((it->wd->cur_x > it->wd->prev_x) && (it->wd->cur_mx > it->wd->prev_mx))
1389 evas_object_smart_callback_call(it->base.widget,
1390 "multi,swipe,right", it);
1391 else if ((it->wd->cur_x < it->wd->prev_x) && (it->wd->cur_mx < it->wd->prev_mx))
1392 evas_object_smart_callback_call(it->base.widget,
1393 "multi,swipe,left", it);
1394 else if (abs(it->wd->cur_x - it->wd->cur_mx) > abs(it->wd->prev_x - it->wd->prev_mx))
1395 evas_object_smart_callback_call(it->base.widget,
1396 "multi,pinch,out", it);
1398 evas_object_smart_callback_call(it->base.widget,
1399 "multi,pinch,in", it);
1403 if ((it->wd->cur_y > it->wd->prev_y) && (it->wd->cur_my > it->wd->prev_my))
1404 evas_object_smart_callback_call(it->base.widget,
1405 "multi,swipe,down", it);
1406 else if ((it->wd->cur_y < it->wd->prev_y) && (it->wd->cur_my < it->wd->prev_my))
1407 evas_object_smart_callback_call(it->base.widget,
1408 "multi,swipe,up", it);
1409 else if (abs(it->wd->cur_y - it->wd->cur_my) > abs(it->wd->prev_y - it->wd->prev_my))
1410 evas_object_smart_callback_call(it->base.widget,
1411 "multi,pinch,out", it);
1413 evas_object_smart_callback_call(it->base.widget,
1414 "multi,pinch,in", it);
1417 it->wd->multi_timeout = EINA_FALSE;
1421 _multi_down(void *data,
1422 Evas *evas __UNUSED__,
1423 Evas_Object *obj __UNUSED__,
1426 Elm_Genlist_Item *it = data;
1427 Evas_Event_Multi_Down *ev = event_info;
1429 if ((it->wd->multi_device != 0) || (it->wd->multitouched) || (it->wd->multi_timeout)) return;
1430 it->wd->multi_device = ev->device;
1431 it->wd->multi_down = EINA_TRUE;
1432 it->wd->multitouched = EINA_TRUE;
1433 it->wd->prev_mx = ev->canvas.x;
1434 it->wd->prev_my = ev->canvas.y;
1435 if (!it->wd->wasselected) _item_unselect(it);
1436 it->wd->wasselected = EINA_FALSE;
1437 it->wd->longpressed = EINA_FALSE;
1440 ecore_timer_del(it->long_timer);
1441 it->long_timer = NULL;
1445 it->dragging = EINA_FALSE;
1446 evas_object_smart_callback_call(it->base.widget, "drag,stop", it);
1448 if (it->swipe_timer)
1450 ecore_timer_del(it->swipe_timer);
1451 it->swipe_timer = NULL;
1453 if (it->wd->on_hold)
1455 it->wd->swipe = EINA_FALSE;
1456 it->wd->movements = 0;
1457 it->wd->on_hold = EINA_FALSE;
1462 _multi_up(void *data,
1463 Evas *evas __UNUSED__,
1464 Evas_Object *obj __UNUSED__,
1467 Elm_Genlist_Item *it = data;
1468 Evas_Event_Multi_Up *ev = event_info;
1470 if (it->wd->multi_device != ev->device) return;
1471 it->wd->multi_device = 0;
1472 it->wd->multi_down = EINA_FALSE;
1473 if (it->wd->mouse_down) return;
1474 _multi_touch_gesture_eval(data);
1478 _multi_move(void *data,
1479 Evas *evas __UNUSED__,
1480 Evas_Object *obj __UNUSED__,
1483 Elm_Genlist_Item *it = data;
1484 Evas_Event_Multi_Move *ev = event_info;
1486 if (it->wd->multi_device != ev->device) return;
1487 it->wd->cur_mx = ev->cur.canvas.x;
1488 it->wd->cur_my = ev->cur.canvas.y;
1492 _mouse_down(void *data,
1493 Evas *evas __UNUSED__,
1497 Elm_Genlist_Item *it = data;
1498 Evas_Event_Mouse_Down *ev = event_info;
1501 if (ev->button != 1) return;
1502 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1504 it->wd->on_hold = EINA_TRUE;
1507 if (it->wd->edit_field && !it->renamed)
1508 elm_genlist_item_rename_mode_set(it, EINA_FALSE);
1509 it->down = EINA_TRUE;
1510 it->dragging = EINA_FALSE;
1511 evas_object_geometry_get(obj, &x, &y, NULL, NULL);
1512 it->dx = ev->canvas.x - x;
1513 it->dy = ev->canvas.y - y;
1514 it->wd->mouse_down = EINA_TRUE;
1515 if (!it->wd->multitouched)
1517 it->wd->prev_x = ev->canvas.x;
1518 it->wd->prev_y = ev->canvas.y;
1519 it->wd->multi_timeout = EINA_FALSE;
1520 if (it->wd->multi_timer) ecore_timer_del(it->wd->multi_timer);
1521 it->wd->multi_timer = ecore_timer_add(1, _multi_cancel, it->wd);
1523 it->wd->longpressed = EINA_FALSE;
1524 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) it->wd->on_hold = EINA_TRUE;
1525 else it->wd->on_hold = EINA_FALSE;
1526 if (it->wd->on_hold) return;
1527 it->wd->wasselected = it->selected;
1529 if (ev->flags & EVAS_BUTTON_DOUBLE_CLICK)
1530 evas_object_smart_callback_call(it->base.widget, "clicked", it);
1531 if (it->long_timer) ecore_timer_del(it->long_timer);
1532 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
1533 it->swipe_timer = ecore_timer_add(0.4, _swipe_cancel, it);
1535 it->long_timer = ecore_timer_add(it->wd->longpress_timeout, _long_press,
1538 it->long_timer = NULL;
1539 it->wd->swipe = EINA_FALSE;
1540 it->wd->movements = 0;
1544 _mouse_up(void *data,
1545 Evas *evas __UNUSED__,
1546 Evas_Object *obj __UNUSED__,
1549 Elm_Genlist_Item *it = data;
1550 Evas_Event_Mouse_Up *ev = event_info;
1551 Eina_Bool dragged = EINA_FALSE;
1553 if (ev->button != 1) return;
1554 it->down = EINA_FALSE;
1555 it->wd->mouse_down = EINA_FALSE;
1556 if (it->wd->multitouched)
1558 if (it->wd->multi_down) return;
1559 _multi_touch_gesture_eval(data);
1562 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) it->wd->on_hold = EINA_TRUE;
1563 else it->wd->on_hold = EINA_FALSE;
1566 ecore_timer_del(it->long_timer);
1567 it->long_timer = NULL;
1571 it->dragging = EINA_FALSE;
1572 evas_object_smart_callback_call(it->base.widget, "drag,stop", it);
1575 if (it->swipe_timer)
1577 ecore_timer_del(it->swipe_timer);
1578 it->swipe_timer = NULL;
1580 if (it->wd->multi_timer)
1582 ecore_timer_del(it->wd->multi_timer);
1583 it->wd->multi_timer = NULL;
1584 it->wd->multi_timeout = EINA_FALSE;
1586 if (it->wd->on_hold)
1588 if (it->wd->swipe) _swipe(data);
1589 it->wd->longpressed = EINA_FALSE;
1590 it->wd->on_hold = EINA_FALSE;
1593 if (it->wd->reorder_mode)
1595 Evas_Coord rox, roy, row, roh, sel_all_h = 0;
1596 Elm_Genlist_Item *reorder_it = it->wd->reorder_it;
1599 Evas_Coord ox,oy,oh,ow;
1600 evas_object_geometry_get(it->wd->pan_smart, &ox, &oy, &ow, &oh);
1601 evas_object_geometry_get(it->wd->reorder_it->base.view, &rox, &roy, &row, &roh);
1602 if (it->wd->select_all_item) sel_all_h = it->wd->select_all_item->h;
1603 if (it->wd->reorder_rel)
1605 if (it->wd->reorder_it->parent == it->wd->reorder_rel->parent) // todo : refactoring
1607 if (roy + oy - sel_all_h <= it->wd->reorder_rel->scrl_y)
1608 _effect_item_move_before(it->wd->reorder_it, it->wd->reorder_rel);
1610 _effect_item_move_after(it->wd->reorder_it, it->wd->reorder_rel);
1613 it->wd->reorder_deleted = EINA_FALSE;
1614 it->wd->reorder_it = it->wd->reorder_rel = NULL;
1615 elm_smart_scroller_hold_set(it->wd->scr, EINA_FALSE);
1616 edje_object_signal_emit(it->edit_obj, "elm,action,item,reorder_end", "elm");
1619 if (it->wd->longpressed)
1621 it->wd->longpressed = EINA_FALSE;
1622 if (!it->wd->wasselected)
1624 it->wd->wasselected = EINA_FALSE;
1629 if (it->want_unrealize)
1631 _item_unrealize(it);
1632 if (it->block->want_unrealize)
1633 _item_block_unrealize(it->block);
1636 if ((it->disabled) || (dragged) || (it->display_only)) return;
1637 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
1640 if ((!it->selected) && (!it->sweeped))
1645 else _item_unselect(it);
1651 Widget_Data *wd = it->wd;
1654 while (wd->selected) _item_unselect(wd->selected->data);
1659 const Eina_List *l, *l_next;
1660 Elm_Genlist_Item *it2;
1662 EINA_LIST_FOREACH_SAFE(it->wd->selected, l, l_next, it2)
1663 if (it2 != it) _item_unselect(it2);
1664 //_item_hilight(it);
1676 _signal_expand_toggle(void *data,
1677 Evas_Object *obj __UNUSED__,
1678 const char *emission __UNUSED__,
1679 const char *source __UNUSED__)
1681 Elm_Genlist_Item *it = data;
1684 evas_object_smart_callback_call(it->base.widget, "contract,request", it);
1686 evas_object_smart_callback_call(it->base.widget, "expand,request", it);
1690 _signal_expand(void *data,
1691 Evas_Object *obj __UNUSED__,
1692 const char *emission __UNUSED__,
1693 const char *source __UNUSED__)
1695 Elm_Genlist_Item *it = data;
1698 evas_object_smart_callback_call(it->base.widget, "expand,request", it);
1702 _signal_contract(void *data,
1703 Evas_Object *obj __UNUSED__,
1704 const char *emission __UNUSED__,
1705 const char *source __UNUSED__)
1707 Elm_Genlist_Item *it = data;
1710 evas_object_smart_callback_call(it->base.widget, "contract,request", it);
1714 _item_cache_clean(Widget_Data *wd)
1716 while ((wd->item_cache) && (wd->item_cache_count > wd->item_cache_max))
1720 itc = EINA_INLIST_CONTAINER_GET(wd->item_cache->last, Item_Cache);
1721 wd->item_cache = eina_inlist_remove(wd->item_cache,
1722 wd->item_cache->last);
1723 wd->item_cache_count--;
1724 if (itc->spacer) evas_object_del(itc->spacer);
1725 if (itc->base_view) evas_object_del(itc->base_view);
1726 if (itc->item_style) eina_stringshare_del(itc->item_style);
1732 _item_cache_zero(Widget_Data *wd)
1734 int pmax = wd->item_cache_max;
1735 wd->item_cache_max = 0;
1736 _item_cache_clean(wd);
1737 wd->item_cache_max = pmax;
1741 _item_cache_add(Elm_Genlist_Item *it)
1745 if (it->wd->item_cache_max <= 0)
1747 evas_object_del(it->base.view);
1748 it->base.view = NULL;
1749 evas_object_del(it->spacer);
1754 it->wd->item_cache_count++;
1755 itc = calloc(1, sizeof(Item_Cache));
1757 it->wd->item_cache = eina_inlist_prepend(it->wd->item_cache,
1758 EINA_INLIST_GET(itc));
1759 itc->spacer = it->spacer;
1761 itc->base_view = it->base.view;
1762 it->base.view = NULL;
1763 evas_object_hide(itc->base_view);
1764 evas_object_move(itc->base_view, -9999, -9999);
1765 itc->item_style = eina_stringshare_add(it->itc->item_style);
1766 if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) itc->tree = 1;
1767 itc->compress = (it->wd->compress);
1768 itc->odd = (it->order_num_in & 0x1);
1769 itc->selected = it->selected;
1770 itc->disabled = it->disabled;
1771 itc->expanded = it->expanded;
1774 ecore_timer_del(it->long_timer);
1775 it->long_timer = NULL;
1777 if (it->swipe_timer)
1779 ecore_timer_del(it->swipe_timer);
1780 it->swipe_timer = NULL;
1782 // FIXME: other callbacks?
1783 edje_object_signal_callback_del_full(itc->base_view,
1784 "elm,action,expand,toggle",
1785 "elm", _signal_expand_toggle, it);
1786 edje_object_signal_callback_del_full(itc->base_view, "elm,action,expand",
1788 _signal_expand, it);
1789 edje_object_signal_callback_del_full(itc->base_view, "elm,action,contract",
1790 "elm", _signal_contract, it);
1791 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_DOWN,
1793 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_UP,
1795 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MOUSE_MOVE,
1797 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_DOWN,
1799 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_UP,
1801 evas_object_event_callback_del_full(itc->base_view, EVAS_CALLBACK_MULTI_MOVE,
1803 _item_cache_clean(it->wd);
1807 _item_cache_find(Elm_Genlist_Item *it)
1810 Eina_Bool tree = 0, odd;
1812 if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) tree = 1;
1813 odd = (it->order_num_in & 0x1);
1814 EINA_INLIST_FOREACH(it->wd->item_cache, itc)
1816 if ((itc->selected) || (itc->disabled) || (itc->expanded))
1818 if ((itc->tree == tree) &&
1819 (itc->odd == odd) &&
1820 (itc->compress == it->wd->compress) &&
1821 (!strcmp(it->itc->item_style, itc->item_style)))
1823 it->wd->item_cache = eina_inlist_remove(it->wd->item_cache,
1824 EINA_INLIST_GET(itc));
1825 it->wd->item_cache_count--;
1833 _item_cache_free(Item_Cache *itc)
1835 if (itc->spacer) evas_object_del(itc->spacer);
1836 if (itc->base_view) evas_object_del(itc->base_view);
1837 if (itc->item_style) eina_stringshare_del(itc->item_style);
1842 _item_realize(Elm_Genlist_Item *it,
1846 Elm_Genlist_Item *it2;
1847 const char *stacking;
1848 const char *treesize;
1850 int depth, tsize = 20;
1851 Item_Cache *itc = NULL;
1853 if ((it->realized) || (it->delete_me)) return;
1854 it->order_num_in = in;
1855 if (it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE) calc = EINA_FALSE;
1857 it->nocache = EINA_FALSE;
1859 itc = _item_cache_find(it);
1860 if ((!it->wd->effect_mode) && (itc))
1862 it->base.view = itc->base_view;
1863 itc->base_view = NULL;
1864 it->spacer = itc->spacer;
1869 it->base.view = edje_object_add(evas_object_evas_get(it->base.widget));
1870 edje_object_scale_set(it->base.view,
1871 elm_widget_scale_get(it->base.widget) *
1872 _elm_config->scale);
1873 evas_object_smart_member_add(it->base.view, it->wd->pan_smart);
1874 elm_widget_sub_object_add(it->base.widget, it->base.view);
1876 if (it->flags & ELM_GENLIST_ITEM_SUBITEMS)
1877 strncpy(buf, "tree", sizeof(buf));
1878 else strncpy(buf, "item", sizeof(buf));
1879 if (it->wd->compress)
1880 strncat(buf, "_compress", sizeof(buf) - strlen(buf));
1882 if (in & 0x1) strncat(buf, "_odd", sizeof(buf) - strlen(buf));
1883 strncat(buf, "/", sizeof(buf) - strlen(buf));
1884 strncat(buf, it->itc->item_style, sizeof(buf) - strlen(buf));
1886 _elm_theme_object_set(it->base.widget, it->base.view, "genlist", buf,
1887 elm_widget_style_get(it->base.widget));
1889 evas_object_rectangle_add(evas_object_evas_get(it->base.widget));
1890 evas_object_color_set(it->spacer, 0, 0, 0, 0);
1891 elm_widget_sub_object_add(it->base.widget, it->spacer);
1893 for (it2 = it, depth = 0; it2->parent; it2 = it2->parent)
1895 if (it2->parent->flags != ELM_GENLIST_ITEM_GROUP) depth += 1;
1897 it->expanded_depth = depth;
1898 treesize = edje_object_data_get(it->base.view, "treesize");
1899 if (treesize) tsize = atoi(treesize);
1900 evas_object_size_hint_min_set(it->spacer,
1901 (depth * tsize) * _elm_config->scale, 1);
1902 edje_object_part_swallow(it->base.view, "elm.swallow.pad", it->spacer);
1905 edje_object_signal_callback_add(it->base.view,
1906 "elm,action,expand,toggle",
1907 "elm", _signal_expand_toggle, it);
1908 edje_object_signal_callback_add(it->base.view, "elm,action,expand",
1909 "elm", _signal_expand, it);
1910 edje_object_signal_callback_add(it->base.view, "elm,action,contract",
1911 "elm", _signal_contract, it);
1912 stacking = edje_object_data_get(it->base.view, "stacking");
1915 if (!strcmp(stacking, "below")) evas_object_lower(it->base.view);
1916 else if (!strcmp(stacking, "above"))
1917 evas_object_raise(it->base.view);
1919 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_DOWN,
1921 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_UP,
1923 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_MOVE,
1925 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_DOWN,
1927 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_UP,
1929 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MULTI_MOVE,
1933 if (it->selected != itc->selected)
1935 if ((it->selected) && (!it->sweeped) && (!it->wd->edit_mode))
1936 edje_object_signal_emit(it->base.view,
1937 "elm,state,selected", "elm");
1939 if (it->disabled != itc->disabled)
1942 edje_object_signal_emit(it->base.view,
1943 "elm,state,disabled", "elm");
1945 if (it->expanded != itc->expanded)
1948 edje_object_signal_emit(it->base.view,
1949 "elm,state,expanded", "elm");
1954 if ((it->selected) && (!it->sweeped) && (!it->wd->edit_mode))
1955 edje_object_signal_emit(it->base.view,
1956 "elm,state,selected", "elm");
1958 edje_object_signal_emit(it->base.view,
1959 "elm,state,disabled", "elm");
1961 edje_object_signal_emit(it->base.view,
1962 "elm,state,expanded", "elm");
1966 if ((calc) && (it->wd->homogeneous) && ((it->wd->item_width) || ((it->wd->item_width) && (it->wd->group_item_width))))
1968 /* homogenous genlist shortcut */
1969 if ((it->flags & ELM_GENLIST_ITEM_GROUP) && (!it->mincalcd))
1971 it->w = it->minw = it->wd->group_item_width;
1972 it->h = it->minh = it->wd->group_item_height;
1973 it->mincalcd = EINA_TRUE;
1975 else if (!it->mincalcd)
1977 it->w = it->minw = it->wd->item_width;
1978 it->h = it->minh = it->wd->item_height;
1979 it->mincalcd = EINA_TRUE;
1984 if (it->itc->func.label_get)
1990 elm_widget_stringlist_get(edje_object_data_get(it->base.view,
1992 EINA_LIST_FOREACH(it->labels, l, key)
1994 char *s = it->itc->func.label_get
1995 ((void *)it->base.data, it->base.widget, l->data);
1999 edje_object_part_text_set(it->base.view, l->data, s);
2003 edje_object_part_text_set(it->base.view, l->data, "");
2006 if (it->itc->func.icon_get)
2012 elm_widget_stringlist_get(edje_object_data_get(it->base.view,
2014 EINA_LIST_FOREACH(it->icons, l, key)
2016 Evas_Object *ic = it->itc->func.icon_get
2017 ((void *)it->base.data, it->base.widget, l->data);
2021 it->icon_objs = eina_list_append(it->icon_objs, ic);
2022 edje_object_part_swallow(it->base.view, key, ic);
2023 evas_object_show(ic);
2024 elm_widget_sub_object_add(it->base.widget, ic);
2025 evas_object_event_callback_add(ic, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _changed_size_hints, it);
2029 if (it->itc->func.state_get)
2035 elm_widget_stringlist_get(edje_object_data_get(it->base.view,
2037 EINA_LIST_FOREACH(it->states, l, key)
2039 Eina_Bool on = it->itc->func.state_get
2040 ((void *)it->base.data, it->base.widget, l->data);
2044 snprintf(buf, sizeof(buf), "elm,state,%s,active", key);
2045 edje_object_signal_emit(it->base.view, buf, "elm");
2049 snprintf(buf, sizeof(buf), "elm,state,%s,passive", key);
2050 edje_object_signal_emit(it->base.view, buf, "elm");
2055 _create_sweep_objs(it);
2058 Evas_Coord mw = -1, mh = -1;
2060 if (it->wd->height_for_width) mw = it->wd->w;
2062 if (!it->display_only)
2063 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
2064 if (it->wd->height_for_width) mw = it->wd->prev_viewport_w;
2065 edje_object_size_min_restricted_calc(it->base.view, &mw, &mh, mw,
2067 if (!it->display_only)
2068 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
2069 it->w = it->minw = mw;
2070 it->h = it->minh = mh;
2071 it->mincalcd = EINA_TRUE;
2073 if ((!it->wd->group_item_width) && (it->flags == ELM_GENLIST_ITEM_GROUP))
2075 it->wd->group_item_width = mw;
2076 it->wd->group_item_height = mh;
2078 else if ((!it->wd->item_width) && (it->flags == ELM_GENLIST_ITEM_NONE))
2080 it->wd->item_width = mw;
2081 it->wd->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 evas_object_smart_callback_call(it->base.widget, "unrealized", it);
2120 ecore_timer_del(it->long_timer);
2121 it->long_timer = NULL;
2123 if ((it->sweeped) || (it->wassweeped) || (it->nocache))
2125 it->sweeped = EINA_FALSE;
2126 it->wassweeped = EINA_FALSE;
2127 it->wd->sweeped_items = eina_list_remove(it->wd->sweeped_items, it);
2128 _delete_sweep_objs(it);
2129 evas_object_del(it->base.view);
2130 it->base.view = NULL;
2131 evas_object_del(it->spacer);
2135 _item_cache_add(it);
2136 elm_widget_stringlist_free(it->labels);
2138 elm_widget_stringlist_free(it->icons);
2140 elm_widget_stringlist_free(it->states);
2142 EINA_LIST_FREE(it->icon_objs, icon)
2143 evas_object_del(icon);
2146 it->realized = EINA_FALSE;
2147 it->want_unrealize = EINA_FALSE;
2148 if (it->wd->edit_field && it->renamed)
2149 elm_genlist_item_rename_mode_set(it, EINA_FALSE);
2150 if (it->wd->edit_mode != ELM_GENLIST_EDIT_MODE_NONE) _effect_item_unrealize(it);
2154 _item_block_recalc(Item_Block *itb,
2160 Elm_Genlist_Item *it;
2161 Evas_Coord minw = 0, minh = 0;
2162 Eina_Bool showme = EINA_FALSE, changed = EINA_FALSE;
2166 EINA_LIST_FOREACH(itb->items, l, it)
2168 if (it->delete_me) continue;
2169 showme |= it->showme;
2174 if (!it->mincalcd) changed = EINA_TRUE;
2177 _item_realize(it, in, 1);
2178 _item_unrealize(it);
2183 _item_realize(it, in, 1);
2184 if (!it->wd->contracting) _item_unrealize(it);
2188 _item_realize(it, in, 0);
2190 if (minw < it->minw) minw = it->minw;
2198 itb->changed = EINA_FALSE;
2199 /* force an evas norender to garbage collect deleted objects */
2200 if (norender) evas_norender(evas_object_evas_get(itb->wd->obj));
2205 _item_block_realize(Item_Block *itb,
2210 Elm_Genlist_Item *it;
2212 if (itb->realized) return;
2213 EINA_LIST_FOREACH(itb->items, l, it)
2215 if (it->delete_me) continue;
2216 if (full) _item_realize(it, in, 0);
2219 itb->realized = EINA_TRUE;
2220 itb->want_unrealize = EINA_FALSE;
2224 _item_block_unrealize(Item_Block *itb)
2227 Elm_Genlist_Item *it;
2228 Eina_Bool dragging = EINA_FALSE;
2230 if (!itb->realized) return;
2231 EINA_LIST_FOREACH(itb->items, l, it)
2233 if (it->flags != ELM_GENLIST_ITEM_GROUP)
2237 dragging = EINA_TRUE;
2238 it->want_unrealize = EINA_TRUE;
2241 if (!it->wd->contracting) _item_unrealize(it);
2246 itb->realized = EINA_FALSE;
2247 itb->want_unrealize = EINA_TRUE;
2250 itb->want_unrealize = EINA_FALSE;
2254 _get_space_for_reorder_item(Elm_Genlist_Item *it)
2256 Evas_Coord rox, roy, row, roh;
2257 Eina_Bool top = EINA_FALSE;
2258 Elm_Genlist_Item *reorder_it = it->wd->reorder_it;
2259 if (!reorder_it) return 0;
2261 Evas_Coord ox,oy,oh,ow;
2262 evas_object_geometry_get(it->wd->pan_smart, &ox, &oy, &ow, &oh);
2263 evas_object_geometry_get(it->wd->reorder_it->base.view, &rox, &roy, &row, &roh);
2265 if ((it->wd->reorder_start_y < it->block->y) && (roy - oy + roh/2 >= it->block->y - it->wd->pan_y))
2267 it->block->reorder_offset = it->wd->reorder_it->h * -1;
2268 if (it->block->count == 1)
2269 it->wd->reorder_rel = it;
2271 else if ((it->wd->reorder_start_y >= it->block->y) && (roy - oy + roh/2 <= it->block->y - it->wd->pan_y))
2273 it->block->reorder_offset = it->wd->reorder_it->h;
2276 it->block->reorder_offset = 0;
2278 it->scrl_y += it->block->reorder_offset;
2280 top = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
2281 rox, roy+roh/2, row, 1));
2284 it->wd->reorder_rel = it;
2285 it->scrl_y+=it->wd->reorder_it->h;
2286 return it->wd->reorder_it->h;
2293 _reorder_item_moving_effect_timer_cb(void *data)
2295 Elm_Genlist_Item *it = data;
2296 Eina_Bool down = EINA_FALSE;
2297 double time = 0.4, t;
2299 t = ((0.0 > (t = current_time_get() - it->wd->start_time)) ? 0.0 : t) / 1000;
2302 y = (1 * sin((t / time) * (M_PI / 2)) * dy);
2306 if (it->old_scrl_y < it->scrl_y)
2308 it->old_scrl_y += y;
2311 else if (it->old_scrl_y > it->scrl_y)
2313 it->old_scrl_y -= y;
2317 _effect_item_controls(it, it->scrl_x, it->old_scrl_y);
2319 _group_items_recalc(it->wd);
2320 if (!it->wd->reorder_it || it->wd->reorder_pan_move)
2322 it->old_scrl_y = it->scrl_y;
2323 it->move_effect_me = EINA_FALSE;
2324 it->wd->item_moving_effect_timer = NULL;
2325 return ECORE_CALLBACK_CANCEL;
2327 if ((down && it->old_scrl_y >= it->scrl_y) || (!down && it->old_scrl_y <= it->scrl_y))
2329 it->old_scrl_y = it->scrl_y;
2330 it->move_effect_me = EINA_FALSE;
2331 it->wd->item_moving_effect_timer = NULL;
2332 return ECORE_CALLBACK_CANCEL;
2334 return ECORE_CALLBACK_RENEW;
2338 _item_block_position(Item_Block *itb,
2342 Elm_Genlist_Item *it;
2343 Elm_Genlist_Item *git;
2344 Evas_Coord y = 0, ox, oy, ow, oh, cvx, cvy, cvw, cvh;
2347 Elm_Genlist_Item *select_all_item = NULL;
2349 evas_object_geometry_get(itb->wd->pan_smart, &ox, &oy, &ow, &oh);
2350 evas_output_viewport_get(evas_object_evas_get(itb->wd->obj), &cvx, &cvy,
2353 if (itb->wd->select_all_item &&
2354 (itb->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECT || itb->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECTALL))
2356 if (itb->wd->select_all_check)
2357 edje_object_signal_emit(itb->wd->select_all_item->base.view, "elm,state,sel_check", "elm");
2359 edje_object_signal_emit(itb->wd->select_all_item->base.view, "elm,state,sel_uncheck", "elm");
2361 select_all_item = itb->wd->select_all_item;
2363 evas_object_resize(select_all_item->base.view, itb->w, select_all_item->h);
2364 evas_object_move(select_all_item->base.view, ox, oy);
2365 evas_object_raise(select_all_item->base.view);
2367 y = select_all_item->h;
2368 sel_all_h = select_all_item->h;
2371 EINA_LIST_FOREACH(itb->items, l, it)
2373 if (it->delete_me) continue;
2374 else if (it->wd->reorder_it && it->wd->reorder_it == it) continue;
2379 it->scrl_x = itb->x + it->x - it->wd->pan_x + ox;
2380 it->scrl_y = itb->y + it->y - it->wd->pan_y + oy;
2382 vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
2383 cvx, cvy, cvw, cvh));
2384 if (it->flags != ELM_GENLIST_ITEM_GROUP || (it->wd->reorder_it ))
2386 if ((itb->realized) && (!it->realized))
2388 if (vis) _item_realize(it, in, 0);
2394 if(it->wd->reorder_mode)
2395 y += _get_space_for_reorder_item(it);
2396 git = it->group_item;
2399 git->scrl_x = it->scrl_x;
2400 if (git->scrl_y < oy + sel_all_h)
2401 git->scrl_y = oy + sel_all_h;
2402 if ((git->scrl_y + git->h) > (it->scrl_y + it->h))
2403 git->scrl_y = (it->scrl_y + it->h) - git->h;
2404 git->want_realize = EINA_TRUE;
2406 if (it->wd->reorder_it && !it->wd->reorder_pan_move && it->old_scrl_y && it->old_scrl_y != it->scrl_y)
2408 if (!it->move_effect_me)
2410 it->move_effect_me = EINA_TRUE;
2411 it->item_moving_effect_timer = ecore_animator_add(_reorder_item_moving_effect_timer_cb, it);
2415 if (!it->move_effect_me )
2416 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))
2418 if (it->wd->edit_mode != ELM_GENLIST_EDIT_MODE_NONE)
2420 _effect_item_controls(it, it->scrl_x, it->scrl_y);
2424 evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
2425 evas_object_move(it->base.view, it->scrl_x+it->pad_left, it->scrl_y);
2426 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)))
2427 evas_object_show(it->base.view);
2429 evas_object_hide(it->base.view);
2431 it->old_scrl_x = it->scrl_x;
2432 it->old_scrl_y = it->scrl_y;
2437 if (!it->dragging) _item_unrealize(it);
2444 if (vis) it->want_realize = EINA_TRUE;
2451 _changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
2453 Elm_Genlist_Item *it = data;
2455 it->mincalcd = EINA_FALSE;
2456 it->block->updateme = EINA_TRUE;
2457 if (it->wd->changed_job) ecore_job_del(it->wd->changed_job);
2458 it->wd->changed_job = ecore_job_add(_changed_job, it->wd);
2462 _group_items_recalc(void *data)
2464 Widget_Data *wd = data;
2466 Elm_Genlist_Item *git;
2468 EINA_LIST_FOREACH(wd->group_items, l, git)
2470 if (git->want_realize)
2473 _item_realize(git, 0, 0);
2474 evas_object_resize(git->base.view, wd->minw, git->h);
2475 evas_object_move(git->base.view, git->scrl_x, git->scrl_y);
2476 evas_object_show(git->base.view);
2477 evas_object_raise(git->base.view);
2479 else if (!git->want_realize && git->realized)
2482 _item_unrealize(git);
2488 _must_recalc_idler(void *data)
2490 Widget_Data *wd = data;
2491 if (wd->calc_job) ecore_job_del(wd->calc_job);
2492 wd->calc_job = ecore_job_add(_calc_job, wd);
2493 wd->must_recalc_idler = NULL;
2494 return ECORE_CALLBACK_CANCEL;
2498 _calc_job(void *data)
2500 Widget_Data *wd = data;
2502 Evas_Coord minw = -1, minh = 0, y = 0, ow;
2503 Item_Block *chb = NULL;
2504 int in = 0, minw_change = 0;
2505 Eina_Bool changed = EINA_FALSE;
2507 Eina_Bool did_must_recalc = EINA_FALSE;
2510 t0 = ecore_time_get();
2511 evas_object_geometry_get(wd->pan_smart, NULL, NULL, &ow, &wd->h);
2515 // if (wd->height_for_width) changed = EINA_TRUE;
2518 EINA_INLIST_FOREACH(wd->blocks, itb)
2520 Eina_Bool showme = EINA_FALSE;
2523 showme = itb->showme;
2524 itb->showme = EINA_FALSE;
2527 if (itb->realized) _item_block_unrealize(itb);
2529 if ((itb->changed) || (changed) ||
2530 ((itb->must_recalc) && (!did_must_recalc)))
2532 if ((changed) || (itb->must_recalc))
2535 Elm_Genlist_Item *it;
2536 EINA_LIST_FOREACH(itb->items, l, it)
2537 if (it->mincalcd) it->mincalcd = EINA_FALSE;
2538 itb->changed = EINA_TRUE;
2539 if (itb->must_recalc) did_must_recalc = EINA_TRUE;
2540 itb->must_recalc = EINA_FALSE;
2542 if (itb->realized) _item_block_unrealize(itb);
2543 showme = _item_block_recalc(itb, in, 0, 1);
2549 if (minw == -1) minw = itb->minw;
2550 else if ((!itb->must_recalc) && (minw < itb->minw))
2559 if ((showme) && (wd->show_item) && (!wd->show_item->queued))
2561 wd->show_item->showme = EINA_FALSE;
2563 elm_smart_scroller_region_bring_in(wd->scr,
2565 wd->show_item->block->x,
2567 wd->show_item->block->y,
2568 wd->show_item->block->w,
2571 elm_smart_scroller_child_region_show(wd->scr,
2573 wd->show_item->block->x,
2575 wd->show_item->block->y,
2576 wd->show_item->block->w,
2578 wd->show_item = NULL;
2583 EINA_INLIST_FOREACH(wd->blocks, itb)
2589 if ((chb) && (EINA_INLIST_GET(chb)->next))
2591 EINA_INLIST_FOREACH(EINA_INLIST_GET(chb)->next, itb)
2593 if (itb->realized) _item_block_unrealize(itb);
2596 wd->realminw = minw;
2597 if (minw < wd->w) minw = wd->w;
2598 if ((minw != wd->minw) || (minh != wd->minh) || (wd->select_all_item))
2602 if (wd->select_all_item)
2603 wd->minh += wd->select_all_item->h;
2604 if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
2605 evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
2606 _sizing_eval(wd->obj);
2608 if ((wd->anchor_item) && (wd->anchor_item->block) && (!wd->auto_scrolled))
2610 Elm_Genlist_Item *it;
2613 it = wd->anchor_item;
2614 it_y = wd->anchor_y;
2615 elm_smart_scroller_child_pos_set(wd->scr, wd->pan_x,
2616 it->block->y + it->y + it_y);
2617 wd->anchor_item = it;
2618 wd->anchor_y = it_y;
2622 t = ecore_time_get();
2623 if (did_must_recalc)
2625 if (!wd->must_recalc_idler)
2626 wd->must_recalc_idler = ecore_idler_add(_must_recalc_idler, wd);
2628 wd->calc_job = NULL;
2629 evas_object_smart_changed(wd->pan_smart);
2633 _update_job(void *data)
2635 Widget_Data *wd = data;
2638 int num, num0, position = 0, recalc = 0;
2640 wd->update_job = NULL;
2642 EINA_INLIST_FOREACH(wd->blocks, itb)
2644 Evas_Coord itminw, itminh;
2645 Elm_Genlist_Item *it;
2651 _item_block_position(itb, num);
2656 EINA_LIST_FOREACH(itb->items, l2, it)
2663 it->updateme = EINA_FALSE;
2666 _item_unrealize(it);
2667 _item_realize(it, num, 0);
2672 _item_realize(it, num, 1);
2673 _item_unrealize(it);
2675 if ((it->minw != itminw) || (it->minh != itminh))
2680 itb->updateme = EINA_FALSE;
2684 itb->changed = EINA_TRUE;
2685 _item_block_recalc(itb, num0, 0, 1);
2686 _item_block_position(itb, num0);
2691 if (wd->calc_job) ecore_job_del(wd->calc_job);
2692 wd->calc_job = ecore_job_add(_calc_job, wd);
2697 _changed_job(void *data)
2699 Widget_Data *wd = data; Eina_List *l2;
2701 int num, num0, position = 0, recalc = 0;
2703 wd->changed_job = NULL;
2705 EINA_INLIST_FOREACH(wd->blocks, itb)
2707 Evas_Coord itminw, itminh;
2708 Elm_Genlist_Item *it;
2714 _item_block_position(itb, num);
2719 EINA_LIST_FOREACH(itb->items, l2, it)
2723 Evas_Coord mw = -1, mh = -1;
2727 if (it->wd->height_for_width) mw = it->wd->w;
2728 if (!it->display_only)
2729 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
2730 if (it->wd->height_for_width) mw = it->wd->prev_viewport_w;
2731 edje_object_size_min_restricted_calc(it->base.view, &mw, &mh, mw, mh);
2732 if (!it->display_only)
2733 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
2734 it->w = it->minw = mw;
2735 it->h = it->minh = mh;
2736 it->mincalcd = EINA_TRUE;
2738 //if ((it->minw != itminw) || (it->minh != itminh))
2739 if ((it->minh != itminh))
2744 itb->updateme = EINA_FALSE;
2748 itb->changed = EINA_TRUE;
2749 _item_block_recalc(itb, num0, 0, 1);
2750 _item_block_position(itb, num0);
2755 if (wd->calc_job) ecore_job_del(wd->calc_job);
2756 wd->calc_job = ecore_job_add(_calc_job, wd);
2761 _pan_set(Evas_Object *obj,
2765 Pan *sd = evas_object_smart_data_get(obj);
2768 // Evas_Coord ow, oh;
2769 // evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2770 // ow = sd->wd->minw - ow;
2771 // if (ow < 0) ow = 0;
2772 // oh = sd->wd->minh - oh;
2773 // if (oh < 0) oh = 0;
2774 // if (x < 0) x = 0;
2775 // if (y < 0) y = 0;
2776 // if (x > ow) x = ow;
2777 // if (y > oh) y = oh;
2778 if ((x == sd->wd->pan_x) && (y == sd->wd->pan_y)) return;
2783 EINA_INLIST_FOREACH(sd->wd->blocks, itb)
2785 if ((itb->y + itb->h) > y)
2787 Elm_Genlist_Item *it;
2790 EINA_LIST_FOREACH(itb->items, l2, it)
2792 if ((itb->y + it->y) >= y)
2794 sd->wd->anchor_item = it;
2795 sd->wd->anchor_y = -(itb->y + it->y - y);
2803 if(!sd->wd->item_moving_effect_timer) evas_object_smart_changed(obj);
2807 _pan_get(Evas_Object *obj,
2811 Pan *sd = evas_object_smart_data_get(obj);
2813 if (x) *x = sd->wd->pan_x;
2814 if (y) *y = sd->wd->pan_y;
2818 _pan_max_get(Evas_Object *obj,
2822 Pan *sd = evas_object_smart_data_get(obj);
2825 evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2826 ow = sd->wd->minw - ow;
2828 oh = sd->wd->minh - oh;
2835 _pan_min_get(Evas_Object *obj __UNUSED__,
2844 _pan_child_size_get(Evas_Object *obj,
2848 Pan *sd = evas_object_smart_data_get(obj);
2850 if (w) *w = sd->wd->minw;
2851 if (h) *h = sd->wd->minh;
2855 _pan_add(Evas_Object *obj)
2858 Evas_Object_Smart_Clipped_Data *cd;
2861 cd = evas_object_smart_data_get(obj);
2864 sd->__clipped_data = *cd;
2866 evas_object_smart_data_set(obj, sd);
2870 _pan_del(Evas_Object *obj)
2872 Pan *sd = evas_object_smart_data_get(obj);
2877 ecore_job_del(sd->resize_job);
2878 sd->resize_job = NULL;
2884 _pan_resize_job(void *data)
2887 _sizing_eval(sd->wd->obj);
2888 sd->resize_job = NULL;
2892 _pan_resize(Evas_Object *obj,
2896 Pan *sd = evas_object_smart_data_get(obj);
2899 evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
2900 if ((ow == w) && (oh == h)) return;
2901 if ((sd->wd->height_for_width) && (ow != w))
2903 if (sd->resize_job) ecore_job_del(sd->resize_job);
2904 sd->resize_job = ecore_job_add(_pan_resize_job, sd);
2906 if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
2907 sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
2911 _pan_calculate(Evas_Object *obj)
2913 Pan *sd = evas_object_smart_data_get(obj);
2915 Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
2916 static Evas_Coord old_pan_y = 0;
2918 Elm_Genlist_Item *git;
2921 evas_object_geometry_get(obj, &ox, &oy, &ow, &oh);
2922 evas_output_viewport_get(evas_object_evas_get(obj), &cvx, &cvy, &cvw, &cvh);
2923 EINA_LIST_FOREACH(sd->wd->group_items, l, git)
2925 git->want_realize = EINA_FALSE;
2927 EINA_INLIST_FOREACH(sd->wd->blocks, itb)
2929 itb->w = sd->wd->minw;
2930 if (ELM_RECTS_INTERSECT(itb->x - sd->wd->pan_x + ox,
2931 itb->y - sd->wd->pan_y + oy,
2933 cvx, cvy, cvw, cvh))
2935 if ((!itb->realized) || (itb->changed))
2936 _item_block_realize(itb, in, 0);
2937 _item_block_position(itb, in);
2941 if (itb->realized) _item_block_unrealize(itb);
2945 if (!sd->wd->reorder_it || sd->wd->reorder_pan_move)
2946 _group_items_recalc(sd->wd);
2948 if (sd->wd->reorder_mode && sd->wd->reorder_it)
2950 if (sd->wd->pan_y != old_pan_y) sd->wd->reorder_pan_move = EINA_TRUE;
2951 else sd->wd->reorder_pan_move = EINA_FALSE;
2952 evas_object_raise(sd->wd->reorder_it->edit_obj);
2953 old_pan_y = sd->wd->pan_y;
2956 if (sd->wd->effect_mode &&
2957 ((sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND) ||
2958 (sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT) ||
2959 (sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)))
2961 if (!sd->wd->item_moving_effect_timer)
2963 if (sd->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
2964 _item_flip_effect_show(sd->wd->expand_item);
2966 evas_object_raise(sd->wd->alpha_bg);
2967 evas_object_show(sd->wd->alpha_bg);
2968 elm_smart_scroller_bounce_animator_disabled_set(sd->wd->scr, EINA_TRUE);
2969 sd->wd->start_time = current_time_get();
2970 sd->wd->item_moving_effect_timer = ecore_animator_add(_item_moving_effect_timer_cb, sd->wd);
2973 else _item_auto_scroll(sd->wd);
2974 if (sd->wd->select_all_item) evas_object_raise(sd->wd->select_all_item->base.view);
2975 sd->wd->contracting = EINA_FALSE;
2979 _pan_move(Evas_Object *obj,
2980 Evas_Coord x __UNUSED__,
2981 Evas_Coord y __UNUSED__)
2983 Pan *sd = evas_object_smart_data_get(obj);
2985 if (sd->wd->calc_job) ecore_job_del(sd->wd->calc_job);
2986 sd->wd->calc_job = ecore_job_add(_calc_job, sd->wd);
2990 _hold_on(void *data __UNUSED__,
2992 void *event_info __UNUSED__)
2994 Widget_Data *wd = elm_widget_data_get(obj);
2996 elm_smart_scroller_hold_set(wd->scr, 1);
3000 _hold_off(void *data __UNUSED__,
3002 void *event_info __UNUSED__)
3004 Widget_Data *wd = elm_widget_data_get(obj);
3006 elm_smart_scroller_hold_set(wd->scr, 0);
3010 _freeze_on(void *data __UNUSED__,
3012 void *event_info __UNUSED__)
3014 Widget_Data *wd = elm_widget_data_get(obj);
3016 elm_smart_scroller_freeze_set(wd->scr, 1);
3020 _freeze_off(void *data __UNUSED__,
3022 void *event_info __UNUSED__)
3024 Widget_Data *wd = elm_widget_data_get(obj);
3026 elm_smart_scroller_freeze_set(wd->scr, 0);
3030 _scroll_edge_left(void *data,
3031 Evas_Object *scr __UNUSED__,
3032 void *event_info __UNUSED__)
3034 Evas_Object *obj = data;
3035 evas_object_smart_callback_call(obj, "scroll,edge,left", NULL);
3039 _scroll_edge_right(void *data,
3040 Evas_Object *scr __UNUSED__,
3041 void *event_info __UNUSED__)
3043 Evas_Object *obj = data;
3044 evas_object_smart_callback_call(obj, "scroll,edge,right", NULL);
3048 _scroll_edge_top(void *data,
3049 Evas_Object *scr __UNUSED__,
3050 void *event_info __UNUSED__)
3052 Evas_Object *obj = data;
3053 evas_object_smart_callback_call(obj, "scroll,edge,top", NULL);
3057 _scroll_edge_bottom(void *data,
3058 Evas_Object *scr __UNUSED__,
3059 void *event_info __UNUSED__)
3061 Evas_Object *obj = data;
3062 evas_object_smart_callback_call(obj, "scroll,edge,bottom", NULL);
3066 * Add a new Genlist object
3068 * @param parent The parent object
3069 * @return The new object or NULL if it cannot be created
3074 elm_genlist_add(Evas_Object *parent)
3079 Evas_Coord minw, minh;
3080 static Evas_Smart *smart = NULL;
3082 EINA_SAFETY_ON_NULL_RETURN_VAL(parent, NULL);
3086 static Evas_Smart_Class sc;
3088 evas_object_smart_clipped_smart_set(&_pan_sc);
3090 sc.name = "elm_genlist_pan";
3091 sc.version = EVAS_SMART_CLASS_VERSION;
3094 sc.resize = _pan_resize;
3095 sc.move = _pan_move;
3096 sc.calculate = _pan_calculate;
3097 if (!(smart = evas_smart_class_new(&sc))) return NULL;
3099 wd = ELM_NEW(Widget_Data);
3100 e = evas_object_evas_get(parent);
3101 if (!e) return NULL;
3102 obj = elm_widget_add(e);
3103 ELM_SET_WIDTYPE(widtype, "genlist");
3104 elm_widget_type_set(obj, "genlist");
3105 elm_widget_sub_object_add(parent, obj);
3106 elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
3107 elm_widget_data_set(obj, wd);
3108 elm_widget_del_hook_set(obj, _del_hook);
3109 elm_widget_del_pre_hook_set(obj, _del_pre_hook);
3110 elm_widget_theme_hook_set(obj, _theme_hook);
3111 elm_widget_can_focus_set(obj, EINA_TRUE);
3112 elm_widget_event_hook_set(obj, _event_hook);
3113 elm_widget_on_show_region_hook_set(obj, _show_region_hook, obj);
3115 wd->scr = elm_smart_scroller_add(e);
3116 elm_smart_scroller_widget_set(wd->scr, obj);
3117 elm_smart_scroller_object_theme_set(obj, wd->scr, "genlist", "base",
3118 elm_widget_style_get(obj));
3119 elm_smart_scroller_bounce_allow_set(wd->scr, EINA_FALSE,
3120 _elm_config->thumbscroll_bounce_enable);
3121 elm_widget_resize_object_set(obj, wd->scr);
3123 evas_object_smart_callback_add(wd->scr, "edge,left", _scroll_edge_left, obj);
3124 evas_object_smart_callback_add(wd->scr, "edge,right", _scroll_edge_right,
3126 evas_object_smart_callback_add(wd->scr, "edge,top", _scroll_edge_top, obj);
3127 evas_object_smart_callback_add(wd->scr, "edge,bottom", _scroll_edge_bottom,
3131 wd->mode = ELM_LIST_SCROLL;
3132 wd->max_items_per_block = MAX_ITEMS_PER_BLOCK;
3133 wd->item_cache_max = wd->max_items_per_block * 2;
3134 wd->longpress_timeout = _elm_config->longpress_timeout;
3135 //wd->effect_mode = _elm_config->effect_enable;
3136 // wd->effect_mode = EINA_TRUE;
3138 evas_object_smart_callback_add(obj, "scroll-hold-on", _hold_on, obj);
3139 evas_object_smart_callback_add(obj, "scroll-hold-off", _hold_off, obj);
3140 evas_object_smart_callback_add(obj, "scroll-freeze-on", _freeze_on, obj);
3141 evas_object_smart_callback_add(obj, "scroll-freeze-off", _freeze_off, obj);
3143 wd->pan_smart = evas_object_smart_add(e, smart);
3144 wd->pan = evas_object_smart_data_get(wd->pan_smart);
3147 elm_smart_scroller_extern_pan_set(wd->scr, wd->pan_smart,
3148 _pan_set, _pan_get, _pan_max_get,
3149 _pan_min_get, _pan_child_size_get);
3151 edje_object_size_min_calc(elm_smart_scroller_edje_object_get(wd->scr),
3153 evas_object_size_hint_min_set(obj, minw, minh);
3159 static Elm_Genlist_Item *
3160 _item_new(Widget_Data *wd,
3161 const Elm_Genlist_Item_Class *itc,
3163 Elm_Genlist_Item *parent,
3164 Elm_Genlist_Item_Flags flags,
3166 const void *func_data)
3168 Elm_Genlist_Item *it;
3170 it = elm_widget_item_new(wd->obj, Elm_Genlist_Item);
3171 if (!it) return NULL;
3174 it->base.data = data;
3175 it->parent = parent;
3177 it->func.func = func;
3178 it->func.data = func_data;
3179 it->mouse_cursor = NULL;
3180 it->expanded_depth = 0;
3181 if ((it->parent) && (it->parent->edit_select_check)) it->edit_select_check = EINA_TRUE;
3182 if ((!it->parent) && (it->wd->select_all_item))
3183 _select_all_down_process(it->wd->select_all_item, EINA_FALSE, EINA_FALSE);
3184 it->num = ++wd->total_num; // todo : remov
3189 _item_block_add(Widget_Data *wd,
3190 Elm_Genlist_Item *it)
3192 Item_Block *itb = NULL;
3199 itb = calloc(1, sizeof(Item_Block));
3202 if (!it->rel->block)
3205 eina_inlist_append(wd->blocks, EINA_INLIST_GET(itb));
3206 itb->items = eina_list_append(itb->items, it);
3212 wd->blocks = eina_inlist_prepend_relative
3213 (wd->blocks, EINA_INLIST_GET(itb),
3214 EINA_INLIST_GET(it->rel->block));
3216 eina_list_prepend_relative(itb->items, it, it->rel);
3220 wd->blocks = eina_inlist_append_relative
3221 (wd->blocks, EINA_INLIST_GET(itb),
3222 EINA_INLIST_GET(it->rel->block));
3224 eina_list_append_relative(itb->items, it, it->rel);
3234 itb = (Item_Block *)(wd->blocks);
3235 if (itb->count >= wd->max_items_per_block)
3237 itb = calloc(1, sizeof(Item_Block));
3241 eina_inlist_prepend(wd->blocks,
3242 EINA_INLIST_GET(itb));
3247 itb = calloc(1, sizeof(Item_Block));
3251 eina_inlist_prepend(wd->blocks, EINA_INLIST_GET(itb));
3253 itb->items = eina_list_prepend(itb->items, it);
3259 itb = (Item_Block *)(wd->blocks->last);
3260 if (itb->count >= wd->max_items_per_block)
3262 itb = calloc(1, sizeof(Item_Block));
3266 eina_inlist_append(wd->blocks,
3267 EINA_INLIST_GET(itb));
3272 itb = calloc(1, sizeof(Item_Block));
3276 eina_inlist_append(wd->blocks, EINA_INLIST_GET(itb));
3278 itb->items = eina_list_append(itb->items, it);
3284 itb = it->rel->block;
3285 if (!itb) goto newblock;
3287 itb->items = eina_list_prepend_relative(itb->items, it, it->rel);
3289 itb->items = eina_list_append_relative(itb->items, it, it->rel);
3292 itb->changed = EINA_TRUE;
3294 if (itb->wd->calc_job) ecore_job_del(itb->wd->calc_job);
3295 itb->wd->calc_job = ecore_job_add(_calc_job, itb->wd);
3298 it->rel->relcount--;
3299 if ((it->rel->delete_me) && (!it->rel->relcount))
3303 if (itb->count > itb->wd->max_items_per_block)
3307 Elm_Genlist_Item *it2;
3309 newc = itb->count / 2;
3310 itb2 = calloc(1, sizeof(Item_Block));
3314 eina_inlist_append_relative(wd->blocks, EINA_INLIST_GET(itb2),
3315 EINA_INLIST_GET(itb));
3316 itb2->changed = EINA_TRUE;
3317 while ((itb->count > newc) && (itb->items))
3321 l = eina_list_last(itb->items);
3323 itb->items = eina_list_remove_list(itb->items, l);
3326 itb2->items = eina_list_prepend(itb2->items, it2);
3334 _queue_proecess(Widget_Data *wd,
3338 Eina_Bool showme = EINA_FALSE;
3341 t0 = ecore_time_get();
3342 for (n = 0; (wd->queue) && (n < 128); n++)
3344 Elm_Genlist_Item *it;
3346 it = wd->queue->data;
3347 wd->queue = eina_list_remove_list(wd->queue, wd->queue);
3348 it->queued = EINA_FALSE;
3349 _item_block_add(wd, it);
3350 t = ecore_time_get();
3351 if (it->block->changed)
3353 showme = _item_block_recalc(it->block, it->block->num, 1,
3355 it->block->changed = 0;
3357 if (showme) it->block->showme = EINA_TRUE;
3358 if (eina_inlist_count(wd->blocks) > 1)
3360 if ((t - t0) > (ecore_animator_frametime_get())) break;
3367 _item_idler(void *data)
3369 Widget_Data *wd = data;
3372 //static double q_start = 0.0;
3373 //if (q_start == 0.0) q_start = ecore_time_get();
3376 if (_queue_proecess(wd, 1) > 0)
3378 if (wd->calc_job) ecore_job_del(wd->calc_job);
3379 wd->calc_job = ecore_job_add(_calc_job, wd);
3384 //printf("PROCESS TIME: %3.3f\n", ecore_time_get() - q_start);
3386 wd->queue_idler = NULL;
3387 return ECORE_CALLBACK_CANCEL;
3389 return ECORE_CALLBACK_RENEW;
3393 _item_queue(Widget_Data *wd,
3394 Elm_Genlist_Item *it)
3396 if (it->queued) return;
3397 it->queued = EINA_TRUE;
3398 wd->queue = eina_list_append(wd->queue, it);
3399 while ((wd->queue) && ((!wd->blocks) || (!wd->blocks->next)))
3401 if (wd->queue_idler)
3403 ecore_idler_del(wd->queue_idler);
3404 wd->queue_idler = NULL;
3406 _queue_proecess(wd, 0);
3408 if (!wd->queue_idler) wd->queue_idler = ecore_idler_add(_item_idler, wd);
3412 * Append item to the end of the genlist
3414 * This appends the given item to the end of the list or the end of
3415 * the children if the parent is given.
3417 * @param obj The genlist object
3418 * @param itc The item class for the item
3419 * @param data The item data
3420 * @param parent The parent item, or NULL if none
3421 * @param flags Item flags
3422 * @param func Convenience function called when item selected
3423 * @param func_data Data passed to @p func above.
3424 * @return A handle to the item added or NULL if not possible
3428 EAPI Elm_Genlist_Item *
3429 elm_genlist_item_append(Evas_Object *obj,
3430 const Elm_Genlist_Item_Class *itc,
3432 Elm_Genlist_Item *parent,
3433 Elm_Genlist_Item_Flags flags,
3435 const void *func_data)
3437 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3438 Widget_Data *wd = elm_widget_data_get(obj);
3439 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3441 if (!wd) return NULL;
3442 if (!it) return NULL;
3445 if (flags & ELM_GENLIST_ITEM_GROUP)
3446 wd->group_items = eina_list_append(wd->group_items, it);
3447 wd->items = eina_inlist_append(wd->items, EINA_INLIST_GET(it));
3452 Elm_Genlist_Item *it2 = NULL;
3453 Eina_List *ll = eina_list_last(it->parent->items);
3454 if (ll) it2 = ll->data;
3455 it->parent->items = eina_list_append(it->parent->items, it);
3456 if (!it2) it2 = it->parent;
3458 it2 = elm_genlist_item_prev_get(it2);
3460 eina_inlist_append_relative(wd->items, EINA_INLIST_GET(it),
3461 EINA_INLIST_GET(it2));
3463 it->rel->relcount++;
3465 if (it->parent->flags & ELM_GENLIST_ITEM_GROUP)
3466 it->group_item = parent;
3467 else if (it->parent->group_item)
3468 it->group_item = it->parent->group_item;
3470 it->before = EINA_FALSE;
3471 _item_queue(wd, it);
3476 * Prepend item at start of the genlist
3478 * This adds an item to the beginning of the list or beginning of the
3479 * children of the parent if given.
3481 * @param obj The genlist object
3482 * @param itc The item class for the item
3483 * @param data The item data
3484 * @param parent The parent item, or NULL if none
3485 * @param flags Item flags
3486 * @param func Convenience function called when item selected
3487 * @param func_data Data passed to @p func above.
3488 * @return A handle to the item added or NULL if not possible
3492 EAPI Elm_Genlist_Item *
3493 elm_genlist_item_prepend(Evas_Object *obj,
3494 const Elm_Genlist_Item_Class *itc,
3496 Elm_Genlist_Item *parent,
3497 Elm_Genlist_Item_Flags flags,
3499 const void *func_data)
3501 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3502 Widget_Data *wd = elm_widget_data_get(obj);
3503 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3505 if (!wd) return NULL;
3506 if (!it) return NULL;
3509 if (flags & ELM_GENLIST_ITEM_GROUP)
3510 wd->group_items = eina_list_prepend(wd->group_items, it);
3511 wd->items = eina_inlist_prepend(wd->items, EINA_INLIST_GET(it));
3516 Elm_Genlist_Item *it2 = NULL;
3517 Eina_List *ll = it->parent->items;
3518 if (ll) it2 = ll->data;
3519 it->parent->items = eina_list_prepend(it->parent->items, it);
3520 if (!it2) it2 = it->parent;
3522 it2 = elm_genlist_item_next_get(it2);
3524 eina_inlist_prepend_relative(wd->items, EINA_INLIST_GET(it),
3525 EINA_INLIST_GET(it2));
3527 it->rel->relcount++;
3529 it->before = EINA_TRUE;
3530 _item_queue(wd, it);
3535 * Insert item before another in the genlist
3537 * This inserts an item before another in the list. It will be in the
3538 * same tree level or group as the item it is inseted before.
3540 * @param obj The genlist object
3541 * @param itc The item class for the item
3542 * @param data The item data
3543 * @param before The item to insert before
3544 * @param flags Item flags
3545 * @param func Convenience function called when item selected
3546 * @param func_data Data passed to @p func above.
3547 * @return A handle to the item added or NULL if not possible
3551 EAPI Elm_Genlist_Item *
3552 elm_genlist_item_insert_before(Evas_Object *obj,
3553 const Elm_Genlist_Item_Class *itc,
3555 Elm_Genlist_Item *parent,
3556 Elm_Genlist_Item *before,
3557 Elm_Genlist_Item_Flags flags,
3559 const void *func_data)
3561 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3562 EINA_SAFETY_ON_NULL_RETURN_VAL(before, NULL);
3563 Widget_Data *wd = elm_widget_data_get(obj);
3564 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3566 if (!wd) return NULL;
3567 if (!it) return NULL;
3570 it->parent->items = eina_list_prepend_relative(it->parent->items, it,
3573 wd->items = eina_inlist_prepend_relative(wd->items, EINA_INLIST_GET(it),
3574 EINA_INLIST_GET(before));
3576 it->rel->relcount++;
3577 it->before = EINA_TRUE;
3578 _item_queue(wd, it);
3583 * Insert an item after another in the genlst
3585 * This inserts an item after another in the list. It will be in the
3586 * same tree level or group as the item it is inseted after.
3588 * @param obj The genlist object
3589 * @param itc The item class for the item
3590 * @param data The item data
3591 * @param after The item to insert after
3592 * @param flags Item flags
3593 * @param func Convenience function called when item selected
3594 * @param func_data Data passed to @p func above.
3595 * @return A handle to the item added or NULL if not possible
3599 EAPI Elm_Genlist_Item *
3600 elm_genlist_item_insert_after(Evas_Object *obj,
3601 const Elm_Genlist_Item_Class *itc,
3603 Elm_Genlist_Item *parent,
3604 Elm_Genlist_Item *after,
3605 Elm_Genlist_Item_Flags flags,
3607 const void *func_data)
3609 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3610 EINA_SAFETY_ON_NULL_RETURN_VAL(after, NULL);
3611 Widget_Data *wd = elm_widget_data_get(obj);
3612 Elm_Genlist_Item *it = _item_new(wd, itc, data, parent, flags, func,
3614 if (!wd) return NULL;
3615 if (!it) return NULL;
3616 wd->items = eina_inlist_append_relative(wd->items, EINA_INLIST_GET(it),
3617 EINA_INLIST_GET(after));
3620 it->parent->items = eina_list_append_relative(it->parent->items, it,
3624 it->rel->relcount++;
3625 it->before = EINA_FALSE;
3626 _item_queue(wd, it);
3633 * This clears all items in the list, leaving it empty.
3635 * @param obj The genlist object
3640 elm_genlist_clear(Evas_Object *obj)
3642 ELM_CHECK_WIDTYPE(obj, widtype);
3643 Widget_Data *wd = elm_widget_data_get(obj);
3645 if (wd->walking > 0)
3647 Elm_Genlist_Item *it;
3649 wd->clear_me = EINA_TRUE;
3650 EINA_INLIST_FOREACH(wd->items, it)
3652 it->delete_me = EINA_TRUE;
3658 Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
3659 it->nocache = EINA_TRUE;
3660 it->hilighted = EINA_FALSE;
3662 if (wd->anchor_item == it)
3664 wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3665 if (!wd->anchor_item)
3667 ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3670 wd->items = eina_inlist_remove(wd->items, wd->items);
3671 if (it->flags & ELM_GENLIST_ITEM_GROUP)
3672 it->wd->group_items = eina_list_remove(it->wd->group_items, it);
3673 elm_widget_item_pre_notify_del(it);
3674 if (it->effect_item_realized) _effect_item_unrealize(it);
3675 if (it->realized) _item_unrealize(it);
3676 if (((wd->clear_me) || (!it->delete_me)) && (it->itc->func.del))
3677 it->itc->func.del((void *)it->base.data, it->base.widget);
3678 if (it->long_timer) ecore_timer_del(it->long_timer);
3679 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
3680 elm_widget_item_del(it);
3682 wd->clear_me = EINA_FALSE;
3683 wd->anchor_item = NULL;
3686 Item_Block *itb = (Item_Block *)(wd->blocks);
3688 wd->blocks = eina_inlist_remove(wd->blocks, wd->blocks);
3689 if (itb->items) eina_list_free(itb->items);
3694 ecore_job_del(wd->calc_job);
3695 wd->calc_job = NULL;
3697 if (wd->queue_idler)
3699 ecore_idler_del(wd->queue_idler);
3700 wd->queue_idler = NULL;
3702 if (wd->must_recalc_idler)
3704 ecore_idler_del(wd->must_recalc_idler);
3705 wd->must_recalc_idler = NULL;
3709 eina_list_free(wd->queue);
3714 eina_list_free(wd->selected);
3715 wd->selected = NULL;
3719 Evas_Object *editfield;
3720 EINA_LIST_FREE(wd->edit_field, editfield)
3721 evas_object_del(editfield);
3722 wd->edit_field = NULL;
3724 if (wd->item_moving_effect_timer)
3726 ecore_animator_del(wd->item_moving_effect_timer);
3727 wd->item_moving_effect_timer = NULL;
3729 wd->show_item = NULL;
3736 evas_object_del(wd->alpha_bg);
3737 wd->alpha_bg = NULL;
3741 evas_object_size_hint_min_set(wd->pan_smart, wd->minw, wd->minh);
3742 evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
3748 * Enable or disable multi-select in the genlist
3750 * This enables (EINA_TRUE) or disableds (EINA_FALSE) multi-select in
3751 * the list. This allows more than 1 item to be selected.
3753 * @param obj The genlist object
3754 * @param multi Multi-select enable/disable
3759 elm_genlist_multi_select_set(Evas_Object *obj,
3762 ELM_CHECK_WIDTYPE(obj, widtype);
3763 Widget_Data *wd = elm_widget_data_get(obj);
3769 * Gets if multi-select in genlist is enable or disable
3771 * @param obj The genlist object
3772 * @return Multi-select enable/disable
3773 * (EINA_TRUE = enabled/EINA_FALSE = disabled)
3778 elm_genlist_multi_select_get(const Evas_Object *obj)
3780 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3781 Widget_Data *wd = elm_widget_data_get(obj);
3782 if (!wd) return EINA_FALSE;
3787 * Get the selectd item in the genlist
3789 * This gets the selected item in the list (if multi-select is enabled
3790 * only the first item in the list is selected - which is not very
3791 * useful, so see elm_genlist_selected_items_get() for when
3792 * multi-select is used).
3794 * If no item is selected, NULL is returned.
3796 * @param obj The genlist object
3797 * @return The selected item, or NULL if none.
3801 EAPI Elm_Genlist_Item *
3802 elm_genlist_selected_item_get(const Evas_Object *obj)
3804 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3805 Widget_Data *wd = elm_widget_data_get(obj);
3806 if (!wd) return NULL;
3807 if (wd->selected) return wd->selected->data;
3812 * Get a list of selected items in the genlist
3814 * This returns a list of the selected items. This list pointer is
3815 * only valid so long as no items are selected or unselected (or
3816 * unselected implicitly by deletion). The list contains
3817 * Elm_Genlist_Item pointers.
3819 * @param obj The genlist object
3820 * @return The list of selected items, nor NULL if none are selected.
3824 EAPI const Eina_List *
3825 elm_genlist_selected_items_get(const Evas_Object *obj)
3827 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3828 Widget_Data *wd = elm_widget_data_get(obj);
3829 if (!wd) return NULL;
3830 return wd->selected;
3834 * Get a list of realized items in genlist
3836 * This returns a list of the realized items in the genlist. The list
3837 * contains Elm_Genlist_Item pointers. The list must be freed by the
3838 * caller when done with eina_list_free(). The item pointers in the
3839 * list are only valid so long as those items are not deleted or the
3840 * genlist is not deleted.
3842 * @param obj The genlist object
3843 * @return The list of realized items, nor NULL if none are realized.
3848 elm_genlist_realized_items_get(const Evas_Object *obj)
3850 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3851 Widget_Data *wd = elm_widget_data_get(obj);
3852 Eina_List *list = NULL;
3854 Eina_Bool done = EINA_FALSE;
3855 if (!wd) return NULL;
3856 EINA_INLIST_FOREACH(wd->blocks, itb)
3861 Elm_Genlist_Item *it;
3864 EINA_LIST_FOREACH(itb->items, l, it)
3866 if (it->realized) list = eina_list_append(list, it);
3878 * Get the item that is at the x, y canvas coords
3880 * This returns the item at the given coordinates (which are canvas
3881 * relative not object-relative). If an item is at that coordinate,
3882 * that item handle is returned, and if @p posret is not NULL, the
3883 * integer pointed to is set to a value of -1, 0 or 1, depending if
3884 * the coordinate is on the upper portion of that item (-1), on the
3885 * middle section (0) or on the lower part (1). If NULL is returned as
3886 * an item (no item found there), then posret may indicate -1 or 1
3887 * based if the coordinate is above or below all items respectively in
3890 * @param it The item
3891 * @param x The input x coordinate
3892 * @param y The input y coordinate
3893 * @param posret The position relative to the item returned here
3894 * @return The item at the coordinates or NULL if none
3898 EAPI Elm_Genlist_Item *
3899 elm_genlist_at_xy_item_get(const Evas_Object *obj,
3904 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3905 Widget_Data *wd = elm_widget_data_get(obj);
3906 Evas_Coord ox, oy, ow, oh;
3907 Evas_Coord head_y = 0;
3910 if (!wd) return NULL;
3911 evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
3914 if (wd->select_all_item) head_y = wd->select_all_item->h;
3915 EINA_INLIST_FOREACH(wd->blocks, itb)
3918 Elm_Genlist_Item *it;
3920 if (!ELM_RECTS_INTERSECT(ox + itb->x - itb->wd->pan_x,
3921 oy + itb->y + head_y - itb->wd->pan_y,
3922 itb->w, itb->h, x, y, 1, 1))
3924 EINA_LIST_FOREACH(itb->items, l, it)
3926 Evas_Coord itx, ity;
3928 itx = ox + itb->x + it->x - itb->wd->pan_x;
3929 ity = oy + itb->y + it->y - itb->wd->pan_y;
3930 if (ELM_RECTS_INTERSECT(itx, ity, it->w, it->h, x, y, 1, 1))
3934 if (y <= (ity + (it->h / 4))) *posret = -1;
3935 else if (y >= (ity + it->h - (it->h / 4)))
3941 lasty = ity + it->h;
3946 if (y > lasty) *posret = 1;
3953 * Get the first item in the genlist
3955 * This returns the first item in the list.
3957 * @param obj The genlist object
3958 * @return The first item, or NULL if none
3962 EAPI Elm_Genlist_Item *
3963 elm_genlist_first_item_get(const Evas_Object *obj)
3965 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3966 Widget_Data *wd = elm_widget_data_get(obj);
3967 if (!wd) return NULL;
3968 if (!wd->items) return NULL;
3969 Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
3970 while ((it) && (it->delete_me))
3971 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
3976 * Get the last item in the genlist
3978 * This returns the last item in the list.
3980 * @return The last item, or NULL if none
3984 EAPI Elm_Genlist_Item *
3985 elm_genlist_last_item_get(const Evas_Object *obj)
3987 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3988 Widget_Data *wd = elm_widget_data_get(obj);
3989 if (!wd) return NULL;
3990 if (!wd->items) return NULL;
3991 Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items->last);
3992 while ((it) && (it->delete_me))
3993 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
3998 * Get the next item in the genlist
4000 * This returns the item after the item @p it.
4002 * @param it The item
4003 * @return The item after @p it, or NULL if none
4007 EAPI Elm_Genlist_Item *
4008 elm_genlist_item_next_get(const Elm_Genlist_Item *it)
4010 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4013 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
4014 if ((it) && (!it->delete_me)) break;
4016 return (Elm_Genlist_Item *)it;
4020 * Get the previous item in the genlist
4022 * This returns the item before the item @p it.
4024 * @param it The item
4025 * @return The item before @p it, or NULL if none
4029 EAPI Elm_Genlist_Item *
4030 elm_genlist_item_prev_get(const Elm_Genlist_Item *it)
4032 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4035 it = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
4036 if ((it) && (!it->delete_me)) break;
4038 return (Elm_Genlist_Item *)it;
4042 * Get the genlist object from an item
4044 * This returns the genlist object itself that an item belongs to.
4046 * @param it The item
4047 * @return The genlist object
4052 elm_genlist_item_genlist_get(const Elm_Genlist_Item *it)
4054 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4055 return it->base.widget;
4059 * Get the parent item of the given item
4061 * This returns the parent item of the item @p it given.
4063 * @param it The item
4064 * @return The parent of the item or NULL if none
4068 EAPI Elm_Genlist_Item *
4069 elm_genlist_item_parent_get(const Elm_Genlist_Item *it)
4071 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4076 * Clear all sub-items (children) of the given item
4078 * This clears all items that are children (or their descendants) of the
4081 * @param it The item
4086 elm_genlist_item_subitems_clear(Elm_Genlist_Item *it)
4088 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4089 Elm_Genlist_Item *it2;
4092 if(!it->wd->effect_mode || !it->wd->move_effect_mode)
4093 _item_subitems_clear(it);
4096 if((!it->wd->item_moving_effect_timer) && (it->flags != ELM_GENLIST_ITEM_GROUP) &&
4097 it->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE )
4099 it->wd->expand_item = it;
4100 _item_flip_effect_show(it);
4101 evas_object_geometry_get(it->base.view, NULL, &y, NULL, &h);
4102 it->wd->expand_item_end = y + h;
4106 it2 = elm_genlist_item_next_get(it2);
4108 } while (it2->expanded_depth > it->expanded_depth);
4110 it->wd->expand_item_gap = it->wd->expand_item_end - it2->old_scrl_y;
4112 it->wd->expand_item_gap = 0;
4114 evas_object_raise(it->wd->alpha_bg);
4115 evas_object_show(it->wd->alpha_bg);
4117 it->wd->start_time = current_time_get();
4118 it->wd->item_moving_effect_timer = ecore_animator_add(_item_moving_effect_timer_cb, it->wd);
4121 _item_subitems_clear(it);
4126 * Set the selected state of an item
4128 * This sets the selected state (1 selected, 0 not selected) of the given
4131 * @param it The item
4132 * @param selected The selected state
4137 elm_genlist_item_selected_set(Elm_Genlist_Item *it,
4140 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4141 Widget_Data *wd = elm_widget_data_get(it->base.widget);
4143 if (it->delete_me) return;
4144 selected = !!selected;
4145 if (it->selected == selected) return;
4151 while (wd->selected)
4152 _item_unselect(wd->selected->data);
4162 * Get the selected state of an item
4164 * This gets the selected state of an item (1 selected, 0 not selected).
4166 * @param it The item
4167 * @return The selected state
4172 elm_genlist_item_selected_get(const Elm_Genlist_Item *it)
4174 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4175 return it->selected;
4179 * Sets the expanded state of an item (if it's a parent)
4181 * This expands or contracts a parent item (thus showing or hiding the
4184 * @param it The item
4185 * @param expanded The expanded state (1 expanded, 0 not expanded).
4190 elm_genlist_item_expanded_set(Elm_Genlist_Item *it,
4193 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4194 if (it->expanded == expanded) return;
4195 it->expanded = expanded;
4196 it->wd->expand_item = it;
4198 if(it->wd->effect_mode && !it->wd->alpha_bg)
4199 it->wd->alpha_bg = _create_tray_alpha_bg(it->base.widget);
4203 it->wd->auto_scrolled = EINA_FALSE;
4204 it->wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND;
4206 edje_object_signal_emit(it->base.view, "elm,state,expanded", "elm");
4207 evas_object_smart_callback_call(it->base.widget, "expanded", it);
4211 it->wd->contracting = EINA_TRUE;
4212 it->wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT;
4214 edje_object_signal_emit(it->base.view, "elm,state,contracted", "elm");
4215 evas_object_smart_callback_call(it->base.widget, "contracted", it);
4220 * Get the expanded state of an item
4222 * This gets the expanded state of an item
4224 * @param it The item
4225 * @return Thre expanded state
4230 elm_genlist_item_expanded_get(const Elm_Genlist_Item *it)
4232 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4233 return it->expanded;
4237 * Get the depth of expanded item
4239 * @param it The genlist item object
4240 * @return The depth of expanded item
4245 elm_genlist_item_expanded_depth_get(const Elm_Genlist_Item *it)
4247 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, 0);
4248 return it->expanded_depth;
4252 * Sets the disabled state of an item.
4254 * A disabled item cannot be selected or unselected. It will also
4255 * change appearance to appear disabled. This sets the disabled state
4256 * (1 disabled, 0 not disabled).
4258 * @param it The item
4259 * @param disabled The disabled state
4264 elm_genlist_item_disabled_set(Elm_Genlist_Item *it,
4267 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4268 if (it->disabled == disabled) return;
4269 if (it->delete_me) return;
4270 it->disabled = disabled;
4274 edje_object_signal_emit(it->base.view, "elm,state,disabled", "elm");
4276 edje_object_signal_emit(it->base.view, "elm,state,enabled", "elm");
4281 * Get the disabled state of an item
4283 * This gets the disabled state of the given item.
4285 * @param it The item
4286 * @return The disabled state
4291 elm_genlist_item_disabled_get(const Elm_Genlist_Item *it)
4293 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4294 if (it->delete_me) return EINA_FALSE;
4295 return it->disabled;
4299 * Sets the display only state of an item.
4301 * A display only item cannot be selected or unselected. It is for
4302 * display only and not selecting or otherwise clicking, dragging
4303 * etc. by the user, thus finger size rules will not be applied to
4306 * @param it The item
4307 * @param display_only The display only state
4312 elm_genlist_item_display_only_set(Elm_Genlist_Item *it,
4313 Eina_Bool display_only)
4315 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4316 if (it->display_only == display_only) return;
4317 if (it->delete_me) return;
4318 it->display_only = display_only;
4319 it->mincalcd = EINA_FALSE;
4320 it->updateme = EINA_TRUE;
4321 if (it->block) it->block->updateme = EINA_TRUE;
4322 if (it->wd->update_job) ecore_job_del(it->wd->update_job);
4323 it->wd->update_job = ecore_job_add(_update_job, it->wd);
4327 * Get the display only state of an item
4329 * This gets the display only state of the given item.
4331 * @param it The item
4332 * @return The display only state
4337 elm_genlist_item_display_only_get(const Elm_Genlist_Item *it)
4339 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
4340 if (it->delete_me) return EINA_FALSE;
4341 return it->display_only;
4345 * Show the given item
4347 * This causes genlist to jump to the given item @p it and show it (by
4348 * scrolling), if it is not fully visible.
4350 * @param it The item
4355 elm_genlist_item_show(Elm_Genlist_Item *it)
4357 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4358 Evas_Coord gith = 0;
4359 if (it->delete_me) return;
4360 if ((it->queued) || (!it->mincalcd))
4362 it->wd->show_item = it;
4363 it->wd->bring_in = EINA_TRUE;
4364 it->showme = EINA_TRUE;
4367 if (it->wd->show_item)
4369 it->wd->show_item->showme = EINA_FALSE;
4370 it->wd->show_item = NULL;
4372 if ((it->group_item) && (it->wd->pan_y > (it->y + it->block->y)))
4373 gith = it->group_item->h;
4374 elm_smart_scroller_child_region_show(it->wd->scr,
4375 it->x + it->block->x,
4376 it->y + it->block->y - gith,
4377 it->block->w, it->h);
4381 * Bring in the given item
4383 * This causes genlist to jump to the given item @p it and show it (by
4384 * scrolling), if it is not fully visible. This may use animation to
4385 * do so and take a period of time
4387 * @param it The item
4392 elm_genlist_item_bring_in(Elm_Genlist_Item *it)
4394 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4395 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 if ((it->group_item) && (it->wd->pan_y > (it->y + it->block->y)))
4410 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,
4414 it->block->w, it->h);
4418 * Show the given item at the top
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_top_show(Elm_Genlist_Item *it)
4430 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4432 Evas_Coord gith = 0;
4434 if (it->delete_me) return;
4435 if ((it->queued) || (!it->mincalcd))
4437 it->wd->show_item = it;
4438 it->wd->bring_in = EINA_TRUE;
4439 it->showme = EINA_TRUE;
4442 if (it->wd->show_item)
4444 it->wd->show_item->showme = EINA_FALSE;
4445 it->wd->show_item = NULL;
4447 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4448 if (it->group_item) gith = it->group_item->h;
4449 elm_smart_scroller_child_region_show(it->wd->scr,
4450 it->x + it->block->x,
4451 it->y + it->block->y - gith,
4456 * Bring in the given item at the top
4458 * This causes genlist to jump to the given item @p it and show it (by
4459 * scrolling), if it is not fully visible. This may use animation to
4460 * do so and take a period of time
4462 * @param it The item
4467 elm_genlist_item_top_bring_in(Elm_Genlist_Item *it)
4469 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4471 Evas_Coord gith = 0;
4473 if (it->delete_me) return;
4474 if ((it->queued) || (!it->mincalcd))
4476 it->wd->show_item = it;
4477 it->wd->bring_in = EINA_TRUE;
4478 it->showme = EINA_TRUE;
4481 if (it->wd->show_item)
4483 it->wd->show_item->showme = EINA_FALSE;
4484 it->wd->show_item = NULL;
4486 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4487 if (it->group_item) gith = it->group_item->h;
4488 elm_smart_scroller_region_bring_in(it->wd->scr,
4489 it->x + it->block->x,
4490 it->y + it->block->y - gith,
4495 * Show the given item at the middle
4497 * This causes genlist to jump to the given item @p it and show it (by
4498 * scrolling), if it is not fully visible.
4500 * @param it The item
4505 elm_genlist_item_middle_show(Elm_Genlist_Item *it)
4507 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4510 if (it->delete_me) return;
4511 if ((it->queued) || (!it->mincalcd))
4513 it->wd->show_item = it;
4514 it->wd->bring_in = EINA_TRUE;
4515 it->showme = EINA_TRUE;
4518 if (it->wd->show_item)
4520 it->wd->show_item->showme = EINA_FALSE;
4521 it->wd->show_item = NULL;
4523 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4524 elm_smart_scroller_child_region_show(it->wd->scr,
4525 it->x + it->block->x,
4526 it->y + it->block->y - oh / 2 +
4527 it->h / 2, it->block->w, oh);
4531 * Bring in the given item at the middle
4533 * This causes genlist to jump to the given item @p it and show it (by
4534 * scrolling), if it is not fully visible. This may use animation to
4535 * do so and take a period of time
4537 * @param it The item
4542 elm_genlist_item_middle_bring_in(Elm_Genlist_Item *it)
4544 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4547 if (it->delete_me) return;
4548 if ((it->queued) || (!it->mincalcd))
4550 it->wd->show_item = it;
4551 it->wd->bring_in = EINA_TRUE;
4552 it->showme = EINA_TRUE;
4555 if (it->wd->show_item)
4557 it->wd->show_item->showme = EINA_FALSE;
4558 it->wd->show_item = NULL;
4560 evas_object_geometry_get(it->wd->pan_smart, NULL, NULL, &ow, &oh);
4561 elm_smart_scroller_region_bring_in(it->wd->scr,
4562 it->x + it->block->x,
4563 it->y + it->block->y - oh / 2 + it->h / 2,
4568 * Delete a given item
4570 * This deletes the item from genlist and calls the genlist item del
4571 * class callback defined in the item class, if it is set. This clears all
4572 * subitems if it is a tree.
4574 * @param it The item
4579 elm_genlist_item_del(Elm_Genlist_Item *it)
4581 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4582 if ((it->relcount > 0) || (it->walking > 0))
4584 elm_widget_item_pre_notify_del(it);
4585 elm_genlist_item_subitems_clear(it);
4586 it->delete_me = EINA_TRUE;
4587 if (it->wd->show_item == it) it->wd->show_item = NULL;
4589 it->wd->selected = eina_list_remove(it->wd->selected,
4593 if (it->realized) _item_unrealize(it);
4594 if (it->effect_item_realized) _effect_item_unrealize(it);
4595 it->block->changed = EINA_TRUE;
4596 if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
4597 it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
4599 if (it->itc->func.del)
4600 it->itc->func.del((void *)it->base.data, it->base.widget);
4607 * Set the data item from the genlist item
4609 * This set the data value passed on the elm_genlist_item_append() and
4610 * related item addition calls. This function will also call
4611 * elm_genlist_item_update() so the item will be updated to reflect the
4614 * @param it The item
4615 * @param data The new data pointer to set
4620 elm_genlist_item_data_set(Elm_Genlist_Item *it,
4623 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4624 elm_widget_item_data_set(it, data);
4625 elm_genlist_item_update(it);
4629 * Get the data item from the genlist item
4631 * This returns the data value passed on the elm_genlist_item_append()
4632 * and related item addition calls and elm_genlist_item_data_set().
4634 * @param it The item
4635 * @return The data pointer provided when created
4640 elm_genlist_item_data_get(const Elm_Genlist_Item *it)
4642 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4643 return elm_widget_item_data_get(it);
4647 * Tells genlist to "orphan" icons fetchs by the item class
4649 * This instructs genlist to release references to icons in the item,
4650 * meaning that they will no longer be managed by genlist and are
4651 * floating "orphans" that can be re-used elsewhere if the user wants
4654 * @param it The item
4659 elm_genlist_item_icons_orphan(Elm_Genlist_Item *it)
4662 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4663 EINA_LIST_FREE(it->icon_objs, icon)
4665 elm_widget_sub_object_del(it->base.widget, icon);
4666 evas_object_smart_member_del(icon);
4667 evas_object_hide(icon);
4672 * Get the real evas object of the genlist item
4674 * This returns the actual evas object used for the specified genlist
4675 * item. This may be NULL as it may not be created, and may be deleted
4676 * at any time by genlist. Do not modify this object (move, resize,
4677 * show, hide etc.) as genlist is controlling it. This function is for
4678 * querying, emitting custom signals or hooking lower level callbacks
4679 * for events. Do not delete this object under any circumstances.
4681 * @param it The item
4682 * @return The object pointer
4686 EAPI const Evas_Object *
4687 elm_genlist_item_object_get(const Elm_Genlist_Item *it)
4689 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, NULL);
4690 return it->base.view;
4694 * Update the contents of an item
4696 * This updates an item by calling all the item class functions again
4697 * to get the icons, labels and states. Use this when the original
4698 * item data has changed and the changes are desired to be reflected.
4700 * @param it The item
4705 elm_genlist_item_update(Elm_Genlist_Item *it)
4707 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4708 if (!it->block) return;
4709 if (it->delete_me) return;
4710 it->mincalcd = EINA_FALSE;
4711 it->updateme = EINA_TRUE;
4712 it->block->updateme = EINA_TRUE;
4713 if (it->wd->update_job) ecore_job_del(it->wd->update_job);
4714 it->wd->update_job = ecore_job_add(_update_job, it->wd);
4718 * Update the item class of an item
4720 * @param it The item
4721 * @parem itc The item class for the item
4726 elm_genlist_item_item_class_update(Elm_Genlist_Item *it,
4727 const Elm_Genlist_Item_Class *itc)
4729 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
4730 if (!it->block) return;
4731 EINA_SAFETY_ON_NULL_RETURN(itc);
4732 if (it->delete_me) return;
4734 it->nocache = EINA_TRUE;
4735 elm_genlist_item_update(it);
4738 static Evas_Object *
4739 _elm_genlist_item_label_create(void *data,
4741 void *item __UNUSED__)
4743 Evas_Object *label = elm_label_add(obj);
4746 elm_object_style_set(label, "tooltip");
4747 elm_label_label_set(label, data);
4752 _elm_genlist_item_label_del_cb(void *data,
4753 Evas_Object *obj __UNUSED__,
4754 void *event_info __UNUSED__)
4756 eina_stringshare_del(data);
4760 * Set the text to be shown in the genlist item.
4762 * @param item Target item
4763 * @param text The text to set in the content
4765 * Setup the text as tooltip to object. The item can have only one
4766 * tooltip, so any previous tooltip data is removed.
4771 elm_genlist_item_tooltip_text_set(Elm_Genlist_Item *item,
4774 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4775 text = eina_stringshare_add(text);
4776 elm_genlist_item_tooltip_content_cb_set(item, _elm_genlist_item_label_create,
4778 _elm_genlist_item_label_del_cb);
4782 * Set the content to be shown in the tooltip item
4784 * Setup the tooltip to item. The item can have only one tooltip, so
4785 * any previous tooltip data is removed. @p func(with @p data) will be
4786 * called every time that need to show the tooltip and it should return a
4787 * valid Evas_Object. This object is then managed fully by tooltip
4788 * system and is deleted when the tooltip is gone.
4790 * @param item the genlist item being attached by a tooltip.
4791 * @param func the function used to create the tooltip contents.
4792 * @param data what to provide to @a func as callback data/context.
4793 * @param del_cb called when data is not needed anymore, either when
4794 * another callback replaces @func, the tooltip is unset with
4795 * elm_genlist_item_tooltip_unset() or the owner @a item
4796 * dies. This callback receives as the first parameter the
4797 * given @a data, and @c event_info is the item.
4802 elm_genlist_item_tooltip_content_cb_set(Elm_Genlist_Item *item,
4803 Elm_Tooltip_Item_Content_Cb func,
4805 Evas_Smart_Cb del_cb)
4807 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_GOTO(item, error);
4809 if ((item->tooltip.content_cb == func) && (item->tooltip.data == data))
4812 if (item->tooltip.del_cb)
4813 item->tooltip.del_cb((void *)item->tooltip.data,
4814 item->base.widget, item);
4816 item->tooltip.content_cb = func;
4817 item->tooltip.data = data;
4818 item->tooltip.del_cb = del_cb;
4820 if (item->base.view)
4822 elm_widget_item_tooltip_content_cb_set(item,
4823 item->tooltip.content_cb,
4824 item->tooltip.data, NULL);
4825 elm_widget_item_tooltip_style_set(item, item->tooltip.style);
4831 if (del_cb) del_cb((void *)data, NULL, NULL);
4835 * Unset tooltip from item
4837 * @param item genlist item to remove previously set tooltip.
4839 * Remove tooltip from item. The callback provided as del_cb to
4840 * elm_genlist_item_tooltip_content_cb_set() will be called to notify
4841 * it is not used anymore.
4843 * @see elm_genlist_item_tooltip_content_cb_set()
4848 elm_genlist_item_tooltip_unset(Elm_Genlist_Item *item)
4850 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4851 if ((item->base.view) && (item->tooltip.content_cb))
4852 elm_widget_item_tooltip_unset(item);
4854 if (item->tooltip.del_cb)
4855 item->tooltip.del_cb((void *)item->tooltip.data, item->base.widget, item);
4856 item->tooltip.del_cb = NULL;
4857 item->tooltip.content_cb = NULL;
4858 item->tooltip.data = NULL;
4859 if (item->tooltip.style)
4860 elm_genlist_item_tooltip_style_set(item, NULL);
4864 * Sets a different style for this item tooltip.
4866 * @note before you set a style you should define a tooltip with
4867 * elm_genlist_item_tooltip_content_cb_set() or
4868 * elm_genlist_item_tooltip_text_set()
4870 * @param item genlist item with tooltip already set.
4871 * @param style the theme style to use (default, transparent, ...)
4876 elm_genlist_item_tooltip_style_set(Elm_Genlist_Item *item,
4879 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4880 eina_stringshare_replace(&item->tooltip.style, style);
4881 if (item->base.view) elm_widget_item_tooltip_style_set(item, style);
4885 * Get the style for this item tooltip.
4887 * @param item genlist item with tooltip already set.
4888 * @return style the theme style in use, defaults to "default". If the
4889 * object does not have a tooltip set, then NULL is returned.
4894 elm_genlist_item_tooltip_style_get(const Elm_Genlist_Item *item)
4896 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4897 return item->tooltip.style;
4901 * Set the cursor to be shown when mouse is over the genlist item
4903 * @param item Target item
4904 * @param cursor the cursor name to be used.
4906 * @see elm_object_cursor_set()
4910 elm_genlist_item_cursor_set(Elm_Genlist_Item *item,
4913 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4914 eina_stringshare_replace(&item->mouse_cursor, cursor);
4915 if (item->base.view) elm_widget_item_cursor_set(item, cursor);
4919 * Get the cursor to be shown when mouse is over the genlist item
4921 * @param item genlist item with cursor already set.
4922 * @return the cursor name.
4927 elm_genlist_item_cursor_get(const Elm_Genlist_Item *item)
4929 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4930 return elm_widget_item_cursor_get(item);
4934 * Unset the cursor to be shown when mouse is over the genlist item
4936 * @param item Target item
4938 * @see elm_object_cursor_unset()
4942 elm_genlist_item_cursor_unset(Elm_Genlist_Item *item)
4944 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4945 if (!item->mouse_cursor)
4948 if (item->base.view)
4949 elm_widget_item_cursor_unset(item);
4951 eina_stringshare_del(item->mouse_cursor);
4952 item->mouse_cursor = NULL;
4956 * Sets a different style for this item cursor.
4958 * @note before you set a style you should define a cursor with
4959 * elm_genlist_item_cursor_set()
4961 * @param item genlist item with cursor already set.
4962 * @param style the theme style to use (default, transparent, ...)
4967 elm_genlist_item_cursor_style_set(Elm_Genlist_Item *item,
4970 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
4971 elm_widget_item_cursor_style_set(item, style);
4975 * Get the style for this item cursor.
4977 * @param item genlist item with cursor already set.
4978 * @return style the theme style in use, defaults to "default". If the
4979 * object does not have a cursor set, then NULL is returned.
4984 elm_genlist_item_cursor_style_get(const Elm_Genlist_Item *item)
4986 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, NULL);
4987 return elm_widget_item_cursor_style_get(item);
4991 * Set if the cursor set should be searched on the theme or should use
4992 * the provided by the engine, only.
4994 * @note before you set if should look on theme you should define a
4995 * cursor with elm_object_cursor_set(). By default it will only look
4996 * for cursors provided by the engine.
4998 * @param item widget item with cursor already set.
4999 * @param engine_only boolean to define it cursors should be looked
5000 * only between the provided by the engine or searched on widget's
5006 elm_genlist_item_cursor_engine_only_set(Elm_Genlist_Item *item,
5007 Eina_Bool engine_only)
5009 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
5010 elm_widget_item_cursor_engine_only_set(item, engine_only);
5014 * Get the cursor engine only usage for this item cursor.
5016 * @param item widget item with cursor already set.
5017 * @return engine_only boolean to define it cursors should be looked
5018 * only between the provided by the engine or searched on widget's
5019 * theme as well. If the object does not have a cursor set, then
5020 * EINA_FALSE is returned.
5025 elm_genlist_item_cursor_engine_only_get(const Elm_Genlist_Item *item)
5027 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item, EINA_FALSE);
5028 return elm_widget_item_cursor_engine_only_get(item);
5032 * This sets the horizontal stretching mode
5034 * This sets the mode used for sizing items horizontally. Valid modes
5035 * are ELM_LIST_LIMIT and ELM_LIST_SCROLL. The default is
5036 * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
5037 * the scroller will scroll horizontally. Otherwise items are expanded
5038 * to fill the width of the viewport of the scroller. If it is
5039 * ELM_LIST_LIMIT, Items will be expanded to the viewport width and
5040 * limited to that size.
5042 * @param obj The genlist object
5043 * @param mode The mode to use
5048 elm_genlist_horizontal_mode_set(Evas_Object *obj,
5051 ELM_CHECK_WIDTYPE(obj, widtype);
5052 Widget_Data *wd = elm_widget_data_get(obj);
5054 if (wd->mode == mode) return;
5060 * Gets the horizontal stretching mode
5062 * @param obj The genlist object
5063 * @return The mode to use
5064 * (ELM_LIST_LIMIT, ELM_LIST_SCROLL)
5069 elm_genlist_horizontal_mode_get(const Evas_Object *obj)
5071 ELM_CHECK_WIDTYPE(obj, widtype) ELM_LIST_LAST;
5072 Widget_Data *wd = elm_widget_data_get(obj);
5073 if (!wd) return ELM_LIST_LAST;
5078 * Set the always select mode.
5080 * Items will only call their selection func and callback when first
5081 * becoming selected. Any further clicks will do nothing, unless you
5082 * enable always select with elm_genlist_always_select_mode_set().
5083 * This means even if selected, every click will make the selected
5084 * callbacks be called.
5086 * @param obj The genlist object
5087 * @param always_select The always select mode
5088 * (EINA_TRUE = on, EINA_FALSE = off)
5093 elm_genlist_always_select_mode_set(Evas_Object *obj,
5094 Eina_Bool always_select)
5096 ELM_CHECK_WIDTYPE(obj, widtype);
5097 Widget_Data *wd = elm_widget_data_get(obj);
5099 wd->always_select = always_select;
5103 * Get the always select mode.
5105 * @param obj The genlist object
5106 * @return The always select mode
5107 * (EINA_TRUE = on, EINA_FALSE = off)
5112 elm_genlist_always_select_mode_get(const Evas_Object *obj)
5114 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5115 Widget_Data *wd = elm_widget_data_get(obj);
5116 if (!wd) return EINA_FALSE;
5117 return wd->always_select;
5121 * Set no select mode
5123 * This will turn off the ability to select items entirely and they
5124 * will neither appear selected nor call selected callback functions.
5126 * @param obj The genlist object
5127 * @param no_select The no select mode
5128 * (EINA_TRUE = on, EINA_FALSE = off)
5133 elm_genlist_no_select_mode_set(Evas_Object *obj,
5134 Eina_Bool no_select)
5136 ELM_CHECK_WIDTYPE(obj, widtype);
5137 Widget_Data *wd = elm_widget_data_get(obj);
5139 wd->no_select = no_select;
5143 * Gets no select mode
5145 * @param obj The genlist object
5146 * @return The no select mode
5147 * (EINA_TRUE = on, EINA_FALSE = off)
5152 elm_genlist_no_select_mode_get(const Evas_Object *obj)
5154 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5155 Widget_Data *wd = elm_widget_data_get(obj);
5156 if (!wd) return EINA_FALSE;
5157 return wd->no_select;
5163 * This will enable the compress mode where items are "compressed"
5164 * horizontally to fit the genlist scrollable viewport width. This is
5165 * special for genlist. Do not rely on
5166 * elm_genlist_horizontal_mode_set() being set to ELM_LIST_COMPRESS to
5167 * work as genlist needs to handle it specially.
5169 * @param obj The genlist object
5170 * @param compress The compress mode
5171 * (EINA_TRUE = on, EINA_FALSE = off)
5176 elm_genlist_compress_mode_set(Evas_Object *obj,
5179 ELM_CHECK_WIDTYPE(obj, widtype);
5180 Widget_Data *wd = elm_widget_data_get(obj);
5182 wd->compress = compress;
5186 * Get the compress mode
5188 * @param obj The genlist object
5189 * @return The compress mode
5190 * (EINA_TRUE = on, EINA_FALSE = off)
5195 elm_genlist_compress_mode_get(const Evas_Object *obj)
5197 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5198 Widget_Data *wd = elm_widget_data_get(obj);
5199 if (!wd) return EINA_FALSE;
5200 return wd->compress;
5204 * Set height-for-width mode
5206 * With height-for-width mode the item width will be fixed (restricted
5207 * to a minimum of) to the list width when calculating its size in
5208 * order to allow the height to be calculated based on it. This allows,
5209 * for instance, text block to wrap lines if the Edje part is
5210 * configured with "text.min: 0 1".
5212 * @note This mode will make list resize slower as it will have to
5213 * recalculate every item height again whenever the list width
5216 * @note When height-for-width mode is enabled, it also enables
5217 * compress mode (see elm_genlist_compress_mode_set()) and
5218 * disables homogeneous (see elm_genlist_homogeneous_set()).
5220 * @param obj The genlist object
5221 * @param setting The height-for-width mode (EINA_TRUE = on,
5227 elm_genlist_height_for_width_mode_set(Evas_Object *obj,
5228 Eina_Bool height_for_width)
5230 ELM_CHECK_WIDTYPE(obj, widtype);
5231 Widget_Data *wd = elm_widget_data_get(obj);
5233 wd->height_for_width = !!height_for_width;
5234 if (wd->height_for_width)
5236 elm_genlist_homogeneous_set(obj, EINA_FALSE);
5237 elm_genlist_compress_mode_set(obj, EINA_TRUE);
5242 * Get the height-for-width mode
5244 * @param obj The genlist object
5245 * @return The height-for-width mode (EINA_TRUE = on, EINA_FALSE =
5251 elm_genlist_height_for_width_mode_get(const Evas_Object *obj)
5253 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5254 Widget_Data *wd = elm_widget_data_get(obj);
5255 if (!wd) return EINA_FALSE;
5256 return wd->height_for_width;
5262 * This will enable or disable the scroller bounce mode for the
5263 * genlist. See elm_scroller_bounce_set() for details
5265 * @param obj The genlist object
5266 * @param h_bounce Allow bounce horizontally
5267 * @param v_bounce Allow bounce vertically
5272 elm_genlist_bounce_set(Evas_Object *obj,
5276 ELM_CHECK_WIDTYPE(obj, widtype);
5277 Widget_Data *wd = elm_widget_data_get(obj);
5279 elm_smart_scroller_bounce_allow_set(wd->scr, h_bounce, v_bounce);
5283 * Get the bounce mode
5285 * @param obj The genlist object
5286 * @param h_bounce Allow bounce horizontally
5287 * @param v_bounce Allow bounce vertically
5292 elm_genlist_bounce_get(const Evas_Object *obj,
5293 Eina_Bool *h_bounce,
5294 Eina_Bool *v_bounce)
5296 ELM_CHECK_WIDTYPE(obj, widtype);
5297 Widget_Data *wd = elm_widget_data_get(obj);
5299 elm_smart_scroller_bounce_allow_get(obj, h_bounce, v_bounce);
5303 * Set homogenous mode
5305 * This will enable the homogeneous mode where items are of the same
5306 * height and width so that genlist may do the lazy-loading at its
5307 * maximum. This implies 'compressed' mode.
5309 * @param obj The genlist object
5310 * @param homogeneous Assume the items within the genlist are of the
5311 * same height and width (EINA_TRUE = on, EINA_FALSE = off)
5316 elm_genlist_homogeneous_set(Evas_Object *obj,
5317 Eina_Bool homogeneous)
5319 ELM_CHECK_WIDTYPE(obj, widtype);
5320 Widget_Data *wd = elm_widget_data_get(obj);
5322 if (homogeneous) elm_genlist_compress_mode_set(obj, EINA_TRUE);
5323 wd->homogeneous = homogeneous;
5327 * Get the homogenous mode
5329 * @param obj The genlist object
5330 * @return Assume the items within the genlist are of the same height
5331 * and width (EINA_TRUE = on, EINA_FALSE = off)
5336 elm_genlist_homogeneous_get(const Evas_Object *obj)
5338 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5339 Widget_Data *wd = elm_widget_data_get(obj);
5340 if (!wd) return EINA_FALSE;
5341 return wd->homogeneous;
5345 * Set the maximum number of items within an item block
5347 * This will configure the block count to tune to the target with
5348 * particular performance matrix.
5350 * @param obj The genlist object
5351 * @param n Maximum number of items within an item block
5356 elm_genlist_block_count_set(Evas_Object *obj,
5359 ELM_CHECK_WIDTYPE(obj, widtype);
5360 Widget_Data *wd = elm_widget_data_get(obj);
5362 wd->max_items_per_block = n;
5363 wd->item_cache_max = wd->max_items_per_block * 2;
5364 _item_cache_clean(wd);
5368 * Get the maximum number of items within an item block
5370 * @param obj The genlist object
5371 * @return Maximum number of items within an item block
5376 elm_genlist_block_count_get(const Evas_Object *obj)
5378 ELM_CHECK_WIDTYPE(obj, widtype) 0;
5379 Widget_Data *wd = elm_widget_data_get(obj);
5381 return wd->max_items_per_block;
5385 * Set the timeout in seconds for the longpress event
5387 * @param obj The genlist object
5388 * @param timeout timeout in seconds
5393 elm_genlist_longpress_timeout_set(Evas_Object *obj,
5396 ELM_CHECK_WIDTYPE(obj, widtype);
5397 Widget_Data *wd = elm_widget_data_get(obj);
5399 wd->longpress_timeout = timeout;
5403 * Get the timeout in seconds for the longpress event
5405 * @param obj The genlist object
5406 * @return timeout in seconds
5411 elm_genlist_longpress_timeout_get(const Evas_Object *obj)
5413 ELM_CHECK_WIDTYPE(obj, widtype) 0;
5414 Widget_Data *wd = elm_widget_data_get(obj);
5416 return wd->longpress_timeout;
5420 * Set the scrollbar policy
5422 * This sets the scrollbar visibility policy for the given genlist
5423 * scroller. ELM_SMART_SCROLLER_POLICY_AUTO means the scrollbar is
5424 * made visible if it is needed, and otherwise kept hidden.
5425 * ELM_SMART_SCROLLER_POLICY_ON turns it on all the time, and
5426 * ELM_SMART_SCROLLER_POLICY_OFF always keeps it off. This applies
5427 * respectively for the horizontal and vertical scrollbars.
5429 * @param obj The genlist object
5430 * @param policy_h Horizontal scrollbar policy
5431 * @param policy_v Vertical scrollbar policy
5436 elm_genlist_scroller_policy_set(Evas_Object *obj,
5437 Elm_Scroller_Policy policy_h,
5438 Elm_Scroller_Policy policy_v)
5440 ELM_CHECK_WIDTYPE(obj, widtype);
5441 Widget_Data *wd = elm_widget_data_get(obj);
5443 if ((policy_h >= ELM_SCROLLER_POLICY_LAST) ||
5444 (policy_v >= ELM_SCROLLER_POLICY_LAST))
5447 elm_smart_scroller_policy_set(wd->scr, policy_h, policy_v);
5451 * Get the scrollbar policy
5453 * @param obj The genlist object
5454 * @param policy_h Horizontal scrollbar policy
5455 * @param policy_v Vertical scrollbar policy
5460 elm_genlist_scroller_policy_get(const Evas_Object *obj,
5461 Elm_Scroller_Policy *policy_h,
5462 Elm_Scroller_Policy *policy_v)
5464 ELM_CHECK_WIDTYPE(obj, widtype);
5465 Widget_Data *wd = elm_widget_data_get(obj);
5466 Elm_Smart_Scroller_Policy s_policy_h, s_policy_v;
5467 if ((!wd) || (!wd->scr)) return;
5468 elm_smart_scroller_policy_get(wd->scr, &s_policy_h, &s_policy_v);
5469 if (policy_h) *policy_h = (Elm_Scroller_Policy)s_policy_h;
5470 if (policy_v) *policy_v = (Elm_Scroller_Policy)s_policy_v;
5473 /****************************************************************************/
5478 * @param obj The genlist object
5479 * @param reorder_mode The reorder mode
5480 * (EINA_TRUE = on, EINA_FALSE = off)
5485 elm_genlist_reorder_mode_set(Evas_Object *obj,
5486 Eina_Bool reorder_mode)
5488 ELM_CHECK_WIDTYPE(obj, widtype);
5489 Widget_Data *wd = elm_widget_data_get(obj);
5491 wd->reorder_mode = reorder_mode;
5495 * Get the reorder mode
5497 * @param obj The genlist object
5498 * @return The reorder mode
5499 * (EINA_TRUE = on, EINA_FALSE = off)
5504 elm_genlist_reorder_mode_get(const Evas_Object *obj)
5506 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
5507 Widget_Data *wd = elm_widget_data_get(obj);
5508 if (!wd) return EINA_FALSE;
5509 return wd->reorder_mode;
5513 elm_genlist_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after)
5519 elm_genlist_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before)
5525 _effect_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after)
5530 if (it->wd->ed->ec->move)
5531 it->wd->ed->ec->move(it->base.widget, it, after, EINA_TRUE);
5533 // printf("MOVE AFTER : %d after = %d \n", (int)elm_genlist_item_data_get(it)+1, (int)elm_genlist_item_data_get(after)+1);
5534 it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
5535 it->wd->reorder_deleted = EINA_TRUE;
5536 _item_block_del(it);
5538 it->wd->items = eina_inlist_append_relative(it->wd->items, EINA_INLIST_GET(it), EINA_INLIST_GET(after));
5540 it->rel->relcount++;
5541 it->before = EINA_FALSE;
5542 _item_queue(it->wd, it);
5546 _effect_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before)
5549 if (!before) return;
5551 if (it->wd->ed->ec->move)
5552 it->wd->ed->ec->move(it->base.widget, it, before, EINA_FALSE);
5554 // printf("MOVE BEFORE : %d before = %d \n", (int)elm_genlist_item_data_get(it)+1, (int)elm_genlist_item_data_get(before)+1);
5555 it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
5556 it->wd->reorder_deleted = EINA_TRUE;
5557 _item_block_del(it);
5558 it->wd->items = eina_inlist_prepend_relative(it->wd->items, EINA_INLIST_GET(it), EINA_INLIST_GET(before));
5560 it->rel->relcount++;
5561 it->before = EINA_TRUE;
5562 _item_queue(it->wd, it);
5566 elm_genlist_effect_set(const Evas_Object *obj, Eina_Bool emode)
5568 ELM_CHECK_WIDTYPE(obj, widtype);
5569 Widget_Data *wd = elm_widget_data_get(obj);
5571 wd->effect_mode = emode;
5572 // wd->point_rect = evas_object_rectangle_add(evas_object_evas_get(wd->obj));
5573 // evas_object_resize(wd->point_rect, 10, 25);
5574 // evas_object_color_set(wd->point_rect, 255, 0, 0, 130);
5575 // evas_object_show(wd->point_rect);
5576 // evas_object_hide(wd->point_rect);
5580 _create_tray_alpha_bg(const Evas_Object *obj)
5582 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
5583 Widget_Data *wd = elm_widget_data_get(obj);
5584 if (!wd) return NULL;
5586 Evas_Object *bg = NULL;
5587 Evas_Coord ox, oy, ow, oh;
5589 evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
5590 bg = evas_object_rectangle_add(evas_object_evas_get(wd->obj));
5591 evas_object_color_set(bg,0,0,0,0);
5592 evas_object_resize(bg , ow, oh);
5593 evas_object_move(bg , ox, oy);
5594 evas_object_show(bg);
5595 evas_object_hide(bg);
5602 struct timeval timev;
5604 gettimeofday(&timev, NULL);
5605 return ((timev.tv_sec * 1000) + ((timev.tv_usec) / 1000));
5608 // added for item moving animation.
5610 _item_moving_effect_timer_cb(void *data)
5612 Widget_Data *wd = data;
5613 if (!wd) return EINA_FALSE;
5615 Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
5616 Elm_Genlist_Item *it, *it2;
5618 double time = 0.4, t;
5620 Eina_Bool check, end = EINA_FALSE;
5621 // static Eina_Bool first = EINA_TRUE;
5624 t = ((0.0 > (t = current_time_get() - wd->start_time)) ? 0.0 : t) / 1000;
5626 evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
5627 evas_output_viewport_get(evas_object_evas_get(wd->pan_smart), &cvx, &cvy, &cvw, &cvh);
5628 if (t > time) end = EINA_TRUE;
5629 EINA_INLIST_FOREACH(wd->blocks, itb)
5632 if (ELM_RECTS_INTERSECT(itb->x - wd->pan_x + ox,
5633 itb->y - wd->pan_y + oy,
5635 cvx, cvy, cvw, cvh))
5637 EINA_LIST_FOREACH(itb->items, l, it)
5639 if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
5644 if(it2->parent == wd->expand_item) check = EINA_TRUE;
5650 //printf(" s: %d %d ", oy, oh);
5651 if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
5652 dy = it->scrl_y - it->old_scrl_y;
5653 else if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5655 // printf("%d %d\n", it->old_scrl_y, wd->expand_item_end);
5656 if(wd->expand_item_end < it->old_scrl_y)
5657 dy = wd->expand_item_gap;
5659 else if (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
5661 if (wd->expand_item_end < it->old_scrl_y)
5662 dy = wd->expand_item_gap;
5665 y = (1 * sin((t / time) * (M_PI / 2)) * dy);
5672 if (!it->old_scrl_y)
5673 it->old_scrl_y = it->scrl_y;
5676 if (it->old_scrl_y + y < oy + oh)
5678 if (!it->realized) _item_realize(it, in, 0);
5680 if (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE && it->old_scrl_y + y < it->scrl_y)
5681 it->old_scrl_y = it->scrl_y - y;
5684 if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE ||
5685 (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE && it->old_scrl_y + y >= it->scrl_y))
5687 if (wd->edit_mode) _effect_item_controls(it, it->scrl_x, it->old_scrl_y + y);
5690 evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
5691 evas_object_move(it->base.view, it->scrl_x+it->pad_left, it->old_scrl_y + y);
5692 evas_object_show(it->base.view);
5693 evas_object_raise(it->base.view);
5696 if(wd->select_all_item) evas_object_raise(wd->select_all_item->base.view);
5697 if (it->group_item) evas_object_raise(it->group_item->base.view);
5700 if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
5702 it2 = elm_genlist_item_prev_get(it);
5705 if((it2->scrl_y < it->old_scrl_y + y) && (it2->expanded_depth > it->expanded_depth))
5707 if(!it2->effect_done)
5709 //edje_object_signal_emit(it2->base.view, "elm,state,expand_flip", "");
5710 evas_object_move(it2->base.view, it2->scrl_x, it2->scrl_y);
5711 evas_object_show(it2->base.view);
5712 it2->effect_done = EINA_TRUE;
5716 it2 = elm_genlist_item_prev_get(it2);
5719 else if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5721 it2 = elm_genlist_item_prev_get(it);
5724 if((it2->scrl_y > it->old_scrl_y + y) && (it2->expanded_depth > it->expanded_depth))
5726 if(!it2->effect_done)
5728 edje_object_signal_emit(it2->base.view, "elm,state,hide", "");
5729 it2->effect_done = EINA_TRUE;
5734 it2 = elm_genlist_item_prev_get(it2);
5740 // first = EINA_FALSE;
5744 if (wd->item_moving_effect_timer)
5746 if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5747 _item_subitems_clear(wd->expand_item);
5748 EINA_INLIST_FOREACH(wd->blocks, itb)
5750 EINA_LIST_FOREACH(itb->items, l, it)
5752 it->effect_done = EINA_TRUE;
5753 it->list_expanded = 0;
5754 it->old_scrl_y = it->scrl_y;
5758 //evas_render(evas_object_evas_get(wd->obj));
5759 wd->item_moving_effect_timer = NULL;
5760 // first = EINA_TRUE;
5762 _item_auto_scroll(wd);
5763 evas_object_lower(wd->alpha_bg);
5764 evas_object_hide(wd->alpha_bg);
5765 if (wd->calc_job) ecore_job_del(wd->calc_job);
5766 wd->calc_job = ecore_job_add(_calc_job, wd);
5767 elm_smart_scroller_bounce_animator_disabled_set(wd->scr, EINA_FALSE);
5768 wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_NONE;
5770 evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
5771 evas_object_smart_callback_call(wd->obj, "effect_done", NULL);
5772 return ECORE_CALLBACK_CANCEL;
5774 return ECORE_CALLBACK_RENEW;
5778 _emit_contract(Elm_Genlist_Item *it)
5780 Elm_Genlist_Item *it2;
5783 // printf("%p is emited contract\n", it);
5784 edje_object_signal_emit(it->base.view, "elm,state,contract_flip", "");
5785 it->effect_done = EINA_FALSE;
5787 EINA_LIST_FOREACH(it->items, l, it2)
5789 _emit_contract(it2);
5792 // added for item moving animation.
5794 _item_flip_effect_show(Elm_Genlist_Item *it)
5796 Elm_Genlist_Item *it2;
5798 Widget_Data *wd = it->wd;
5799 Eina_Bool check = EINA_FALSE;
5801 it2 = elm_genlist_item_next_get(it);
5804 if(it2->expanded_depth <= it->expanded_depth) check = EINA_TRUE;
5805 it2 = elm_genlist_item_next_get(it2);
5807 EINA_LIST_FOREACH(it->items, l, it2)
5809 if (it2->parent && it == it2->parent)
5811 if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
5813 edje_object_signal_emit(it2->base.view, "flip_item", "");
5815 evas_object_move(it2->base.view, -9999, -9999);
5817 evas_object_show(it2->base.view);
5819 else if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
5820 _emit_contract(it2);
5824 return ECORE_CALLBACK_CANCEL;
5829 _elm_genlist_pinch_zoom_execute(Evas_Object *obj, Eina_Bool emode)
5831 printf("!!! NOW FIXING \n");
5836 * Set pinch zoom mode
5838 * @param obj The genlist object
5840 * (EINA_TRUE = pinch contract (zoom in), EINA_FALSE = pinch expand (zoom out)
5845 elm_genlist_pinch_zoom_mode_set(Evas_Object *obj, Eina_Bool emode)
5847 printf("!!! NOW FIXING \n");
5851 * Get pinch zoom mode
5853 * @param obj The genlist object
5854 * @return The pinch mode
5855 * (EINA_TRUE = pinch contract (zoom in), EINA_FALSE = pinch expand (zoom out)
5860 elm_genlist_pinch_zoom_mode_get(const Evas_Object *obj)
5862 printf("!!! NOW FIXING \n");
5867 elm_genlist_pinch_zoom_set(Evas_Object *obj, Eina_Bool emode)
5869 printf("!!! NOW FIXING \n");
5873 ////////////////////////////////////////////////////////////////////////
5875 ////////////////////////////////////////////////////////////////////////
5877 _effect_item_update(Elm_Genlist_Item *it)
5879 if (it->edit_select_check)
5881 edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
5885 edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
5890 _edit_item_checkbox_set(Elm_Genlist_Item *it, Eina_Bool edit_select_check_state)
5893 if (edit_select_check_state)
5895 it->edit_select_check = EINA_TRUE;
5896 edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
5900 it->edit_select_check = EINA_FALSE;
5901 edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
5903 if (it->wd->ed && it->wd->ed->ec && it->wd->ed->ec->item_selected)
5904 it->wd->ed->ec->item_selected(it->base.data, it, it->edit_select_check);
5908 _edit_subitems_checkbox_set(Elm_Genlist_Item *it)
5911 Eina_List *tl = NULL, *l;
5912 Elm_Genlist_Item *it2;
5914 EINA_LIST_FOREACH(it->items, l, it2)
5915 tl = eina_list_append(tl, it2);
5916 EINA_LIST_FREE(tl, it2)
5917 if(it2->parent) _edit_item_checkbox_set(it2, it2->parent->edit_select_check);
5921 _edit_parent_items_checkbox_set(Elm_Genlist_Item *it)
5924 Elm_Genlist_Item *tmp_it;
5925 Eina_Bool parent_check = EINA_TRUE;
5927 EINA_INLIST_FOREACH(it->wd->items, tmp_it)
5929 if (tmp_it->parent && it->parent)
5930 if(tmp_it->parent == it->parent && tmp_it->edit_select_check == EINA_FALSE) parent_check = EINA_FALSE;
5934 if (parent_check) it->parent->edit_select_check = EINA_TRUE;
5935 else it->parent->edit_select_check = EINA_FALSE;
5940 _effect_item_update(it->parent);
5941 return _edit_parent_items_checkbox_set(it->parent);
5946 _select_all_down_process(Elm_Genlist_Item *select_all_it, Eina_Bool checked, Eina_Bool update_items)
5948 if (!select_all_it || !select_all_it->wd) return;
5950 Eina_Bool old_check_state;
5951 Elm_Genlist_Item *it;
5952 Widget_Data *wd = select_all_it->wd;
5954 wd->select_all_check = checked;
5955 if (wd->select_all_check)
5956 edje_object_signal_emit(select_all_it->base.view, "elm,state,sel_check", "elm");
5958 edje_object_signal_emit(select_all_it->base.view, "elm,state,sel_uncheck", "elm");
5962 EINA_INLIST_FOREACH(wd->items, it)
5964 old_check_state = it->edit_select_check;
5965 if (wd->select_all_check) it->edit_select_check = EINA_TRUE;
5966 else it->edit_select_check = EINA_FALSE;
5968 // TODO : check this
5969 // if (old_check_state != it->edit_select_check && it->wd->ed && it->wd->ed->ec && it->wd->ed->ec->item_selected)
5970 // it->wd->ed->ec->item_selected(it->base.data, it, it->edit_select_check);
5974 if (wd->ed->ec->item_selected)
5975 wd->ed->ec->item_selected(select_all_it->base.data, select_all_it, wd->select_all_check);
5977 if (wd->calc_job) ecore_job_del(wd->calc_job);
5978 wd->calc_job = ecore_job_add(_calc_job, wd);
5982 _checkbox_item_select_process(Elm_Genlist_Item *it)
5984 Elm_Genlist_Item *tmp_it;
5985 Eina_Bool old_check_state;
5986 int check_cnt = 0, total_cnt = 0;
5989 _edit_item_checkbox_set(it, it->edit_select_check);
5990 _edit_subitems_checkbox_set(it);
5991 _edit_parent_items_checkbox_set(it);
5993 if (it->wd->ed) it->wd->ed->del_item = it;
5995 EINA_INLIST_FOREACH(it->wd->items, tmp_it)
5997 if (tmp_it->edit_select_check) check_cnt++;
6001 if (it->wd->select_all_item)
6003 old_check_state = it->wd->select_all_check;
6004 if (check_cnt == total_cnt) it->wd->select_all_check = EINA_TRUE;
6005 else it->wd->select_all_check = EINA_FALSE;
6007 if (check_cnt == total_cnt)
6009 it->wd->select_all_check = EINA_TRUE;
6010 edje_object_signal_emit(it->wd->select_all_item->base.view, "elm,state,sel_check", "elm");
6014 it->wd->select_all_check = EINA_FALSE;
6015 edje_object_signal_emit(it->wd->select_all_item->base.view, "elm,state,sel_uncheck", "elm");
6021 _checkbox_item_select_cb(void *data, Evas_Object *obj, const char *emission, const char *source)
6023 Elm_Genlist_Item *it = data;
6025 it->edit_select_check = !it->edit_select_check;
6026 _checkbox_item_select_process(it);
6030 _select_all_down(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
6032 Elm_Genlist_Item *select_all_it = data;
6033 Widget_Data *wd = select_all_it->wd;
6036 _select_all_down_process(select_all_it, !wd->select_all_check, EINA_TRUE);
6041 _effect_item_controls(Elm_Genlist_Item *it, int itx, int ity)
6043 if (it->wd->edit_mode == ELM_GENLIST_EDIT_MODE_NONE)
6045 evas_object_resize(it->edit_obj,it->w, it->h);
6046 evas_object_move(it->edit_obj, itx, ity);
6048 if (it->wd->select_all_check)
6049 it->edit_select_check = EINA_TRUE;
6052 if (it->edit_select_check)
6054 edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
6058 edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
6064 _effect_item_realize(Elm_Genlist_Item *it, Eina_Bool effect_on)
6066 if ((it->effect_item_realized) || (it->delete_me)) return;
6067 int itmode = 0, pad = 0;
6068 const char *pad_str;
6070 it->pad_left = it->pad_right = 0;
6072 if (it->itc->func.editmode_get)
6073 itmode = it->itc->func.editmode_get(it->base.data, it->base.widget, it->wd->edit_mode);
6074 itmode &= it->wd->edit_mode;
6076 if (itmode & ELM_GENLIST_EDIT_MODE_SELECTALL)
6077 itmode |= ELM_GENLIST_EDIT_MODE_SELECT;
6079 it->edit_obj = edje_object_add(evas_object_evas_get(it->base.widget));
6080 edje_object_scale_set(it->edit_obj, elm_widget_scale_get(it->base.widget) *
6081 _elm_config->scale);
6082 evas_object_smart_member_add(it->edit_obj, it->wd->pan_smart);
6083 elm_widget_sub_object_add(it->base.widget, it->edit_obj);
6085 if (it->flags & ELM_GENLIST_ITEM_SUBITEMS) strncpy(buf, "tree", sizeof(buf));
6086 else strncpy(buf, "item", sizeof(buf));
6087 if (it->wd->compress) strncat(buf, "_compress", sizeof(buf) - strlen(buf));
6089 strncat(buf, "/", sizeof(buf) - strlen(buf));
6091 if (it->wd->ed && it->wd->ed->ec->item_style && strcmp(it->wd->ed->ec->item_style, "default"))
6093 strncat(buf, it->wd->ed->ec->item_style, sizeof(buf) - strlen(buf));
6094 _elm_theme_object_set(it->base.widget, it->edit_obj, "genlist", buf, elm_widget_style_get(it->base.widget));
6098 _elm_theme_object_set(it->base.widget, it->edit_obj, "genlist", "item/edit_control", elm_widget_style_get(it->base.widget));
6101 pad_str = edje_object_data_get(it->edit_obj, "icon_width");
6102 if (pad_str) pad = atoi(pad_str);
6104 if ((itmode & ELM_GENLIST_EDIT_MODE_DELETE) || (itmode & ELM_GENLIST_EDIT_MODE_SELECT))
6106 if (effect_on) edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable_effect", "elm");
6107 else edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable", "elm");
6109 edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
6110 edje_object_signal_callback_del(it->edit_obj, "elm,action,item,select",
6111 "elm", _checkbox_item_select_cb);
6113 edje_object_signal_callback_add(it->edit_obj, "elm,action,item,select",
6114 "elm", _checkbox_item_select_cb, it);
6115 it->pad_left += pad * _elm_config->scale;
6119 edje_object_signal_emit(it->edit_obj, "elm,state,sel,disable", "elm");
6121 edje_object_signal_callback_del(it->edit_obj, "elm,action,item,select",
6122 "elm", _checkbox_item_select_cb);
6125 if (effect_on && itmode & ELM_GENLIST_EDIT_MODE_REORDER)
6127 edje_object_signal_emit(it->edit_obj, "elm,state,reorder_enable_effect", "elm");
6128 edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable", "elm");
6130 else if (itmode & ELM_GENLIST_EDIT_MODE_REORDER)
6131 edje_object_signal_emit(it->edit_obj, "elm,state,reorder_enable", "elm");
6133 if ((it->wd->edit_mode) || (!it->wd->edit_mode && it->renamed))
6135 if (it->itc->func.icon_get)
6140 it->icons = elm_widget_stringlist_get(edje_object_data_get(it->edit_obj, "icons"));
6141 EINA_LIST_FOREACH(it->icons, l, key)
6143 Evas_Object *ic = it->itc->func.icon_get
6144 (it->base.data, it->base.widget, l->data);
6148 it->edit_icon_objs = eina_list_append(it->edit_icon_objs, ic);
6149 edje_object_part_swallow(it->edit_obj, key, ic);
6150 evas_object_show(ic);
6151 elm_widget_sub_object_add(it->base.widget, ic);
6156 edje_object_part_swallow(it->edit_obj, "original_edc", it->base.view);
6157 _effect_item_controls(it,it->scrl_x, it->scrl_y);
6158 evas_object_show(it->edit_obj);
6160 it->effect_item_realized = EINA_TRUE;
6161 it->want_unrealize = EINA_FALSE;
6165 _effect_item_unrealize(Elm_Genlist_Item *it)
6169 if (!it->effect_item_realized) return;
6170 if (it->wd->reorder_it && it->wd->reorder_it == it) return;
6172 it->pad_left = it->pad_right = 0;
6173 edje_object_signal_emit(it->edit_obj, "elm,state,reorder_disable_effect", "elm");
6174 edje_object_signal_emit(it->edit_obj, "elm,state,sel,disable", "elm");
6175 edje_object_message_signal_process(it->edit_obj);
6176 edje_object_part_unswallow(it->edit_obj, it->base.view);
6177 evas_object_smart_member_add(it->base.view, it->wd->pan_smart);
6178 elm_widget_sub_object_add(it->base.widget, it->base.view);
6179 // evas_object_smart_callback_call(it->edit_obj, "unrealized", it);
6180 // _item_cache_add(it);
6181 evas_object_del(it->edit_obj);
6182 it->edit_obj = NULL;
6183 EINA_LIST_FREE(it->edit_icon_objs, icon)
6184 evas_object_del(icon);
6186 // edje_object_signal_emit(it->edit_obj, "elm,state,edit_end,disable", "elm");
6187 it->effect_item_realized = EINA_FALSE;
6191 elm_genlist_set_edit_mode(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *edit_class)
6193 fprintf(stderr, "=================> Caution!!! <========================\n");
6194 fprintf(stderr, "==> elm_genlist_set_edit_mode() is deprecated. <=======\n");
6195 fprintf(stderr, "==> Please use elm_genlist_edit_mode_set() instead. <==\n");
6196 fprintf(stderr, "=======================================================\n");
6198 elm_genlist_edit_mode_set(obj, emode, edit_class);
6202 * Get Genlist edit mode
6204 * @param obj The genlist object
6205 * @return The edit mode status
6206 * (EINA_TRUE = edit mode, EINA_FALSE = normal mode
6211 elm_genlist_edit_mode_get(const Evas_Object *obj)
6213 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
6214 Widget_Data *wd = elm_widget_data_get(obj);
6215 if (!wd) return EINA_FALSE;
6217 if (wd->edit_mode) return EINA_TRUE;
6218 else return EINA_FALSE;
6222 * Set Genlist edit mode
6224 * This sets Genlist edit mode.
6226 * @param obj The Genlist object
6227 * @param emode ELM_GENLIST_EDIT_MODE_{NONE & REORDER & INSERT & DELETE & SELECT & SELECT_ALL}
6228 * @param edit_class Genlist edit class (Elm_Genlist_Edit_Class structure)
6233 elm_genlist_edit_mode_set(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *edit_class)
6235 ELM_CHECK_WIDTYPE(obj, widtype);
6238 Eina_Bool done = EINA_FALSE;
6239 static Elm_Genlist_Item_Class itc;
6241 Elm_Genlist_Item *it;
6242 int check_cnt = 0, total_cnt = 0;
6244 Widget_Data *wd = elm_widget_data_get(obj);
6246 if (wd->edit_mode == emode) return;
6248 wd->edit_mode = emode;
6250 if (wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECTALL)
6251 wd->edit_mode |= ELM_GENLIST_EDIT_MODE_SELECT;
6254 if (wd->edit_mode == ELM_GENLIST_EDIT_MODE_NONE)
6256 EINA_INLIST_FOREACH(wd->blocks, itb)
6261 EINA_LIST_FOREACH(itb->items, l, it)
6263 if (it->flags != ELM_GENLIST_ITEM_GROUP && it->realized)
6265 it->pad_left = it->pad_right = 0;
6266 _effect_item_unrealize(it);
6276 EINA_INLIST_FOREACH(wd->items, it)
6278 it->edit_select_check = EINA_FALSE;
6280 if (wd->ed) free (wd->ed);
6282 wd->reorder_mode = EINA_FALSE;
6283 if (wd->select_all_item)
6285 wd->select_all_check = EINA_FALSE;
6286 edje_object_signal_callback_del(wd->select_all_item->base.view, "elm,action,select,click", "elm", _select_all_down);
6287 elm_widget_item_pre_notify_del(wd->select_all_item);
6288 _item_unrealize(wd->select_all_item);
6289 elm_widget_item_del(wd->select_all_item);
6291 wd->select_all_item = NULL;
6294 Evas_Object *editfield;
6295 EINA_LIST_FREE(wd->edit_field, editfield)
6296 evas_object_del(editfield);
6297 wd->edit_field = NULL;
6299 _item_cache_zero(wd);
6303 if (wd->edit_mode & ELM_GENLIST_EDIT_MODE_REORDER)
6304 wd->reorder_mode = EINA_TRUE;
6307 wd->ed = calloc(1, sizeof(Edit_Data));
6309 wd->ed->ec = edit_class;
6311 EINA_INLIST_FOREACH(wd->blocks, itb)
6316 EINA_LIST_FOREACH(itb->items, l, it)
6318 if (it->flags != ELM_GENLIST_ITEM_GROUP && it->realized)
6320 if(it->selected) _item_unselect(it);
6321 _effect_item_realize(it, EINA_TRUE);
6331 if (wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECTALL)
6333 if (edit_class->select_all_item_style && strcmp(edit_class->select_all_item_style, "default"))
6334 itc.item_style = edit_class->select_all_item_style;
6336 itc.item_style = "select_all";
6337 itc.func.label_get = NULL;
6338 itc.func.icon_get = NULL;
6339 itc.func.del = NULL;
6340 itc.func.editmode_get = NULL;
6341 wd->select_all_item = _item_new(wd, &itc, (void *)(edit_class->select_all_data), NULL, ELM_GENLIST_ITEM_NONE, NULL, NULL);
6344 if (!wd->select_all_item) return;
6346 _item_realize(wd->select_all_item, 0, 0);
6347 edje_object_signal_callback_add(wd->select_all_item->base.view, "elm,action,select,click", "elm", _select_all_down, wd->select_all_item);
6349 wd->select_all_item->rel = NULL;
6350 wd->select_all_item->block = NULL;
6352 EINA_INLIST_FOREACH(wd->items, it)
6354 if (it->edit_select_check) check_cnt++;
6357 if (check_cnt == total_cnt) wd->select_all_check = EINA_TRUE;
6358 else wd->select_all_check = EINA_FALSE;
6362 if (wd->calc_job) ecore_job_del(wd->calc_job);
6363 wd->calc_job = ecore_job_add(_calc_job, wd);
6367 * Delete selected items in genlist edit mode.
6369 * @param obj The genlist object
6374 elm_genlist_edit_selected_items_del(Evas_Object *obj)
6376 ELM_CHECK_WIDTYPE(obj, widtype);
6377 Widget_Data *wd = elm_widget_data_get(obj);
6379 if (!wd->blocks) return;
6380 Elm_Genlist_Item *it;
6381 Eina_List *edit_selected_list, *l;
6385 Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
6388 if (wd->edit_field) return;
6389 evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
6390 evas_output_viewport_get(evas_object_evas_get(wd->obj), &cvx, &cvy,&cvw, &cvh);
6391 EINA_INLIST_FOREACH(wd->blocks, itb)
6393 if (ELM_RECTS_INTERSECT(itb->x - wd->pan_x + ox,
6394 itb->y - wd->pan_y + oy,
6396 cvx, cvy, cvw, cvh))
6397 EINA_LIST_FOREACH(itb->items, l, it)
6399 it->old_scrl_y =itb->y + it->y - it->wd->pan_y + oy;
6402 edit_selected_list = elm_genlist_edit_selected_items_get(obj);
6403 cnt = eina_list_count(edit_selected_list);
6404 // printf("elm_genlist_edit_selected_items_del items selected counts = %d \n", cnt);
6406 wd->expand_item_gap = wd->expand_item_end = 0;
6407 EINA_LIST_FOREACH(edit_selected_list, l, it)
6409 if (it->flags != ELM_GENLIST_ITEM_GROUP)
6411 it->wd->expand_item_gap += it->h * -1;
6412 vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
6413 cvx, cvy, cvw, cvh));
6414 if (!it->wd->expand_item_end && vis ) it->wd->expand_item_end = it->old_scrl_y;
6415 it->wd->expand_item = elm_genlist_item_prev_get(it);
6416 elm_genlist_item_del(it);
6419 wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE;
6420 eina_list_free(edit_selected_list);
6422 evas_render(evas_object_evas_get(wd->obj));
6423 if (wd->calc_job) ecore_job_del(wd->calc_job);
6424 wd->calc_job = ecore_job_add(_calc_job, wd);
6428 elm_genlist_selected_items_del(Evas_Object *obj)
6430 fprintf(stderr, "=================> Caution!!! <========================\n");
6431 fprintf(stderr, "==> elm_genlist_selected_items_del() is deprecated. <=======\n");
6432 fprintf(stderr, "==> Please use elm_genlist_edit_selected_items_del() instead. <==\n");
6433 fprintf(stderr, "=======================================================\n");
6434 elm_genlist_edit_selected_items_del(obj);
6438 * Get a list of selected items in genlist
6440 * This returns a list of the selected items in the genlist. The list
6441 * contains Elm_Genlist_Item pointers. The list must be freed by the
6442 * caller when done with eina_list_free(). The item pointers in the list
6443 * are only vallid so long as those items are not deleted or the genlist is
6446 * @param obj The genlist object
6447 * @return The list of selected items, nor NULL if none are selected.
6452 elm_genlist_edit_selected_items_get(const Evas_Object *obj)
6454 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
6455 Widget_Data *wd = elm_widget_data_get(obj);
6456 Eina_List *list = NULL;
6457 Elm_Genlist_Item *it;
6458 if (!wd) return NULL;
6460 EINA_INLIST_FOREACH(wd->items, it)
6462 if (it->edit_select_check && it->flags != ELM_GENLIST_ITEM_GROUP) list = eina_list_append(list, it);
6468 // TODO : add comment
6470 elm_genlist_edit_item_selected_set(Elm_Genlist_Item *it,
6473 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it);
6474 Widget_Data *wd = elm_widget_data_get(it->base.widget);
6476 selected = !!selected;
6477 if (it->edit_select_check == selected) return;
6479 it->edit_select_check = selected;
6480 _checkbox_item_select_process(it);
6483 // TODO : add comment
6485 elm_genlist_edit_item_selected_get(const Elm_Genlist_Item *it)
6487 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
6488 return it->edit_select_check;
6492 * Set a given item's rename mode
6494 * This renames the item's label from genlist
6496 * @param it The item
6497 * @param emode set if emode is EINA_TRUE, unset if emode is EINA_FALSE
6502 elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, int emode)
6504 if (!it) return NULL;
6505 if (it->wd->queue_idler) return NULL;
6507 const Eina_List *l, *list, *l2;
6508 const char *label, *rename_swallow_part;
6510 Eina_Bool done = EINA_FALSE;
6511 int label_cnt = 0 , swallow_part_cnt = 0;
6514 Evas_Object *editfield;
6515 Evas_Object *entry = NULL;
6516 int edit_field_cnt = 0;
6518 EINA_INLIST_FOREACH(it->wd->blocks, itb)
6523 Elm_Genlist_Item *it;
6525 EINA_LIST_FOREACH(itb->items, l, it)
6529 it->renamed = EINA_FALSE;
6530 if (it->selected) _item_unselect(it);
6531 EINA_LIST_FOREACH(it->wd->edit_field, l2, editfield)
6533 entry = elm_editfield_entry_get(editfield);
6534 const char *text = elm_entry_entry_get(entry);
6535 if (it->itc->func.label_changed)
6536 it->itc->func.label_changed(it->base.data, it, text, edit_field_cnt++);
6538 EINA_LIST_FREE(it->wd->edit_field, editfield)
6539 evas_object_del(editfield);
6540 it->wd->edit_field = NULL;
6542 if (it->wd->edit_mode)
6544 edje_object_signal_emit(it->edit_obj, "elm,state,edit_end,enable", "elm");
6545 edje_object_signal_emit(it->edit_obj, "elm,state,rename,disable", "elm");
6546 if (it->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECT)
6547 edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
6550 if(!it->wd->edit_mode) _effect_item_unrealize(it);
6563 it->renamed = EINA_TRUE;
6564 if (it->wd->edit_mode == ELM_GENLIST_EDIT_MODE_NONE)
6566 it->wd->edit_mode = 0xF0;
6567 _effect_item_realize(it, EINA_TRUE);
6568 it->wd->edit_mode = ELM_GENLIST_EDIT_MODE_NONE;
6571 edje_object_signal_emit(it->edit_obj, "elm,state,rename,enable", "elm");
6572 EINA_LIST_FOREACH(it->labels, list, label)
6574 if (it->itc->func.label_get)
6576 swallow_part_cnt = 0;
6578 Eina_List *rename = elm_widget_stringlist_get(edje_object_data_get(it->edit_obj, "rename"));
6579 EINA_LIST_FOREACH(rename, l, rename_swallow_part)
6581 if (label_cnt == swallow_part_cnt)
6583 editfield = elm_editfield_add(it->base.widget);
6584 it->wd->edit_field = eina_list_append(it->wd->edit_field, editfield);
6586 elm_editfield_entry_single_line_set(editfield, EINA_TRUE);
6587 elm_editfield_eraser_set(editfield, EINA_TRUE);
6588 edje_object_part_swallow(it->edit_obj, rename_swallow_part, editfield);
6589 elm_widget_sub_object_add(it->edit_obj, editfield);
6591 evas_object_show(editfield);
6593 s = it->itc->func.label_get((void *)it->base.data, it->base.widget, list->data);
6596 entry = elm_editfield_entry_get(editfield);
6597 elm_entry_entry_set(entry,s);
6598 elm_entry_cursor_end_set(entry);
6602 elm_editfield_guide_text_set(editfield, "Text Input");
6609 elm_widget_focused_object_clear(elm_widget_focused_object_get(it->wd->obj));
6610 elm_widget_focus_set(editfield, EINA_TRUE);
6616 static void _sweep_finish(void *data, Evas_Object *o, const char *emission, const char *source)
6618 Elm_Genlist_Item *it = data;
6620 _delete_sweep_objs(it);
6624 _scr_hold_timer_cb(void *data)
6626 Elm_Genlist_Item *it = data;
6627 elm_smart_scroller_hold_set(it->wd->scr, EINA_FALSE);
6628 it->wd->scr_hold_timer = NULL;
6629 return ECORE_CALLBACK_CANCEL;
6633 _delete_sweep_objs(Elm_Genlist_Item *it)
6637 elm_widget_stringlist_free(it->sweep_labels);
6638 it->sweep_labels = NULL;
6639 elm_widget_stringlist_free(it->sweep_icons);
6640 it->sweep_icons = NULL;
6641 EINA_LIST_FREE(it->sweep_icon_objs, ic)
6642 evas_object_del(ic);
6646 _create_sweep_objs(Elm_Genlist_Item *it)
6652 if (it->itc->func.label_get)
6655 elm_widget_stringlist_get(edje_object_data_get(it->base.view,
6657 EINA_LIST_FOREACH(it->sweep_labels, l, key)
6659 char *s = it->itc->func.label_get
6660 ((void *)it->base.data, it->base.widget, l->data);
6664 edje_object_part_text_set(it->base.view, l->data, s);
6669 if (it->itc->func.icon_get)
6672 elm_widget_stringlist_get(edje_object_data_get(it->base.view,
6674 EINA_LIST_FOREACH(it->sweep_icons, l, key)
6676 ic = it->itc->func.icon_get
6677 ((void *)it->base.data, it->base.widget, l->data);
6681 it->sweep_icon_objs = eina_list_append(it->sweep_icon_objs, ic);
6682 edje_object_part_swallow(it->base.view, key, ic);
6683 evas_object_show(ic);
6684 elm_widget_sub_object_add(it->base.widget, ic);
6691 _item_slide(Elm_Genlist_Item *it, Eina_Bool slide_to_right)
6694 Elm_Genlist_Item *it2;
6695 const char *allow_slide;
6697 allow_slide = edje_object_data_get(it->base.view, "allow_slide");
6698 if ((!allow_slide) || (atoi(allow_slide) != 1))
6703 if (it->sweeped) return;
6704 if (it->wd->scr_hold_timer)
6706 ecore_timer_del(it->wd->scr_hold_timer);
6707 it->wd->scr_hold_timer = NULL;
6709 elm_smart_scroller_hold_set(it->wd->scr, EINA_TRUE);
6710 it->wd->scr_hold_timer = ecore_timer_add(0.1, _scr_hold_timer_cb, it);
6712 _delete_sweep_objs(it);
6713 _create_sweep_objs(it);
6714 edje_object_signal_emit(it->base.view, "elm,state,slide,right", "elm");
6715 it->wd->sweeped_items = eina_list_append(it->wd->sweeped_items, it);
6716 it->wassweeped = EINA_TRUE;
6717 it->sweeped = EINA_TRUE;
6719 EINA_LIST_FOREACH(it->wd->sweeped_items, l, it2)
6723 it2->sweeped = EINA_FALSE;
6724 edje_object_signal_emit(it2->base.view, "elm,state,slide,left", "elm");
6725 edje_object_signal_callback_add(it2->base.view, "elm,action,sweep,left,finish", "elm", _sweep_finish, it2);
6726 it2->wd->sweeped_items = eina_list_remove(it2->wd->sweeped_items, it2);
6732 if (!it->sweeped) return;
6733 edje_object_signal_emit(it->base.view, "elm,state,slide,left", "elm");
6734 edje_object_signal_callback_add(it->base.view, "elm,action,sweep,left,finish", "elm", _sweep_finish, it);
6735 it->wd->sweeped_items = eina_list_remove(it->wd->sweeped_items, it);
6736 it->sweeped = EINA_FALSE;
6741 _item_auto_scroll(void *data)
6743 Widget_Data *wd = data;
6746 if ((wd->expand_item) && (!wd->auto_scrolled))
6748 Elm_Genlist_Item *it;
6750 Evas_Coord ox, oy, ow, oh;
6751 evas_object_geometry_get(wd->obj, &ox, &oy, &ow, &oh);
6753 wd->auto_scrolled = EINA_TRUE;
6754 if (wd->expand_item->scrl_y > (oh + oy) / 2)
6756 EINA_LIST_FOREACH(wd->expand_item->items, l, it)
6758 elm_genlist_item_bring_in(it);