1 #include <Elementary.h>
3 #include "els_scroller.h"
7 typedef struct _Widget_Data Widget_Data;
8 typedef struct _Elm_List_Item Elm_List_Item;
12 Evas_Object *scr, *box, *self;
13 Eina_List *items, *selected, *to_delete;
14 Elm_Object_Item *last_selected_item;
17 Evas_Coord minw[2], minh[2];
18 Eina_Bool scr_minw : 1;
19 Eina_Bool scr_minh : 1;
24 } history[SWIPE_MOVES];
26 Eina_Bool fix_pending : 1;
27 Eina_Bool on_hold : 1;
29 Eina_Bool always_select : 1;
30 Eina_Bool longpressed : 1;
31 Eina_Bool wasselected : 1;
40 Evas_Object *icon, *end;
42 Ecore_Timer *long_timer;
43 Ecore_Timer *swipe_timer;
44 Eina_Bool deleted : 1;
46 Eina_Bool is_even : 1;
47 Eina_Bool is_separator : 1;
49 Eina_Bool selected : 1;
50 Eina_Bool highlighted : 1;
51 Eina_Bool dummy_icon : 1;
52 Eina_Bool dummy_end : 1;
55 static const char *widtype = NULL;
56 static void _del_hook(Evas_Object *obj);
57 static void _mirrored_set(Evas_Object *obj, Eina_Bool rtl);
58 static void _theme_hook(Evas_Object *obj);
59 static void _sizing_eval(Evas_Object *obj);
60 static void _disable_hook(Evas_Object *obj);
61 static void _on_focus_hook(void *data, Evas_Object *obj);
62 static void _signal_emit_hook(Evas_Object *obj, const char *emission, const char *source);
63 static void _changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);
64 static void _sub_del(void *data, Evas_Object *obj, void *event_info);
65 static void _fix_items(Evas_Object *obj);
66 static void _mouse_down(void *data, Evas *evas, Evas_Object *obj, void *event_info);
67 static void _mouse_up(void *data, Evas *evas, Evas_Object *obj, void *event_info);
68 static void _mouse_move(void *data, Evas *evas, Evas_Object *obj, void *event_info);
69 static void _edge_left(void *data, Evas_Object *scr, void *event_info);
70 static void _edge_right(void *data, Evas_Object *scr, void *event_info);
71 static void _edge_top(void *data, Evas_Object *scr, void *event_info);
72 static void _edge_bottom(void *data, Evas_Object *scr, void *event_info);
73 static Eina_Bool _item_multi_select_up(Widget_Data *wd);
74 static Eina_Bool _item_multi_select_down(Widget_Data *wd);
75 static Eina_Bool _item_single_select_up(Widget_Data *wd);
76 static Eina_Bool _item_single_select_down(Widget_Data *wd);
77 static Eina_Bool _event_hook(Evas_Object *obj, Evas_Object *src,
78 Evas_Callback_Type type, void *event_info);
79 static Eina_Bool _deselect_all_items(Widget_Data *wd);
81 static const char SIG_ACTIVATED[] = "activated";
82 static const char SIG_CLICKED_DOUBLE[] = "clicked,double";
83 static const char SIG_SELECTED[] = "selected";
84 static const char SIG_UNSELECTED[] = "unselected";
85 static const char SIG_LONGPRESSED[] = "longpressed";
86 static const char SIG_EDGE_TOP[] = "edge,top";
87 static const char SIG_EDGE_BOTTOM[] = "edge,bottom";
88 static const char SIG_EDGE_LEFT[] = "edge,left";
89 static const char SIG_EDGE_RIGHT[] = "edge,right";
91 static const Evas_Smart_Cb_Description _signals[] = {
93 {SIG_CLICKED_DOUBLE, ""},
96 {SIG_LONGPRESSED, ""},
98 {SIG_EDGE_BOTTOM, ""},
100 {SIG_EDGE_RIGHT, ""},
104 #define ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, ...) \
105 ELM_OBJ_ITEM_CHECK_OR_RETURN(it, __VA_ARGS__); \
106 if (((Elm_List_Item *) it)->deleted) \
108 ERR("ERROR: "#it" has been DELETED.\n"); \
109 return __VA_ARGS__; \
113 _elm_list_item_free(Elm_List_Item *it)
115 evas_object_event_callback_del_full
116 (VIEW(it), EVAS_CALLBACK_MOUSE_DOWN, _mouse_down, it);
117 evas_object_event_callback_del_full
118 (VIEW(it), EVAS_CALLBACK_MOUSE_UP, _mouse_up, it);
119 evas_object_event_callback_del_full
120 (VIEW(it), EVAS_CALLBACK_MOUSE_MOVE, _mouse_move, it);
123 evas_object_event_callback_del_full
124 (it->icon, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
125 _changed_size_hints, WIDGET(it));
128 evas_object_event_callback_del_full
129 (it->end, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
130 _changed_size_hints, WIDGET(it));
132 eina_stringshare_del(it->label);
134 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
135 if (it->long_timer) ecore_timer_del(it->long_timer);
136 if (it->icon) evas_object_del(it->icon);
137 if (it->end) evas_object_del(it->end);
141 _event_hook(Evas_Object *obj, Evas_Object *src __UNUSED__, Evas_Callback_Type type, void *event_info)
143 if (type != EVAS_CALLBACK_KEY_DOWN) return EINA_FALSE;
144 Evas_Event_Key_Down *ev = event_info;
145 Widget_Data *wd = elm_widget_data_get(obj);
146 if (!wd) return EINA_FALSE;
147 if (!wd->items) return EINA_FALSE;
148 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return EINA_FALSE;
149 if (elm_widget_disabled_get(obj)) return EINA_FALSE;
151 Elm_List_Item *it = NULL;
154 Evas_Coord step_x = 0;
155 Evas_Coord step_y = 0;
158 Evas_Coord page_x = 0;
159 Evas_Coord page_y = 0;
161 elm_smart_scroller_child_pos_get(wd->scr, &x, &y);
162 elm_smart_scroller_step_size_get(wd->scr, &step_x, &step_y);
163 elm_smart_scroller_page_size_get(wd->scr, &page_x, &page_y);
164 elm_smart_scroller_child_viewport_size_get(wd->scr, &v_w, &v_h);
166 /* TODO: fix logic for horizontal mode */
167 if ((!strcmp(ev->keyname, "Left")) ||
168 (!strcmp(ev->keyname, "KP_Left")))
171 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
172 (_item_multi_select_up(wd)))
173 || (_item_single_select_up(wd))))
175 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
181 else if ((!strcmp(ev->keyname, "Right")) ||
182 (!strcmp(ev->keyname, "KP_Right")))
185 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
186 (_item_multi_select_down(wd)))
187 || (_item_single_select_down(wd))))
189 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
195 else if ((!strcmp(ev->keyname, "Up")) ||
196 (!strcmp(ev->keyname, "KP_Up")))
199 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
200 (_item_multi_select_up(wd)))
201 || (_item_single_select_up(wd))))
203 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
209 else if ((!strcmp(ev->keyname, "Down")) ||
210 (!strcmp(ev->keyname, "KP_Down")))
213 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
214 (_item_multi_select_down(wd)))
215 || (_item_single_select_down(wd))))
217 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
223 else if ((!strcmp(ev->keyname, "Home")) ||
224 (!strcmp(ev->keyname, "KP_Home")))
226 it = eina_list_data_get(wd->items);
227 elm_list_item_bring_in((Elm_Object_Item *) it);
228 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
231 else if ((!strcmp(ev->keyname, "End")) ||
232 (!strcmp(ev->keyname, "KP_End")))
234 it = eina_list_data_get(eina_list_last(wd->items));
235 elm_list_item_bring_in((Elm_Object_Item *) it);
236 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
239 else if ((!strcmp(ev->keyname, "Prior")) ||
240 (!strcmp(ev->keyname, "KP_Prior")))
245 x -= -(page_x * v_w) / 100;
252 y -= -(page_y * v_h) / 100;
257 else if ((!strcmp(ev->keyname, "Next")) ||
258 (!strcmp(ev->keyname, "KP_Next")))
263 x += -(page_x * v_w) / 100;
270 y += -(page_y * v_h) / 100;
275 else if (((!strcmp(ev->keyname, "Return")) ||
276 (!strcmp(ev->keyname, "KP_Enter")) ||
277 (!strcmp(ev->keyname, "space")))
278 && (!wd->multi) && (wd->selected))
280 it = (Elm_List_Item *) elm_list_selected_item_get(obj);
281 evas_object_smart_callback_call(WIDGET(it), SIG_ACTIVATED, it);
283 else if (!strcmp(ev->keyname, "Escape"))
285 if (!_deselect_all_items(wd)) return EINA_FALSE;
286 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
289 else return EINA_FALSE;
291 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
292 elm_smart_scroller_child_pos_set(wd->scr, x, y);
297 _translate_hook(Evas_Object *obj)
299 evas_object_smart_callback_call(obj, "language,changed", NULL);
303 _deselect_all_items(Widget_Data *wd)
305 if (!wd->selected) return EINA_FALSE;
307 elm_list_item_selected_set((Elm_Object_Item *) wd->selected->data,
314 _item_multi_select_up(Widget_Data *wd)
316 if (!wd->selected) return EINA_FALSE;
317 if (!wd->multi) return EINA_FALSE;
319 Elm_Object_Item *prev = elm_list_item_prev(wd->last_selected_item);
320 if (!prev) return EINA_TRUE;
322 if (elm_list_item_selected_get(prev))
324 elm_list_item_selected_set(wd->last_selected_item, EINA_FALSE);
325 wd->last_selected_item = prev;
326 elm_list_item_show(wd->last_selected_item);
330 elm_list_item_selected_set(prev, EINA_TRUE);
331 elm_list_item_show(prev);
337 _item_multi_select_down(Widget_Data *wd)
339 if (!wd->selected) return EINA_FALSE;
340 if (!wd->multi) return EINA_FALSE;
342 Elm_Object_Item *next = elm_list_item_next(wd->last_selected_item);
343 if (!next) return EINA_TRUE;
345 if (elm_list_item_selected_get(next))
347 elm_list_item_selected_set(wd->last_selected_item, EINA_FALSE);
348 wd->last_selected_item = next;
349 elm_list_item_show(wd->last_selected_item);
353 elm_list_item_selected_set(next, EINA_TRUE);
354 elm_list_item_show(next);
360 _item_single_select_up(Widget_Data *wd)
362 Elm_Object_Item *prev;
364 if (!wd->selected) prev = eina_list_data_get(eina_list_last(wd->items));
365 else prev = elm_list_item_prev(wd->last_selected_item);
366 if (!prev) return EINA_FALSE;
368 _deselect_all_items(wd);
370 elm_list_item_selected_set(prev, EINA_TRUE);
371 elm_list_item_show(prev);
376 _item_single_select_down(Widget_Data *wd)
378 Elm_Object_Item *next;
380 if (!wd->selected) next = eina_list_data_get(wd->items);
381 else next = elm_list_item_next(wd->last_selected_item);
382 if (!next) return EINA_FALSE;
384 _deselect_all_items(wd);
386 elm_list_item_selected_set(next, EINA_TRUE);
387 elm_list_item_show(next);
392 _elm_list_process_deletions(Widget_Data *wd)
396 wd->walking++; // avoid nested deletion and also _sub_del() fix_items
398 EINA_LIST_FREE(wd->to_delete, it)
400 wd->items = eina_list_remove_list(wd->items, it->node);
401 _elm_list_item_free(it);
402 elm_widget_item_free(it);
409 _elm_list_walk(Widget_Data *wd)
413 ERR("ERROR: walking was negative. fixed!\n");
420 _elm_list_unwalk(Widget_Data *wd)
425 ERR("ERROR: walking became negative. fixed!\n");
433 _elm_list_process_deletions(wd);
437 wd->fix_pending = EINA_FALSE;
438 _fix_items(wd->self);
439 _sizing_eval(wd->self);
444 _del_pre_hook(Evas_Object *obj)
446 Widget_Data *wd = elm_widget_data_get(obj);
449 evas_object_event_callback_del(wd->scr,
450 EVAS_CALLBACK_CHANGED_SIZE_HINTS,
451 _changed_size_hints);
452 evas_object_event_callback_del(wd->box,
453 EVAS_CALLBACK_CHANGED_SIZE_HINTS,
454 _changed_size_hints);
458 _del_hook(Evas_Object *obj)
460 Widget_Data *wd = elm_widget_data_get(obj);
466 ERR("ERROR: list deleted while walking.\n");
469 EINA_LIST_FOREACH(wd->items, n, it) elm_widget_item_pre_notify_del(it);
470 _elm_list_unwalk(wd);
472 ERR("ERROR: leaking nodes!\n");
474 EINA_LIST_FREE(wd->items, it)
476 _elm_list_item_free(it);
477 elm_widget_item_free(it);
479 eina_list_free(wd->selected);
484 _show_region_hook(void *data, Evas_Object *obj)
486 Widget_Data *wd = elm_widget_data_get(data);
487 Evas_Coord x, y, w, h;
489 elm_widget_show_region_get(obj, &x, &y, &w, &h);
490 elm_smart_scroller_child_region_set(wd->scr, x, y, w, h);
494 _disable_hook(Evas_Object *obj)
496 Widget_Data *wd = elm_widget_data_get(obj);
498 if (elm_widget_disabled_get(obj))
500 _signal_emit_hook(obj, "elm,state,disabled", "elm");
501 elm_widget_scroll_freeze_push(obj);
502 elm_widget_scroll_hold_push(obj);
503 /* FIXME: if we get to have a way to only un-highlight items
504 * in the future, keeping them selected... */
505 _deselect_all_items(wd);
509 _signal_emit_hook(obj, "elm,state,enabled", "elm");
510 elm_widget_scroll_freeze_pop(obj);
511 elm_widget_scroll_hold_pop(obj);
516 _sizing_eval(Evas_Object *obj)
519 Widget_Data *wd = elm_widget_data_get(obj);
521 Evas_Coord vw, vh, minw, minh, maxw, maxh, w, h, vmw, vmh;
524 evas_object_size_hint_min_get(wd->box, &minw, &minh);
525 evas_object_size_hint_max_get(wd->box, &maxw, &maxh);
526 evas_object_size_hint_weight_get(wd->box, &xw, &yw);
527 if (!wd->scr) return;
528 elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
531 if ((minw > 0) && (vw < minw)) vw = minw;
532 else if ((maxw > 0) && (vw > maxw)) vw = maxw;
534 else if (minw > 0) vw = minw;
537 if ((minh > 0) && (vh < minh)) vh = minh;
538 else if ((maxh > 0) && (vh > maxh)) vh = maxh;
540 else if (minh > 0) vh = minh;
541 evas_object_resize(wd->box, vw, vh);
544 edje_object_size_min_calc(elm_smart_scroller_edje_object_get(wd->scr),
546 if (wd->scr_minw) w = vmw + minw;
547 if (wd->scr_minh) h = vmh + minh;
549 evas_object_size_hint_max_get(obj, &maxw, &maxh);
550 if ((maxw > 0) && (w > maxw))
552 if ((maxh > 0) && (h > maxh))
555 evas_object_size_hint_min_set(obj, w, h);
559 _signal_emit_hook(Evas_Object *obj, const char *emission, const char *source)
561 Widget_Data *wd = elm_widget_data_get(obj);
562 edje_object_signal_emit(elm_smart_scroller_edje_object_get(wd->scr),
567 _signal_callback_add_hook(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func_cb, void *data)
569 Widget_Data *wd = elm_widget_data_get(obj);
570 edje_object_signal_callback_add(elm_smart_scroller_edje_object_get(wd->scr),
571 emission, source, func_cb, data);
575 _signal_callback_del_hook(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func_cb, void *data)
577 Widget_Data *wd = elm_widget_data_get(obj);
578 edje_object_signal_callback_del_full(
579 elm_smart_scroller_edje_object_get(wd->scr),
580 emission, source, func_cb, data);
584 _mirrored_set(Evas_Object *obj, Eina_Bool rtl)
586 Widget_Data *wd = elm_widget_data_get(obj);
592 elm_smart_scroller_mirrored_set(wd->scr, rtl);
594 EINA_LIST_FOREACH(wd->items, n, it)
595 edje_object_mirrored_set(VIEW(it), rtl);
599 _theme_hook(Evas_Object *obj)
601 Widget_Data *wd = elm_widget_data_get(obj);
606 _elm_widget_mirrored_reload(obj);
607 _mirrored_set(obj, elm_widget_mirrored_get(obj));
614 elm_smart_scroller_object_theme_set(obj, wd->scr, "list", "base",
615 elm_widget_style_get(obj));
616 // edje_object_scale_set(wd->scr, elm_widget_scale_get(obj) * _elm_config->scale);
617 edj = elm_smart_scroller_edje_object_get(wd->scr);
618 str = edje_object_data_get(edj, "focus_highlight");
619 if ((str) && (!strcmp(str, "on")))
620 elm_widget_highlight_in_theme_set(obj, EINA_TRUE);
622 elm_widget_highlight_in_theme_set(obj, EINA_FALSE);
623 elm_object_style_set(wd->scr, elm_widget_style_get(obj));
625 EINA_LIST_FOREACH(wd->items, n, it)
627 edje_object_scale_set(VIEW(it), elm_widget_scale_get(obj) * _elm_config->scale);
635 _on_focus_hook(void *data __UNUSED__, Evas_Object *obj)
637 Widget_Data *wd = elm_widget_data_get(obj);
639 if (elm_widget_focus_get(obj))
641 edje_object_signal_emit(wd->self, "elm,action,focus", "elm");
642 evas_object_focus_set(wd->self, EINA_TRUE);
644 if ((wd->selected) && (!wd->last_selected_item))
645 wd->last_selected_item = eina_list_data_get(wd->selected);
649 edje_object_signal_emit(wd->self, "elm,action,unfocus", "elm");
650 evas_object_focus_set(wd->self, EINA_FALSE);
655 _changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
657 Widget_Data *wd = elm_widget_data_get(data);
664 _sub_del(void *data __UNUSED__, Evas_Object *obj, void *event_info)
666 Widget_Data *wd = elm_widget_data_get(obj);
667 Evas_Object *sub = event_info;
673 if ((sub == wd->box) || (sub == wd->scr)) return;
675 EINA_LIST_FOREACH(wd->items, l, it)
677 if ((sub == it->icon) || (sub == it->end))
679 if (it->icon == sub) it->icon = NULL;
680 if (it->end == sub) it->end = NULL;
681 evas_object_event_callback_del_full
682 (sub, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _changed_size_hints,
690 wd->fix_pending = EINA_TRUE;
697 _item_highlight(Elm_List_Item *it)
699 Evas_Object *obj = WIDGET(it);
700 Widget_Data *wd = elm_widget_data_get(obj);
701 const char *selectraise;
704 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
705 if ((it->highlighted) || (it->base.disabled)) return;
707 evas_object_ref(obj);
710 edje_object_signal_emit(VIEW(it), "elm,state,selected", "elm");
711 selectraise = edje_object_data_get(VIEW(it), "selectraise");
712 if ((selectraise) && (!strcmp(selectraise, "on")))
713 evas_object_raise(VIEW(it));
714 it->highlighted = EINA_TRUE;
716 _elm_list_unwalk(wd);
717 evas_object_unref(obj);
721 _item_select(Elm_List_Item *it)
723 Evas_Object *obj = WIDGET(it);
724 Widget_Data *wd = elm_widget_data_get(obj);
727 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
728 if (it->base.disabled) return;
731 if (wd->always_select) goto call;
734 it->selected = EINA_TRUE;
735 wd->selected = eina_list_append(wd->selected, it);
738 evas_object_ref(obj);
741 if (it->func) it->func((void *)it->base.data, WIDGET(it), it);
742 evas_object_smart_callback_call(obj, SIG_SELECTED, it);
743 it->wd->last_selected_item = (Elm_Object_Item *) it;
745 _elm_list_unwalk(wd);
746 evas_object_unref(obj);
750 _item_unselect(Elm_List_Item *it)
752 Evas_Object *obj = WIDGET(it);
753 Widget_Data *wd = elm_widget_data_get(obj);
754 const char *stacking, *selectraise;
757 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
758 if (!it->highlighted) return;
760 evas_object_ref(obj);
763 edje_object_signal_emit(VIEW(it), "elm,state,unselected", "elm");
764 stacking = edje_object_data_get(VIEW(it), "stacking");
765 selectraise = edje_object_data_get(VIEW(it), "selectraise");
766 if ((selectraise) && (!strcmp(selectraise, "on")))
768 if ((stacking) && (!strcmp(stacking, "below")))
769 evas_object_lower(VIEW(it));
771 it->highlighted = EINA_FALSE;
774 it->selected = EINA_FALSE;
775 wd->selected = eina_list_remove(wd->selected, it);
776 evas_object_smart_callback_call(WIDGET(it), SIG_UNSELECTED, it);
779 _elm_list_unwalk(wd);
780 evas_object_unref(obj);
784 _swipe_cancel(void *data)
786 Elm_List_Item *it = data;
787 Widget_Data *wd = elm_widget_data_get(WIDGET(it));
789 if (!wd) return ECORE_CALLBACK_CANCEL;
790 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, ECORE_CALLBACK_CANCEL);
791 wd->swipe = EINA_FALSE;
793 return ECORE_CALLBACK_RENEW;
797 _mouse_move(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
799 Elm_List_Item *it = data;
800 Evas_Object *obj2 = WIDGET(it);
801 Widget_Data *wd = elm_widget_data_get(obj2);
802 Evas_Event_Mouse_Move *ev = event_info;
805 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
807 evas_object_ref(obj2);
810 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
814 wd->on_hold = EINA_TRUE;
817 ecore_timer_del(it->long_timer);
818 it->long_timer = NULL;
820 if (!wd->wasselected)
823 if (wd->movements == SWIPE_MOVES) wd->swipe = EINA_TRUE;
826 wd->history[wd->movements].x = ev->cur.canvas.x;
827 wd->history[wd->movements].y = ev->cur.canvas.y;
828 if (abs((wd->history[wd->movements].x - wd->history[0].x)) > 40)
829 wd->swipe = EINA_TRUE;
835 _elm_list_unwalk(wd);
836 evas_object_unref(obj2);
840 _edge_left(void *data, Evas_Object *scr __UNUSED__, void *event_info __UNUSED__)
842 Evas_Object *obj = data;
843 evas_object_smart_callback_call(obj, SIG_EDGE_LEFT, NULL);
847 _edge_right(void *data, Evas_Object *scr __UNUSED__, void *event_info __UNUSED__)
849 Evas_Object *obj = data;
850 evas_object_smart_callback_call(obj, SIG_EDGE_RIGHT, NULL);
854 _edge_top(void *data, Evas_Object *scr __UNUSED__, void *event_info __UNUSED__)
856 Evas_Object *obj = data;
857 evas_object_smart_callback_call(obj, SIG_EDGE_TOP, NULL);
861 _edge_bottom(void *data, Evas_Object *scr __UNUSED__, void *event_info __UNUSED__)
863 Evas_Object *obj = data;
864 evas_object_smart_callback_call(obj, SIG_EDGE_BOTTOM, NULL);
868 _long_press(void *data)
870 Elm_List_Item *it = data;
871 Evas_Object *obj = WIDGET(it);
872 Widget_Data *wd = elm_widget_data_get(obj);
876 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, ECORE_CALLBACK_CANCEL);
877 it->long_timer = NULL;
878 if (it->base.disabled) goto end;
880 wd->longpressed = EINA_TRUE;
881 evas_object_smart_callback_call(WIDGET(it), SIG_LONGPRESSED, it);
884 return ECORE_CALLBACK_CANCEL;
888 _swipe(Elm_List_Item *it)
891 Widget_Data *wd = elm_widget_data_get(WIDGET(it));
893 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
895 wd->swipe = EINA_FALSE;
896 for (i = 0; i < wd->movements; i++)
898 sum += wd->history[i].x;
899 if (abs(wd->history[0].y - wd->history[i].y) > 10) return;
902 sum /= wd->movements;
903 if (abs(sum - wd->history[0].x) <= 10) return;
904 evas_object_smart_callback_call(WIDGET(it), "swipe", it);
908 _mouse_down(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
910 Elm_List_Item *it = data;
911 Evas_Object *obj2 = WIDGET(it);
912 Widget_Data *wd = elm_widget_data_get(obj2);
913 Evas_Event_Mouse_Down *ev = event_info;
916 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
917 if (ev->button != 1) return;
918 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) wd->on_hold = EINA_TRUE;
919 else wd->on_hold = EINA_FALSE;
920 if (wd->on_hold) return;
921 wd->wasselected = it->selected;
923 evas_object_ref(obj2);
927 wd->longpressed = EINA_FALSE;
928 if (it->long_timer) ecore_timer_del(it->long_timer);
929 it->long_timer = ecore_timer_add(_elm_config->longpress_timeout, _long_press, it);
930 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
931 it->swipe_timer = ecore_timer_add(0.4, _swipe_cancel, it);
932 /* Always call the callbacks last - the user may delete our context! */
933 if (ev->flags & EVAS_BUTTON_DOUBLE_CLICK)
935 evas_object_smart_callback_call(WIDGET(it), SIG_CLICKED_DOUBLE, it);
936 evas_object_smart_callback_call(WIDGET(it), SIG_ACTIVATED, it);
938 wd->swipe = EINA_FALSE;
941 _elm_list_unwalk(wd);
942 evas_object_unref(obj2);
946 _mouse_up(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
948 Elm_List_Item *it = data;
949 Evas_Object *obj2 = WIDGET(it);
950 Widget_Data *wd = elm_widget_data_get(obj2);
951 Evas_Event_Mouse_Up *ev = event_info;
954 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
955 if (ev->button != 1) return;
956 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) wd->on_hold = EINA_TRUE;
957 else wd->on_hold = EINA_FALSE;
958 wd->longpressed = EINA_FALSE;
961 ecore_timer_del(it->long_timer);
962 it->long_timer = NULL;
966 ecore_timer_del(it->swipe_timer);
967 it->swipe_timer = NULL;
971 if (wd->swipe) _swipe(data);
972 wd->on_hold = EINA_FALSE;
977 if (!wd->wasselected) _item_unselect(it);
982 if (it->base.disabled)
984 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
986 evas_object_ref(obj2);
996 else _item_unselect(it);
1002 while (wd->selected)
1003 _item_unselect(wd->selected->data);
1004 _item_highlight(it);
1009 const Eina_List *l, *l_next;
1012 EINA_LIST_FOREACH_SAFE(wd->selected, l, l_next, it2)
1013 if (it2 != it) _item_unselect(it2);
1014 _item_highlight(it);
1019 _elm_list_unwalk(wd);
1020 evas_object_unref(obj2);
1024 _item_disable(Elm_Object_Item *it)
1026 Elm_List_Item *item = (Elm_List_Item *) it;
1027 if (item->base.disabled)
1028 edje_object_signal_emit(VIEW(item), "elm,state,disabled", "elm");
1030 edje_object_signal_emit(VIEW(item), "elm,state,enabled", "elm");
1034 _item_content_set(Elm_Object_Item *it, const char *part, Evas_Object *content)
1036 Elm_List_Item *item = (Elm_List_Item *) it;
1037 Evas_Object **icon_p = NULL;
1038 Eina_Bool dummy = EINA_FALSE;
1040 if ((!part) || (!strcmp(part, "start")))
1042 icon_p = &(item->icon);
1043 dummy = item->dummy_icon;
1044 if (!content) item->dummy_icon = EINA_FALSE;
1045 else item->dummy_icon = EINA_TRUE;
1047 else if (!strcmp(part, "end"))
1049 icon_p = &(item->end);
1050 dummy = item->dummy_end;
1051 if (!content) item->dummy_end = EINA_FALSE;
1052 else item->dummy_end = EINA_TRUE;
1057 if (content == *icon_p) return;
1058 if ((dummy) && (!content)) return;
1059 if (dummy) evas_object_del(*icon_p);
1062 content = evas_object_rectangle_add(evas_object_evas_get(WIDGET(item)));
1063 evas_object_color_set(content, 0, 0, 0, 0);
1067 evas_object_del(*icon_p);
1072 edje_object_part_swallow(VIEW(item), "elm.swallow.icon", content);
1075 static Evas_Object *
1076 _item_content_get(const Elm_Object_Item *it, const char *part)
1078 Elm_List_Item *item = (Elm_List_Item *) it;
1080 if ((!part) || (!strcmp(part, "start")))
1082 if (item->dummy_icon) return NULL;
1085 else if (!strcmp(part, "end"))
1087 if (item->dummy_end) return NULL;
1093 static Evas_Object *
1094 _item_content_unset(const Elm_Object_Item *it, const char *part)
1096 Elm_List_Item *item = (Elm_List_Item *) it;
1098 if ((!part) || (!strcmp(part, "start")))
1100 Evas_Object *obj = item->icon;
1101 _item_content_set((Elm_Object_Item *) it, part, NULL);
1104 else if (!strcmp(part, "end"))
1106 Evas_Object *obj = item->end;
1107 _item_content_set((Elm_Object_Item *) it, part, NULL);
1114 _item_text_set(Elm_Object_Item *it, const char *part, const char *text)
1116 Elm_List_Item *list_it = (Elm_List_Item *) it;
1117 if (part && strcmp(part, "default")) return;
1118 if (!eina_stringshare_replace(&list_it->label, text)) return;
1120 edje_object_part_text_set(VIEW(list_it), "elm.text", text);
1124 _item_text_get(const Elm_Object_Item *it, const char *part)
1126 if (part && strcmp(part, "default")) return NULL;
1127 return ((Elm_List_Item *) it)->label;
1131 _item_del_pre_hook(Elm_Object_Item *it)
1133 Evas_Object *obj = WIDGET(it);
1134 Elm_List_Item *item = (Elm_List_Item *) it;
1135 Widget_Data *wd = elm_widget_data_get(obj);
1136 if (!wd) return EINA_FALSE;
1138 if (item->selected) _item_unselect(item);
1140 if (wd->walking > 0)
1142 if (item->deleted) return EINA_FALSE;
1143 item->deleted = EINA_TRUE;
1144 wd->to_delete = eina_list_append(wd->to_delete, item);
1148 wd->items = eina_list_remove_list(wd->items, item->node);
1150 evas_object_ref(obj);
1153 _elm_list_item_free(item);
1155 _elm_list_unwalk(wd);
1156 evas_object_unref(obj);
1161 static Elm_List_Item *
1162 _item_new(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data)
1164 Widget_Data *wd = elm_widget_data_get(obj);
1167 if (!wd) return NULL;
1168 it = elm_widget_item_new(obj, Elm_List_Item);
1170 it->label = eina_stringshare_add(label);
1174 it->base.data = data;
1175 VIEW(it) = edje_object_add(evas_object_evas_get(obj));
1176 edje_object_mirrored_set(VIEW(it), elm_widget_mirrored_get(obj));
1177 evas_object_event_callback_add(VIEW(it), EVAS_CALLBACK_MOUSE_DOWN,
1179 evas_object_event_callback_add(VIEW(it), EVAS_CALLBACK_MOUSE_UP,
1181 evas_object_event_callback_add(VIEW(it), EVAS_CALLBACK_MOUSE_MOVE,
1183 evas_object_size_hint_weight_set(VIEW(it), EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
1184 evas_object_size_hint_align_set(VIEW(it), EVAS_HINT_FILL, EVAS_HINT_FILL);
1187 elm_widget_sub_object_add(obj, it->icon);
1188 evas_object_event_callback_add(it->icon, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1189 _changed_size_hints, obj);
1193 elm_widget_sub_object_add(obj, it->end);
1194 evas_object_event_callback_add(it->end, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1195 _changed_size_hints, obj);
1197 elm_widget_item_disable_hook_set(it, _item_disable);
1198 elm_widget_item_content_set_hook_set(it, _item_content_set);
1199 elm_widget_item_content_get_hook_set(it, _item_content_get);
1200 elm_widget_item_content_unset_hook_set(it, _item_content_unset);
1201 elm_widget_item_text_set_hook_set(it, _item_text_set);
1202 elm_widget_item_text_get_hook_set(it, _item_text_get);
1203 elm_widget_item_del_pre_hook_set(it, _item_del_pre_hook);
1208 _elm_list_mode_set_internal(Widget_Data *wd)
1213 if (wd->mode == ELM_LIST_LIMIT)
1217 wd->scr_minw = EINA_TRUE;
1218 wd->scr_minh = EINA_FALSE;
1222 wd->scr_minw = EINA_FALSE;
1223 wd->scr_minh = EINA_TRUE;
1226 else if (wd->mode == ELM_LIST_EXPAND)
1228 wd->scr_minw = EINA_TRUE;
1229 wd->scr_minh = EINA_TRUE;
1233 wd->scr_minw = EINA_FALSE;
1234 wd->scr_minh = EINA_FALSE;
1237 _sizing_eval(wd->self);
1241 _fix_items(Evas_Object *obj)
1243 Widget_Data *wd = elm_widget_data_get(obj);
1247 Evas_Coord minw[2] = { 0, 0 }, minh[2] = { 0, 0 };
1250 const char *style = elm_widget_style_get(obj);
1251 const char *it_plain = wd->h_mode ? "h_item" : "item";
1252 const char *it_odd = wd->h_mode ? "h_item_odd" : "item_odd";
1253 const char *it_compress = wd->h_mode ? "h_item_compress" : "item_compress";
1254 const char *it_compress_odd = wd->h_mode ? "h_item_compress_odd" : "item_compress_odd";
1258 wd->fix_pending = EINA_TRUE;
1262 evas_object_ref(obj);
1263 _elm_list_walk(wd); // watch out "return" before unwalk!
1265 EINA_LIST_FOREACH(wd->items, l, it)
1267 if (it->deleted) continue;
1270 evas_object_size_hint_min_get(it->icon, &mw, &mh);
1271 if (mw > minw[0]) minw[0] = mw;
1272 if (mh > minh[0]) minh[0] = mh;
1276 evas_object_size_hint_min_get(it->end, &mw, &mh);
1277 if (mw > minw[1]) minw[1] = mw;
1278 if (mh > minh[1]) minh[1] = mh;
1282 if ((minw[0] != wd->minw[0]) || (minw[1] != wd->minw[1]) ||
1283 (minw[0] != wd->minh[0]) || (minh[1] != wd->minh[1]))
1285 wd->minw[0] = minw[0];
1286 wd->minw[1] = minw[1];
1287 wd->minh[0] = minh[0];
1288 wd->minh[1] = minh[1];
1292 EINA_LIST_FOREACH(wd->items, l, it)
1298 if ((it->even != it->is_even) || (!it->fixed) || (redo))
1300 const char *stacking;
1302 /* FIXME: separators' themes seem to be b0rked */
1303 if (it->is_separator)
1304 _elm_theme_object_set(obj, VIEW(it), "separator",
1305 wd->h_mode ? "horizontal" : "vertical",
1307 else if (wd->mode == ELM_LIST_COMPRESS)
1310 _elm_theme_object_set(obj, VIEW(it), "list",
1311 it_compress, style);
1313 _elm_theme_object_set(obj, VIEW(it), "list",
1314 it_compress_odd, style);
1319 _elm_theme_object_set(obj, VIEW(it), "list", it_plain,
1322 _elm_theme_object_set(obj, VIEW(it), "list", it_odd,
1325 stacking = edje_object_data_get(VIEW(it), "stacking");
1328 if (!strcmp(stacking, "below"))
1329 evas_object_lower(VIEW(it));
1330 else if (!strcmp(stacking, "above"))
1331 evas_object_raise(VIEW(it));
1333 edje_object_part_text_set(VIEW(it), "elm.text", it->label);
1335 if ((!it->icon) && (minh[0] > 0))
1337 it->icon = evas_object_rectangle_add(evas_object_evas_get(VIEW(it)));
1338 evas_object_color_set(it->icon, 0, 0, 0, 0);
1339 it->dummy_icon = EINA_TRUE;
1341 if ((!it->end) && (minh[1] > 0))
1343 it->end = evas_object_rectangle_add(evas_object_evas_get(VIEW(it)));
1344 evas_object_color_set(it->end, 0, 0, 0, 0);
1345 it->dummy_end = EINA_TRUE;
1349 evas_object_size_hint_min_set(it->icon, minw[0], minh[0]);
1350 evas_object_size_hint_max_set(it->icon, 99999, 99999);
1351 edje_object_part_swallow(VIEW(it), "elm.swallow.icon", it->icon);
1355 evas_object_size_hint_min_set(it->end, minw[1], minh[1]);
1356 evas_object_size_hint_max_set(it->end, 99999, 99999);
1357 edje_object_part_swallow(VIEW(it), "elm.swallow.end", it->end);
1361 // this may call up user and it may modify the list item
1362 // but we're safe as we're flagged as walking.
1363 // just don't process further
1364 edje_object_message_signal_process(VIEW(it));
1368 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
1369 edje_object_size_min_restricted_calc(VIEW(it), &mw, &mh, mw, mh);
1370 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
1371 evas_object_size_hint_min_set(VIEW(it), mw, mh);
1372 evas_object_show(VIEW(it));
1374 if ((it->selected) || (it->highlighted))
1376 const char *selectraise;
1378 // this may call up user and it may modify the list item
1379 // but we're safe as we're flagged as walking.
1380 // just don't process further
1381 edje_object_signal_emit(VIEW(it), "elm,state,selected", "elm");
1385 selectraise = edje_object_data_get(VIEW(it), "selectraise");
1386 if ((selectraise) && (!strcmp(selectraise, "on")))
1387 evas_object_raise(VIEW(it));
1389 if (it->base.disabled)
1390 edje_object_signal_emit(VIEW(it), "elm,state,disabled",
1393 it->fixed = EINA_TRUE;
1394 it->is_even = it->even;
1400 evas_object_size_hint_min_get(wd->box, &mw, &mh);
1402 _elm_list_mode_set_internal(wd);
1404 _elm_list_unwalk(wd);
1405 evas_object_unref(obj);
1409 _hold_on(void *data __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
1411 Widget_Data *wd = elm_widget_data_get(obj);
1414 elm_smart_scroller_hold_set(wd->scr, EINA_TRUE);
1418 _hold_off(void *data __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
1420 Widget_Data *wd = elm_widget_data_get(obj);
1423 elm_smart_scroller_hold_set(wd->scr, EINA_FALSE);
1427 _freeze_on(void *data __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
1429 Widget_Data *wd = elm_widget_data_get(obj);
1432 elm_smart_scroller_freeze_set(wd->scr, EINA_TRUE);
1436 _freeze_off(void *data __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
1438 Widget_Data *wd = elm_widget_data_get(obj);
1441 elm_smart_scroller_freeze_set(wd->scr, EINA_FALSE);
1445 _resize(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1451 elm_list_add(Evas_Object *parent)
1456 Evas_Coord minw, minh;
1458 ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
1460 ELM_SET_WIDTYPE(widtype, "list");
1461 elm_widget_type_set(obj, "list");
1462 elm_widget_sub_object_add(parent, obj);
1463 elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
1464 elm_widget_data_set(obj, wd);
1465 elm_widget_del_pre_hook_set(obj, _del_pre_hook);
1466 elm_widget_del_hook_set(obj, _del_hook);
1467 elm_widget_theme_hook_set(obj, _theme_hook);
1468 elm_widget_disable_hook_set(obj, _disable_hook);
1469 elm_widget_can_focus_set(obj, EINA_TRUE);
1470 elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
1471 elm_widget_signal_callback_add_hook_set(obj, _signal_callback_add_hook);
1472 elm_widget_signal_callback_del_hook_set(obj, _signal_callback_del_hook);
1473 elm_widget_event_hook_set(obj, _event_hook);
1474 elm_widget_translate_hook_set(obj, _translate_hook);
1477 wd->scr = elm_smart_scroller_add(e);
1478 elm_smart_scroller_widget_set(wd->scr, obj);
1479 elm_widget_resize_object_set(obj, wd->scr);
1480 evas_object_event_callback_add(wd->scr, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1481 _changed_size_hints, obj);
1482 edje_object_size_min_calc(elm_smart_scroller_edje_object_get(wd->scr), &minw, &minh);
1483 evas_object_size_hint_min_set(obj, minw, minh);
1484 evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE, _resize, obj);
1486 elm_smart_scroller_bounce_allow_set(wd->scr, EINA_FALSE,
1487 _elm_config->thumbscroll_bounce_enable);
1489 wd->box = elm_box_add(parent);
1490 elm_box_homogeneous_set(wd->box, 1);
1491 evas_object_size_hint_weight_set(wd->box, EVAS_HINT_EXPAND, 0.0);
1492 evas_object_size_hint_align_set(wd->box, EVAS_HINT_FILL, 0.0);
1493 elm_widget_on_show_region_hook_set(wd->box, _show_region_hook, obj);
1494 elm_widget_sub_object_add(obj, wd->box);
1495 elm_smart_scroller_child_set(wd->scr, wd->box);
1496 evas_object_event_callback_add(wd->box, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1497 _changed_size_hints, obj);
1499 evas_object_show(wd->box);
1503 wd->mode = ELM_LIST_SCROLL;
1505 evas_object_smart_callback_add(wd->scr, "edge,left", _edge_left, obj);
1506 evas_object_smart_callback_add(wd->scr, "edge,right", _edge_right, obj);
1507 evas_object_smart_callback_add(wd->scr, "edge,top", _edge_top, obj);
1508 evas_object_smart_callback_add(wd->scr, "edge,bottom", _edge_bottom, obj);
1510 evas_object_smart_callback_add(obj, "sub-object-del", _sub_del, obj);
1511 evas_object_smart_callback_add(obj, "scroll-hold-on", _hold_on, obj);
1512 evas_object_smart_callback_add(obj, "scroll-hold-off", _hold_off, obj);
1513 evas_object_smart_callback_add(obj, "scroll-freeze-on", _freeze_on, obj);
1514 evas_object_smart_callback_add(obj, "scroll-freeze-off", _freeze_off, obj);
1516 evas_object_smart_callbacks_descriptions_set(obj, _signals);
1518 _mirrored_set(obj, elm_widget_mirrored_get(obj));
1524 elm_list_go(Evas_Object *obj)
1526 ELM_CHECK_WIDTYPE(obj, widtype);
1527 Widget_Data *wd = elm_widget_data_get(obj);
1533 elm_list_multi_select_set(Evas_Object *obj, Eina_Bool multi)
1535 ELM_CHECK_WIDTYPE(obj, widtype);
1536 Widget_Data *wd = elm_widget_data_get(obj);
1542 elm_list_multi_select_get(const Evas_Object *obj)
1544 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1545 Widget_Data *wd = elm_widget_data_get(obj);
1546 if (!wd) return EINA_FALSE;
1551 elm_list_mode_set(Evas_Object *obj, Elm_List_Mode mode)
1553 ELM_CHECK_WIDTYPE(obj, widtype);
1557 wd = elm_widget_data_get(obj);
1560 if (wd->mode == mode)
1564 _elm_list_mode_set_internal(wd);
1568 elm_list_mode_get(const Evas_Object *obj)
1570 ELM_CHECK_WIDTYPE(obj, widtype) ELM_LIST_LAST;
1571 Widget_Data *wd = elm_widget_data_get(obj);
1572 if (!wd) return ELM_LIST_LAST;
1577 elm_list_horizontal_set(Evas_Object *obj, Eina_Bool horizontal)
1579 ELM_CHECK_WIDTYPE(obj, widtype);
1582 Eina_Bool bounce = _elm_config->thumbscroll_bounce_enable;
1584 wd = elm_widget_data_get(obj);
1588 if (wd->h_mode == horizontal)
1591 wd->h_mode = horizontal;
1592 elm_box_horizontal_set(wd->box, horizontal);
1596 evas_object_size_hint_weight_set(wd->box, 0.0, EVAS_HINT_EXPAND);
1597 evas_object_size_hint_align_set(wd->box, 0.0, EVAS_HINT_FILL);
1598 elm_smart_scroller_bounce_allow_set(wd->scr, bounce, EINA_FALSE);
1602 evas_object_size_hint_weight_set(wd->box, EVAS_HINT_EXPAND, 0.0);
1603 evas_object_size_hint_align_set(wd->box, EVAS_HINT_FILL, 0.0);
1604 elm_smart_scroller_bounce_allow_set(wd->scr, EINA_FALSE, bounce);
1607 _elm_list_mode_set_internal(wd);
1611 elm_list_horizontal_get(const Evas_Object *obj)
1613 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1617 wd = elm_widget_data_get(obj);
1625 elm_list_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select)
1627 ELM_CHECK_WIDTYPE(obj, widtype);
1628 Widget_Data *wd = elm_widget_data_get(obj);
1630 wd->always_select = always_select;
1634 elm_list_always_select_mode_get(const Evas_Object *obj)
1636 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1637 Widget_Data *wd = elm_widget_data_get(obj);
1638 if (!wd) return EINA_FALSE;
1639 return wd->always_select;
1643 elm_list_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce)
1645 ELM_CHECK_WIDTYPE(obj, widtype);
1646 Widget_Data *wd = elm_widget_data_get(obj);
1649 elm_smart_scroller_bounce_allow_set(wd->scr, h_bounce, v_bounce);
1653 elm_list_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce)
1655 ELM_CHECK_WIDTYPE(obj, widtype);
1656 Widget_Data *wd = elm_widget_data_get(obj);
1658 elm_smart_scroller_bounce_allow_get(wd->scr, h_bounce, v_bounce);
1662 elm_list_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v)
1664 ELM_CHECK_WIDTYPE(obj, widtype);
1665 Widget_Data *wd = elm_widget_data_get(obj);
1666 if ((!wd) || (!wd->scr)) return;
1667 if ((policy_h >= ELM_SCROLLER_POLICY_LAST) ||
1668 (policy_v >= ELM_SCROLLER_POLICY_LAST))
1670 elm_smart_scroller_policy_set(wd->scr, policy_h, policy_v);
1674 elm_list_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v)
1676 ELM_CHECK_WIDTYPE(obj, widtype);
1677 Widget_Data *wd = elm_widget_data_get(obj);
1678 Elm_Smart_Scroller_Policy s_policy_h, s_policy_v;
1679 if ((!wd) || (!wd->scr)) return;
1680 elm_smart_scroller_policy_get(wd->scr, &s_policy_h, &s_policy_v);
1681 if (policy_h) *policy_h = (Elm_Scroller_Policy) s_policy_h;
1682 if (policy_v) *policy_v = (Elm_Scroller_Policy) s_policy_v;
1686 elm_list_clear(Evas_Object *obj)
1688 ELM_CHECK_WIDTYPE(obj, widtype);
1689 Widget_Data *wd = elm_widget_data_get(obj);
1693 if (!wd->items) return;
1695 eina_list_free(wd->selected);
1696 wd->selected = NULL;
1698 if (wd->walking > 0)
1702 EINA_LIST_FOREACH(wd->items, n, it)
1704 if (it->deleted) continue;
1705 it->deleted = EINA_TRUE;
1706 wd->to_delete = eina_list_append(wd->to_delete, it);
1711 evas_object_ref(obj);
1714 EINA_LIST_FREE(wd->items, it)
1716 _elm_list_item_free(it);
1717 elm_widget_item_free(it);
1720 _elm_list_unwalk(wd);
1724 evas_object_unref(obj);
1727 EAPI const Eina_List *
1728 elm_list_items_get(const Evas_Object *obj)
1730 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1731 Widget_Data *wd = elm_widget_data_get(obj);
1732 if (!wd) return NULL;
1736 EAPI Elm_Object_Item *
1737 elm_list_selected_item_get(const Evas_Object *obj)
1739 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1740 Widget_Data *wd = elm_widget_data_get(obj);
1741 if (!wd) return NULL;
1742 if (wd->selected) return (Elm_Object_Item *) wd->selected->data;
1746 EAPI const Eina_List *
1747 elm_list_selected_items_get(const Evas_Object *obj)
1749 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1750 Widget_Data *wd = elm_widget_data_get(obj);
1751 if (!wd) return NULL;
1752 return wd->selected;
1755 EAPI Elm_Object_Item *
1756 elm_list_item_append(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data)
1758 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1759 Widget_Data *wd = elm_widget_data_get(obj);
1760 Elm_List_Item *it = _item_new(obj, label, icon, end, func, data);
1762 wd->items = eina_list_append(wd->items, it);
1763 it->node = eina_list_last(wd->items);
1764 elm_box_pack_end(wd->box, VIEW(it));
1765 return (Elm_Object_Item *) it;
1768 EAPI Elm_Object_Item *
1769 elm_list_item_prepend(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data)
1771 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1772 Widget_Data *wd = elm_widget_data_get(obj);
1773 Elm_List_Item *it = _item_new(obj, label, icon, end, func, data);
1775 wd->items = eina_list_prepend(wd->items, it);
1776 it->node = wd->items;
1777 elm_box_pack_start(wd->box, VIEW(it));
1778 return (Elm_Object_Item *) it;
1781 EAPI Elm_Object_Item *
1782 elm_list_item_insert_before(Evas_Object *obj, Elm_Object_Item *before, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data)
1784 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1785 ELM_LIST_ITEM_CHECK_DELETED_RETURN(before, NULL);
1788 Elm_List_Item *it, *before_it;
1790 wd = elm_widget_data_get(obj);
1791 if (!wd) return NULL;
1793 before_it = (Elm_List_Item *) before;
1794 if (!before_it->node) return NULL;
1796 it = _item_new(obj, label, icon, end, func, data);
1797 wd->items = eina_list_prepend_relative_list(wd->items, it, before_it->node);
1798 it->node = before_it->node->prev;
1799 elm_box_pack_before(wd->box, VIEW(it), VIEW(before_it));
1800 return (Elm_Object_Item *) it;
1803 EAPI Elm_Object_Item *
1804 elm_list_item_insert_after(Evas_Object *obj, Elm_Object_Item *after, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data)
1806 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1807 ELM_LIST_ITEM_CHECK_DELETED_RETURN(after, NULL);
1810 Elm_List_Item *it, *after_it;
1812 wd = elm_widget_data_get(obj);
1813 if (!wd) return NULL;
1815 after_it = (Elm_List_Item *) after;
1816 if (!after_it->node) return NULL;
1818 it = _item_new(obj, label, icon, end, func, data);
1819 wd->items = eina_list_append_relative_list(wd->items, it, after_it->node);
1820 it->node = after_it->node->next;
1821 elm_box_pack_after(wd->box, VIEW(it), VIEW(after_it));
1822 return (Elm_Object_Item *) it;
1825 EAPI Elm_Object_Item *
1826 elm_list_item_sorted_insert(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data, Eina_Compare_Cb cmp_func)
1828 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1829 Widget_Data *wd = elm_widget_data_get(obj);
1830 Elm_List_Item *it = _item_new(obj, label, icon, end, func, data);
1833 wd->items = eina_list_sorted_insert(wd->items, cmp_func, it);
1834 l = eina_list_data_find_list(wd->items, it);
1835 l = eina_list_next(l);
1838 it->node = eina_list_last(wd->items);
1839 elm_box_pack_end(wd->box, VIEW(it));
1843 Elm_List_Item *before = eina_list_data_get(l);
1844 it->node = before->node->prev;
1845 elm_box_pack_before(wd->box, VIEW(it), VIEW(before));
1847 return (Elm_Object_Item *) it;
1851 elm_list_item_separator_set(Elm_Object_Item *it, Eina_Bool setting)
1853 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
1854 ((Elm_List_Item *) it)->is_separator = !!setting;
1858 elm_list_item_separator_get(const Elm_Object_Item *it)
1860 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, EINA_FALSE);
1861 return ((Elm_List_Item *) it)->is_separator;
1865 elm_list_item_selected_set(Elm_Object_Item *it, Eina_Bool selected)
1867 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
1868 Evas_Object *obj = WIDGET(it);
1869 Widget_Data *wd = elm_widget_data_get(obj);
1870 Elm_List_Item *item = (Elm_List_Item *) it;
1873 selected = !!selected;
1874 if (item->selected == selected) return;
1876 evas_object_ref(obj);
1883 while (wd->selected)
1884 _item_unselect(wd->selected->data);
1886 _item_highlight(item);
1890 _item_unselect(item);
1892 _elm_list_unwalk(wd);
1893 evas_object_unref(obj);
1897 elm_list_item_selected_get(const Elm_Object_Item *it)
1899 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, EINA_FALSE);
1900 return ((Elm_List_Item *) it)->selected;
1904 elm_list_item_show(Elm_Object_Item *it)
1906 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
1907 Widget_Data *wd = elm_widget_data_get(WIDGET(it));
1909 Evas_Coord bx, by, bw, bh;
1910 Evas_Coord x, y, w, h;
1912 evas_object_geometry_get(wd->box, &bx, &by, &bw, &bh);
1913 evas_object_geometry_get(VIEW(it), &x, &y, &w, &h);
1916 if (wd->scr) elm_smart_scroller_child_region_show(wd->scr, x, y, w, h);
1920 elm_list_item_bring_in(Elm_Object_Item *it)
1922 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
1923 Widget_Data *wd = elm_widget_data_get(WIDGET(it));
1925 Evas_Coord bx, by, bw, bh;
1926 Evas_Coord x, y, w, h;
1928 evas_object_geometry_get(wd->box, &bx, &by, &bw, &bh);
1929 evas_object_geometry_get(VIEW(it), &x, &y, &w, &h);
1932 if (wd->scr) elm_smart_scroller_region_bring_in(wd->scr, x, y, w, h);
1936 elm_list_item_object_get(const Elm_Object_Item *it)
1938 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
1942 EAPI Elm_Object_Item *
1943 elm_list_item_prev(const Elm_Object_Item *it)
1945 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
1946 Elm_List_Item *item = (Elm_List_Item *) it;
1947 if (item->node->prev) return item->node->prev->data;
1951 EAPI Elm_Object_Item *
1952 elm_list_item_next(const Elm_Object_Item *it)
1954 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
1955 Elm_List_Item *item = (Elm_List_Item *) it;
1956 if (item->node->next) return item->node->next->data;
1960 EINA_DEPRECATED EAPI void
1961 elm_list_item_del(Elm_Object_Item *it)
1963 elm_object_item_del(it);
1966 EINA_DEPRECATED EAPI Evas_Object *
1967 elm_list_item_base_get(const Elm_Object_Item *it)
1969 return elm_list_item_object_get(it);
1972 EINA_DEPRECATED EAPI void
1973 elm_list_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled)
1975 elm_object_item_disabled_set(it, disabled);
1978 EINA_DEPRECATED EAPI Eina_Bool
1979 elm_list_item_disabled_get(const Elm_Object_Item *it)
1981 return elm_object_item_disabled_get(it);
1984 EINA_DEPRECATED EAPI void
1985 elm_list_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func)
1987 elm_object_item_del_cb_set(it, func);
1990 EINA_DEPRECATED EAPI void *
1991 elm_list_item_data_get(const Elm_Object_Item *it)
1993 return elm_object_item_data_get(it);
1996 EINA_DEPRECATED EAPI Evas_Object *
1997 elm_list_item_icon_get(const Elm_Object_Item *it)
1999 return _item_content_get(it, NULL);
2002 EINA_DEPRECATED EAPI void
2003 elm_list_item_icon_set(Elm_Object_Item *it, Evas_Object *icon)
2005 _item_content_set(it, NULL, icon);
2008 EINA_DEPRECATED EAPI Evas_Object *
2009 elm_list_item_end_get(const Elm_Object_Item *it)
2011 return _item_content_get(it, "end");
2014 EINA_DEPRECATED EAPI void
2015 elm_list_item_end_set(Elm_Object_Item *it, Evas_Object *end)
2017 _item_content_set(it, "end", end);
2020 EINA_DEPRECATED EAPI const char *
2021 elm_list_item_label_get(const Elm_Object_Item *it)
2023 return _item_text_get(it, NULL);
2026 EINA_DEPRECATED EAPI void
2027 elm_list_item_label_set(Elm_Object_Item *it, const char *text)
2029 _item_text_set(it, NULL, text);
2032 EINA_DEPRECATED EAPI void
2033 elm_list_item_tooltip_text_set(Elm_Object_Item *it, const char *text)
2035 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2036 elm_widget_item_tooltip_text_set(it, text);
2039 EINA_DEPRECATED EAPI void
2040 elm_list_item_tooltip_content_cb_set(Elm_Object_Item *it, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb)
2042 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2043 elm_widget_item_tooltip_content_cb_set(it, func, data, del_cb);
2046 EINA_DEPRECATED EAPI void
2047 elm_list_item_tooltip_unset(Elm_Object_Item *it)
2049 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2050 elm_widget_item_tooltip_unset(it);
2053 EINA_DEPRECATED EAPI Eina_Bool
2054 elm_list_item_tooltip_window_mode_set(Elm_Object_Item *it, Eina_Bool disable)
2056 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, EINA_FALSE);
2057 return elm_widget_item_tooltip_window_mode_set(it, disable);
2060 EINA_DEPRECATED EAPI Eina_Bool
2061 elm_list_item_tooltip_window_mode_get(const Elm_Object_Item *it)
2063 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, EINA_FALSE);
2064 return elm_widget_item_tooltip_window_mode_get(it);
2067 EINA_DEPRECATED EAPI void
2068 elm_list_item_tooltip_style_set(Elm_Object_Item *it, const char *style)
2070 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2071 elm_widget_item_tooltip_style_set(it, style);
2074 EINA_DEPRECATED EAPI const char *
2075 elm_list_item_tooltip_style_get(const Elm_Object_Item *it)
2077 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
2078 return elm_widget_item_tooltip_style_get(it);
2081 EINA_DEPRECATED EAPI void
2082 elm_list_item_cursor_set(Elm_Object_Item *it, const char *cursor)
2084 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2085 elm_widget_item_cursor_set(it, cursor);
2088 EINA_DEPRECATED EAPI const char *
2089 elm_list_item_cursor_get(const Elm_Object_Item *it)
2091 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
2092 return elm_widget_item_cursor_get(it);
2095 EINA_DEPRECATED EAPI void
2096 elm_list_item_cursor_unset(Elm_Object_Item *it)
2098 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2099 elm_widget_item_cursor_unset(it);
2102 EINA_DEPRECATED EAPI void
2103 elm_list_item_cursor_style_set(Elm_Object_Item *it, const char *style)
2105 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2106 elm_widget_item_cursor_style_set(it, style);
2109 EINA_DEPRECATED EAPI const char *
2110 elm_list_item_cursor_style_get(const Elm_Object_Item *it)
2112 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
2113 return elm_widget_item_cursor_style_get(it);
2116 EINA_DEPRECATED EAPI void
2117 elm_list_item_cursor_engine_only_set(Elm_Object_Item *it, Eina_Bool engine_only)
2119 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2120 elm_widget_item_cursor_engine_only_set(it, engine_only);
2123 EINA_DEPRECATED EAPI Eina_Bool
2124 elm_list_item_cursor_engine_only_get(const Elm_Object_Item *it)
2126 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, EINA_FALSE);
2127 return elm_widget_item_cursor_engine_only_get(it);