1 #include <Elementary.h>
9 * A list is a very simple type of list widget. For more robust
10 * lists, @ref Genlist should probably be used.
12 * Signals that you can add callbacks for are:
14 * "clicked,double" - when the user double-clicked an item
15 * "selected" - when the user selected an item
16 * "unselected" - when the user selected an item
17 * "longpressed" - an item in the hoversel list is long-pressed
18 * "scroll,edge,top" - the list is scrolled until the top edge
19 * "scroll,edge,bottom" - the list is scrolled until the bottom edge
20 * "scroll,edge,left" - the list is scrolled until the left edge
21 * "scroll,edge,right" - the list is scrolled until the right edge
24 typedef struct _Widget_Data Widget_Data;
28 Evas_Object *scr, *box, *self;
29 Eina_List *items, *selected, *to_delete;
30 Elm_List_Item *last_selected_item;
33 Evas_Coord minw[2], minh[2];
34 Eina_Bool scr_minw : 1;
35 Eina_Bool scr_minh : 1;
40 } history[SWIPE_MOVES];
42 Eina_Bool fix_pending : 1;
43 Eina_Bool on_hold : 1;
45 Eina_Bool always_select : 1;
46 Eina_Bool longpressed : 1;
47 Eina_Bool wasselected : 1;
56 Evas_Object *icon, *end;
58 Ecore_Timer *long_timer;
59 Ecore_Timer *swipe_timer;
60 Eina_Bool deleted : 1;
61 Eina_Bool disabled : 1;
63 Eina_Bool is_even : 1;
64 Eina_Bool is_separator : 1;
66 Eina_Bool selected : 1;
67 Eina_Bool hilighted : 1;
68 Eina_Bool dummy_icon : 1;
69 Eina_Bool dummy_end : 1;
72 static const char *widtype = NULL;
73 static void _del_hook(Evas_Object *obj);
74 static void _mirrored_set(Evas_Object *obj, Eina_Bool rtl);
75 static void _theme_hook(Evas_Object *obj);
76 static void _sizing_eval(Evas_Object *obj);
77 static void _disable_hook(Evas_Object *obj);
78 static void _on_focus_hook(void *data, Evas_Object *obj);
79 static void _signal_emit_hook(Evas_Object *obj, const char *emission, const char *source);
80 static void _changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);
81 static void _sub_del(void *data, Evas_Object *obj, void *event_info);
82 static void _fix_items(Evas_Object *obj);
83 static void _mouse_down(void *data, Evas *evas, Evas_Object *obj, void *event_info);
84 static void _mouse_up(void *data, Evas *evas, Evas_Object *obj, void *event_info);
85 static void _mouse_move(void *data, Evas *evas, Evas_Object *obj, void *event_info);
86 static void _scroll_edge_left(void *data, Evas_Object *scr, void *event_info);
87 static void _scroll_edge_right(void *data, Evas_Object *scr, void *event_info);
88 static void _scroll_edge_top(void *data, Evas_Object *scr, void *event_info);
89 static void _scroll_edge_bottom(void *data, Evas_Object *scr, void *event_info);
90 static Eina_Bool _item_multi_select_up(Widget_Data *wd);
91 static Eina_Bool _item_multi_select_down(Widget_Data *wd);
92 static Eina_Bool _item_single_select_up(Widget_Data *wd);
93 static Eina_Bool _item_single_select_down(Widget_Data *wd);
94 static Eina_Bool _event_hook(Evas_Object *obj, Evas_Object *src,
95 Evas_Callback_Type type, void *event_info);
96 static Eina_Bool _deselect_all_items(Widget_Data *wd);
98 static const char SIG_CLICKED_DOUBLE[] = "clicked,double";
99 static const char SIG_SELECTED[] = "selected";
100 static const char SIG_UNSELECTED[] = "unselected";
101 static const char SIG_LONGPRESSED[] = "longpressed";
102 static const char SIG_SCROLL_EDGE_TOP[] = "scroll,edge,top";
103 static const char SIG_SCROLL_EDGE_BOTTOM[] = "scroll,edge,bottom";
104 static const char SIG_SCROLL_EDGE_LEFT[] = "scroll,edge,left";
105 static const char SIG_SCROLL_EDGE_RIGHT[] = "scroll,edge,right";
107 static const Evas_Smart_Cb_Description _signals[] = {
108 {SIG_CLICKED_DOUBLE, ""},
110 {SIG_UNSELECTED, ""},
111 {SIG_LONGPRESSED, ""},
112 {SIG_SCROLL_EDGE_TOP, ""},
113 {SIG_SCROLL_EDGE_BOTTOM, ""},
114 {SIG_SCROLL_EDGE_LEFT, ""},
115 {SIG_SCROLL_EDGE_RIGHT, ""},
119 #define ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, ...) \
120 ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, __VA_ARGS__); \
123 ERR("ERROR: "#it" has been DELETED.\n"); \
124 return __VA_ARGS__; \
128 _elm_list_item_free(Elm_List_Item *it)
130 evas_object_event_callback_del_full
131 (it->base.view, EVAS_CALLBACK_MOUSE_DOWN, _mouse_down, it);
132 evas_object_event_callback_del_full
133 (it->base.view, EVAS_CALLBACK_MOUSE_UP, _mouse_up, it);
134 evas_object_event_callback_del_full
135 (it->base.view, EVAS_CALLBACK_MOUSE_MOVE, _mouse_move, it);
138 evas_object_event_callback_del_full
139 (it->icon, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
140 _changed_size_hints, it->base.widget);
143 evas_object_event_callback_del_full
144 (it->end, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
145 _changed_size_hints, it->base.widget);
147 eina_stringshare_del(it->label);
149 if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
150 if (it->long_timer) ecore_timer_del(it->long_timer);
151 if (it->icon) evas_object_del(it->icon);
152 if (it->end) evas_object_del(it->end);
154 elm_widget_item_del(it);
158 _event_hook(Evas_Object *obj, Evas_Object *src __UNUSED__, Evas_Callback_Type type, void *event_info)
160 if (type != EVAS_CALLBACK_KEY_DOWN) return EINA_FALSE;
161 Evas_Event_Key_Down *ev = event_info;
162 Widget_Data *wd = elm_widget_data_get(obj);
163 if (!wd) return EINA_FALSE;
164 if (!wd->items) return EINA_FALSE;
165 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return EINA_FALSE;
166 if (elm_widget_disabled_get(obj)) return EINA_FALSE;
168 Elm_List_Item *it = NULL;
171 Evas_Coord step_x = 0;
172 Evas_Coord step_y = 0;
175 Evas_Coord page_x = 0;
176 Evas_Coord page_y = 0;
178 elm_smart_scroller_child_pos_get(wd->scr, &x, &y);
179 elm_smart_scroller_step_size_get(wd->scr, &step_x, &step_y);
180 elm_smart_scroller_page_size_get(wd->scr, &page_x, &page_y);
181 elm_smart_scroller_child_viewport_size_get(wd->scr, &v_w, &v_h);
183 /* TODO: fix logic for horizontal mode */
184 if ((!strcmp(ev->keyname, "Left")) ||
185 (!strcmp(ev->keyname, "KP_Left")))
188 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
189 (_item_multi_select_up(wd)))
190 || (_item_single_select_up(wd))))
192 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
198 else if ((!strcmp(ev->keyname, "Right")) ||
199 (!strcmp(ev->keyname, "KP_Right")))
202 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
203 (_item_multi_select_down(wd)))
204 || (_item_single_select_down(wd))))
206 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
212 else if ((!strcmp(ev->keyname, "Up")) ||
213 (!strcmp(ev->keyname, "KP_Up")))
216 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
217 (_item_multi_select_up(wd)))
218 || (_item_single_select_up(wd))))
220 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
226 else if ((!strcmp(ev->keyname, "Down")) ||
227 (!strcmp(ev->keyname, "KP_Down")))
230 (((evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
231 (_item_multi_select_down(wd)))
232 || (_item_single_select_down(wd))))
234 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
240 else if ((!strcmp(ev->keyname, "Home")) ||
241 (!strcmp(ev->keyname, "KP_Home")))
243 it = eina_list_data_get(wd->items);
244 elm_list_item_bring_in(it);
245 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
248 else if ((!strcmp(ev->keyname, "End")) ||
249 (!strcmp(ev->keyname, "KP_End")))
251 it = eina_list_data_get(eina_list_last(wd->items));
252 elm_list_item_bring_in(it);
253 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
256 else if ((!strcmp(ev->keyname, "Prior")) ||
257 (!strcmp(ev->keyname, "KP_Prior")))
262 x -= -(page_x * v_w) / 100;
269 y -= -(page_y * v_h) / 100;
274 else if ((!strcmp(ev->keyname, "Next")) ||
275 (!strcmp(ev->keyname, "KP_Next")))
280 x += -(page_x * v_w) / 100;
287 y += -(page_y * v_h) / 100;
292 else if (!strcmp(ev->keyname, "Escape"))
294 if (!_deselect_all_items(wd)) return EINA_FALSE;
295 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
298 else return EINA_FALSE;
300 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
301 elm_smart_scroller_child_pos_set(wd->scr, x, y);
306 _deselect_all_items(Widget_Data *wd)
308 if (!wd->selected) return EINA_FALSE;
310 elm_list_item_selected_set(wd->selected->data, EINA_FALSE);
316 _item_multi_select_up(Widget_Data *wd)
318 if (!wd->selected) return EINA_FALSE;
319 if (!wd->multi) return EINA_FALSE;
321 Elm_List_Item *prev = elm_list_item_prev(wd->last_selected_item);
322 if (!prev) return EINA_TRUE;
324 if (elm_list_item_selected_get(prev))
326 elm_list_item_selected_set(wd->last_selected_item, EINA_FALSE);
327 wd->last_selected_item = prev;
328 elm_list_item_show(wd->last_selected_item);
332 elm_list_item_selected_set(prev, EINA_TRUE);
333 elm_list_item_show(prev);
339 _item_multi_select_down(Widget_Data *wd)
341 if (!wd->selected) return EINA_FALSE;
342 if (!wd->multi) return EINA_FALSE;
344 Elm_List_Item *next = elm_list_item_next(wd->last_selected_item);
345 if (!next) return EINA_TRUE;
347 if (elm_list_item_selected_get(next))
349 elm_list_item_selected_set(wd->last_selected_item, EINA_FALSE);
350 wd->last_selected_item = next;
351 elm_list_item_show(wd->last_selected_item);
355 elm_list_item_selected_set(next, EINA_TRUE);
356 elm_list_item_show(next);
362 _item_single_select_up(Widget_Data *wd)
366 if (!wd->selected) prev = eina_list_data_get(eina_list_last(wd->items));
367 else prev = elm_list_item_prev(wd->last_selected_item);
369 if (!prev) return EINA_FALSE;
371 _deselect_all_items(wd);
373 elm_list_item_selected_set(prev, EINA_TRUE);
374 elm_list_item_show(prev);
379 _item_single_select_down(Widget_Data *wd)
383 if (!wd->selected) next = eina_list_data_get(wd->items);
384 else next = elm_list_item_next(wd->last_selected_item);
386 if (!next) return EINA_FALSE;
388 _deselect_all_items(wd);
390 elm_list_item_selected_set(next, EINA_TRUE);
391 elm_list_item_show(next);
396 _elm_list_process_deletions(Widget_Data *wd)
400 wd->walking++; // avoid nested deletion and also _sub_del() fix_items
402 EINA_LIST_FREE(wd->to_delete, it)
404 elm_widget_item_pre_notify_del(it);
406 wd->items = eina_list_remove_list(wd->items, it->node);
407 _elm_list_item_free(it);
414 _elm_list_walk(Widget_Data *wd)
418 ERR("ERROR: walking was negative. fixed!\n");
425 _elm_list_unwalk(Widget_Data *wd)
430 ERR("ERROR: walking became negative. fixed!\n");
438 _elm_list_process_deletions(wd);
442 wd->fix_pending = EINA_FALSE;
443 _fix_items(wd->self);
444 _sizing_eval(wd->self);
449 _del_pre_hook(Evas_Object *obj)
451 Widget_Data *wd = elm_widget_data_get(obj);
454 evas_object_event_callback_del(wd->scr,
455 EVAS_CALLBACK_CHANGED_SIZE_HINTS,
456 _changed_size_hints);
457 evas_object_event_callback_del(wd->box,
458 EVAS_CALLBACK_CHANGED_SIZE_HINTS,
459 _changed_size_hints);
463 _del_hook(Evas_Object *obj)
465 Widget_Data *wd = elm_widget_data_get(obj);
471 ERR("ERROR: list deleted while walking.\n");
474 EINA_LIST_FOREACH(wd->items, n, it) elm_widget_item_pre_notify_del(it);
475 _elm_list_unwalk(wd);
477 ERR("ERROR: leaking nodes!\n");
479 EINA_LIST_FREE(wd->items, it) _elm_list_item_free(it);
480 eina_list_free(wd->selected);
485 _show_region_hook(void *data, Evas_Object *obj)
487 Widget_Data *wd = elm_widget_data_get(data);
488 Evas_Coord x, y, w, h;
490 elm_widget_show_region_get(obj, &x, &y, &w, &h);
491 elm_smart_scroller_child_region_set(wd->scr, x, y, w, h);
495 _disable_hook(Evas_Object *obj)
497 Widget_Data *wd = elm_widget_data_get(obj);
499 if (elm_widget_disabled_get(obj))
501 _signal_emit_hook(obj, "elm,state,disabled", "elm");
502 elm_widget_scroll_freeze_push(obj);
503 elm_widget_scroll_hold_push(obj);
504 /* FIXME: if we get to have a way to only un-hilight items
505 * in the future, keeping them selected... */
506 _deselect_all_items(wd);
510 _signal_emit_hook(obj, "elm,state,enabled", "elm");
511 elm_widget_scroll_freeze_pop(obj);
512 elm_widget_scroll_hold_pop(obj);
517 _sizing_eval(Evas_Object *obj)
520 Widget_Data *wd = elm_widget_data_get(obj);
522 Evas_Coord vw, vh, minw, minh, maxw, maxh, w, h, vmw, vmh;
525 evas_object_size_hint_min_get(wd->box, &minw, &minh);
526 evas_object_size_hint_max_get(wd->box, &maxw, &maxh);
527 evas_object_size_hint_weight_get(wd->box, &xw, &yw);
528 if (!wd->scr) return;
529 elm_smart_scroller_child_viewport_size_get(wd->scr, &vw, &vh);
532 if ((minw > 0) && (vw < minw)) vw = minw;
533 else if ((maxw > 0) && (vw > maxw)) vw = maxw;
535 else if (minw > 0) vw = minw;
538 if ((minh > 0) && (vh < minh)) vh = minh;
539 else if ((maxh > 0) && (vh > maxh)) vh = maxh;
541 else if (minh > 0) vh = minh;
542 evas_object_resize(wd->box, vw, vh);
545 edje_object_size_min_calc(elm_smart_scroller_edje_object_get(wd->scr),
547 if (wd->scr_minw) w = vmw + minw;
548 if (wd->scr_minh) h = vmh + minh;
550 evas_object_size_hint_max_get(obj, &maxw, &maxh);
551 if ((maxw > 0) && (w > maxw))
553 if ((maxh > 0) && (h > maxh))
556 evas_object_size_hint_min_set(obj, w, h);
560 _signal_emit_hook(Evas_Object *obj, const char *emission, const char *source)
562 Widget_Data *wd = elm_widget_data_get(obj);
563 edje_object_signal_emit(elm_smart_scroller_edje_object_get(wd->scr),
568 _signal_callback_add_hook(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func_cb, void *data)
570 Widget_Data *wd = elm_widget_data_get(obj);
571 edje_object_signal_callback_add(elm_smart_scroller_edje_object_get(wd->scr),
572 emission, source, func_cb, data);
576 _signal_callback_del_hook(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func_cb, void *data)
578 Widget_Data *wd = elm_widget_data_get(obj);
579 edje_object_signal_callback_del_full(
580 elm_smart_scroller_edje_object_get(wd->scr),
581 emission, source, func_cb, data);
585 _mirrored_set(Evas_Object *obj, Eina_Bool rtl)
587 Widget_Data *wd = elm_widget_data_get(obj);
593 elm_smart_scroller_mirrored_set(wd->scr, rtl);
595 EINA_LIST_FOREACH(wd->items, n, it)
596 edje_object_mirrored_set(it->base.view, rtl);
600 _theme_hook(Evas_Object *obj)
602 Widget_Data *wd = elm_widget_data_get(obj);
607 _elm_widget_mirrored_reload(obj);
608 _mirrored_set(obj, elm_widget_mirrored_get(obj));
615 elm_smart_scroller_object_theme_set(obj, wd->scr, "list", "base",
616 elm_widget_style_get(obj));
617 // edje_object_scale_set(wd->scr, elm_widget_scale_get(obj) * _elm_config->scale);
618 edj = elm_smart_scroller_edje_object_get(wd->scr);
619 str = edje_object_data_get(edj, "focus_highlight");
620 if ((str) && (!strcmp(str, "on")))
621 elm_widget_highlight_in_theme_set(obj, EINA_TRUE);
623 elm_widget_highlight_in_theme_set(obj, EINA_FALSE);
624 elm_object_style_set(wd->scr, elm_widget_style_get(obj));
626 EINA_LIST_FOREACH(wd->items, n, it)
628 edje_object_scale_set(it->base.view, elm_widget_scale_get(obj) * _elm_config->scale);
636 _on_focus_hook(void *data __UNUSED__, Evas_Object *obj)
638 Widget_Data *wd = elm_widget_data_get(obj);
640 if (elm_widget_focus_get(obj))
642 edje_object_signal_emit(wd->self, "elm,action,focus", "elm");
643 evas_object_focus_set(wd->self, EINA_TRUE);
645 if ((wd->selected) && (!wd->last_selected_item))
646 wd->last_selected_item = eina_list_data_get(wd->selected);
650 edje_object_signal_emit(wd->self, "elm,action,unfocus", "elm");
651 evas_object_focus_set(wd->self, EINA_FALSE);
656 _changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
658 Widget_Data *wd = elm_widget_data_get(data);
665 _sub_del(void *data __UNUSED__, Evas_Object *obj, void *event_info)
667 Widget_Data *wd = elm_widget_data_get(obj);
668 Evas_Object *sub = event_info;
674 if ((sub == wd->box) || (sub == wd->scr)) return;
676 EINA_LIST_FOREACH(wd->items, l, it)
678 if ((sub == it->icon) || (sub == it->end))
680 if (it->icon == sub) it->icon = NULL;
681 if (it->end == sub) it->end = NULL;
682 evas_object_event_callback_del_full
683 (sub, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _changed_size_hints,
691 wd->fix_pending = EINA_TRUE;
698 _item_hilight(Elm_List_Item *it)
700 Evas_Object *obj = it->base.widget;
701 Widget_Data *wd = elm_widget_data_get(obj);
702 const char *selectraise;
705 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
706 if (it->hilighted) return;
708 evas_object_ref(obj);
711 edje_object_signal_emit(it->base.view, "elm,state,selected", "elm");
712 selectraise = edje_object_data_get(it->base.view, "selectraise");
713 if ((selectraise) && (!strcmp(selectraise, "on")))
714 evas_object_raise(it->base.view);
715 it->hilighted = EINA_TRUE;
717 _elm_list_unwalk(wd);
718 evas_object_unref(obj);
722 _item_select(Elm_List_Item *it)
724 Evas_Object *obj = it->base.widget;
725 Widget_Data *wd = elm_widget_data_get(obj);
728 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
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, it->base.widget, it);
742 evas_object_smart_callback_call(obj, SIG_SELECTED, it);
743 it->wd->last_selected_item = it;
745 _elm_list_unwalk(wd);
746 evas_object_unref(obj);
750 _item_unselect(Elm_List_Item *it)
752 Evas_Object *obj = it->base.widget;
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->hilighted) return;
760 evas_object_ref(obj);
763 edje_object_signal_emit(it->base.view, "elm,state,unselected", "elm");
764 stacking = edje_object_data_get(it->base.view, "stacking");
765 selectraise = edje_object_data_get(it->base.view, "selectraise");
766 if ((selectraise) && (!strcmp(selectraise, "on")))
768 if ((stacking) && (!strcmp(stacking, "below")))
769 evas_object_lower(it->base.view);
771 it->hilighted = EINA_FALSE;
774 it->selected = EINA_FALSE;
775 wd->selected = eina_list_remove(wd->selected, it);
776 evas_object_smart_callback_call(it->base.widget, 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(it->base.widget);
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 = it->base.widget;
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 _scroll_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_SCROLL_EDGE_LEFT, NULL);
847 _scroll_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_SCROLL_EDGE_RIGHT, NULL);
854 _scroll_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_SCROLL_EDGE_TOP, NULL);
861 _scroll_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_SCROLL_EDGE_BOTTOM, NULL);
868 _long_press(void *data)
870 Elm_List_Item *it = data;
871 Evas_Object *obj = it->base.widget;
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->disabled) goto end;
880 wd->longpressed = EINA_TRUE;
881 evas_object_smart_callback_call(it->base.widget, SIG_LONGPRESSED, it);
884 return ECORE_CALLBACK_CANCEL;
888 _swipe(Elm_List_Item *it)
891 Widget_Data *wd = elm_widget_data_get(it->base.widget);
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(it->base.widget, "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 = it->base.widget;
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)
934 evas_object_smart_callback_call(it->base.widget, SIG_CLICKED_DOUBLE, it);
935 wd->swipe = EINA_FALSE;
938 _elm_list_unwalk(wd);
939 evas_object_unref(obj2);
943 _mouse_up(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
945 Elm_List_Item *it = data;
946 Evas_Object *obj2 = it->base.widget;
947 Widget_Data *wd = elm_widget_data_get(obj2);
948 Evas_Event_Mouse_Up *ev = event_info;
951 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
952 if (ev->button != 1) return;
953 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) wd->on_hold = EINA_TRUE;
954 else wd->on_hold = EINA_FALSE;
955 wd->longpressed = EINA_FALSE;
958 ecore_timer_del(it->long_timer);
959 it->long_timer = NULL;
963 ecore_timer_del(it->swipe_timer);
964 it->swipe_timer = NULL;
968 if (wd->swipe) _swipe(data);
969 wd->on_hold = EINA_FALSE;
974 if (!wd->wasselected) _item_unselect(it);
981 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
983 evas_object_ref(obj2);
993 else _item_unselect(it);
1000 _item_unselect(wd->selected->data);
1006 const Eina_List *l, *l_next;
1009 EINA_LIST_FOREACH_SAFE(wd->selected, l, l_next, it2)
1010 if (it2 != it) _item_unselect(it2);
1016 _elm_list_unwalk(wd);
1017 evas_object_unref(obj2);
1020 static Elm_List_Item *
1021 _item_new(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data)
1023 Widget_Data *wd = elm_widget_data_get(obj);
1026 if (!wd) return NULL;
1027 it = elm_widget_item_new(obj, Elm_List_Item);
1029 it->label = eina_stringshare_add(label);
1033 it->base.data = data;
1034 it->base.view = edje_object_add(evas_object_evas_get(obj));
1035 edje_object_mirrored_set(it->base.view, elm_widget_mirrored_get(obj));
1036 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_DOWN,
1038 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_UP,
1040 evas_object_event_callback_add(it->base.view, EVAS_CALLBACK_MOUSE_MOVE,
1042 evas_object_size_hint_weight_set(it->base.view, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
1043 evas_object_size_hint_align_set(it->base.view, EVAS_HINT_FILL, EVAS_HINT_FILL);
1046 elm_widget_sub_object_add(obj, it->icon);
1047 evas_object_event_callback_add(it->icon, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1048 _changed_size_hints, obj);
1052 elm_widget_sub_object_add(obj, it->end);
1053 evas_object_event_callback_add(it->end, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1054 _changed_size_hints, obj);
1060 _elm_list_mode_set_internal(Widget_Data *wd)
1065 if (wd->mode == ELM_LIST_LIMIT)
1069 wd->scr_minw = EINA_TRUE;
1070 wd->scr_minh = EINA_FALSE;
1074 wd->scr_minw = EINA_FALSE;
1075 wd->scr_minh = EINA_TRUE;
1078 else if (wd->mode == ELM_LIST_EXPAND)
1080 wd->scr_minw = EINA_TRUE;
1081 wd->scr_minh = EINA_TRUE;
1085 wd->scr_minw = EINA_FALSE;
1086 wd->scr_minh = EINA_FALSE;
1089 _sizing_eval(wd->self);
1093 _fix_items(Evas_Object *obj)
1095 Widget_Data *wd = elm_widget_data_get(obj);
1099 Evas_Coord minw[2] = { 0, 0 }, minh[2] = { 0, 0 };
1102 const char *style = elm_widget_style_get(obj);
1103 const char *it_plain = wd->h_mode ? "h_item" : "item";
1104 const char *it_odd = wd->h_mode ? "h_item_odd" : "item_odd";
1105 const char *it_compress = wd->h_mode ? "h_item_compress" : "item_compress";
1106 const char *it_compress_odd = wd->h_mode ? "h_item_compress_odd" : "item_compress_odd";
1110 wd->fix_pending = EINA_TRUE;
1114 evas_object_ref(obj);
1115 _elm_list_walk(wd); // watch out "return" before unwalk!
1117 EINA_LIST_FOREACH(wd->items, l, it)
1119 if (it->deleted) continue;
1122 evas_object_size_hint_min_get(it->icon, &mw, &mh);
1123 if (mw > minw[0]) minw[0] = mw;
1124 if (mh > minh[0]) minh[0] = mh;
1128 evas_object_size_hint_min_get(it->end, &mw, &mh);
1129 if (mw > minw[1]) minw[1] = mw;
1130 if (mh > minh[1]) minh[1] = mh;
1134 if ((minw[0] != wd->minw[0]) || (minw[1] != wd->minw[1]) ||
1135 (minw[0] != wd->minh[0]) || (minh[1] != wd->minh[1]))
1137 wd->minw[0] = minw[0];
1138 wd->minw[1] = minw[1];
1139 wd->minh[0] = minh[0];
1140 wd->minh[1] = minh[1];
1144 EINA_LIST_FOREACH(wd->items, l, it)
1150 if ((it->even != it->is_even) || (!it->fixed) || (redo))
1152 const char *stacking;
1154 /* FIXME: separators' themes seem to be b0rked */
1155 if (it->is_separator)
1156 _elm_theme_object_set(obj, it->base.view, "separator",
1157 wd->h_mode ? "horizontal" : "vertical",
1159 else if (wd->mode == ELM_LIST_COMPRESS)
1162 _elm_theme_object_set(obj, it->base.view, "list",
1163 it_compress, style);
1165 _elm_theme_object_set(obj, it->base.view, "list",
1166 it_compress_odd, style);
1171 _elm_theme_object_set(obj, it->base.view, "list", it_plain,
1174 _elm_theme_object_set(obj, it->base.view, "list", it_odd,
1177 stacking = edje_object_data_get(it->base.view, "stacking");
1180 if (!strcmp(stacking, "below"))
1181 evas_object_lower(it->base.view);
1182 else if (!strcmp(stacking, "above"))
1183 evas_object_raise(it->base.view);
1185 edje_object_part_text_set(it->base.view, "elm.text", it->label);
1187 if ((!it->icon) && (minh[0] > 0))
1189 it->icon = evas_object_rectangle_add(evas_object_evas_get(it->base.view));
1190 evas_object_color_set(it->icon, 0, 0, 0, 0);
1191 it->dummy_icon = EINA_TRUE;
1193 if ((!it->end) && (minh[1] > 0))
1195 it->end = evas_object_rectangle_add(evas_object_evas_get(it->base.view));
1196 evas_object_color_set(it->end, 0, 0, 0, 0);
1197 it->dummy_end = EINA_TRUE;
1201 evas_object_size_hint_min_set(it->icon, minw[0], minh[0]);
1202 evas_object_size_hint_max_set(it->icon, 99999, 99999);
1203 edje_object_part_swallow(it->base.view, "elm.swallow.icon", it->icon);
1207 evas_object_size_hint_min_set(it->end, minw[1], minh[1]);
1208 evas_object_size_hint_max_set(it->end, 99999, 99999);
1209 edje_object_part_swallow(it->base.view, "elm.swallow.end", it->end);
1213 // this may call up user and it may modify the list item
1214 // but we're safe as we're flagged as walking.
1215 // just don't process further
1216 edje_object_message_signal_process(it->base.view);
1220 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
1221 edje_object_size_min_restricted_calc(it->base.view, &mw, &mh, mw, mh);
1222 elm_coords_finger_size_adjust(1, &mw, 1, &mh);
1223 evas_object_size_hint_min_set(it->base.view, mw, mh);
1224 evas_object_show(it->base.view);
1226 if ((it->selected) || (it->hilighted))
1228 const char *selectraise;
1230 // this may call up user and it may modify the list item
1231 // but we're safe as we're flagged as walking.
1232 // just don't process further
1233 edje_object_signal_emit(it->base.view, "elm,state,selected", "elm");
1237 selectraise = edje_object_data_get(it->base.view, "selectraise");
1238 if ((selectraise) && (!strcmp(selectraise, "on")))
1239 evas_object_raise(it->base.view);
1242 edje_object_signal_emit(it->base.view, "elm,state,disabled",
1245 it->fixed = EINA_TRUE;
1246 it->is_even = it->even;
1252 evas_object_size_hint_min_get(wd->box, &mw, &mh);
1254 _elm_list_mode_set_internal(wd);
1256 _elm_list_unwalk(wd);
1257 evas_object_unref(obj);
1261 _hold_on(void *data __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
1263 Widget_Data *wd = elm_widget_data_get(obj);
1266 elm_smart_scroller_hold_set(wd->scr, EINA_TRUE);
1270 _hold_off(void *data __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
1272 Widget_Data *wd = elm_widget_data_get(obj);
1275 elm_smart_scroller_hold_set(wd->scr, EINA_FALSE);
1279 _freeze_on(void *data __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
1281 Widget_Data *wd = elm_widget_data_get(obj);
1284 elm_smart_scroller_freeze_set(wd->scr, EINA_TRUE);
1288 _freeze_off(void *data __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
1290 Widget_Data *wd = elm_widget_data_get(obj);
1293 elm_smart_scroller_freeze_set(wd->scr, EINA_FALSE);
1297 _resize(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1303 * Adds a list object.
1305 * @param parent The parent object
1306 * @return The created object or NULL upon failure
1311 elm_list_add(Evas_Object *parent)
1316 Evas_Coord minw, minh;
1318 ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
1320 ELM_SET_WIDTYPE(widtype, "list");
1321 elm_widget_type_set(obj, "list");
1322 elm_widget_sub_object_add(parent, obj);
1323 elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
1324 elm_widget_data_set(obj, wd);
1325 elm_widget_del_pre_hook_set(obj, _del_pre_hook);
1326 elm_widget_del_hook_set(obj, _del_hook);
1327 elm_widget_theme_hook_set(obj, _theme_hook);
1328 elm_widget_disable_hook_set(obj, _disable_hook);
1329 elm_widget_can_focus_set(obj, EINA_TRUE);
1330 elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
1331 elm_widget_signal_callback_add_hook_set(obj, _signal_callback_add_hook);
1332 elm_widget_signal_callback_del_hook_set(obj, _signal_callback_del_hook);
1333 elm_widget_event_hook_set(obj, _event_hook);
1336 wd->scr = elm_smart_scroller_add(e);
1337 elm_smart_scroller_widget_set(wd->scr, obj);
1338 elm_widget_resize_object_set(obj, wd->scr);
1339 evas_object_event_callback_add(wd->scr, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1340 _changed_size_hints, obj);
1341 edje_object_size_min_calc(elm_smart_scroller_edje_object_get(wd->scr), &minw, &minh);
1342 evas_object_size_hint_min_set(obj, minw, minh);
1343 evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE, _resize, obj);
1345 elm_smart_scroller_bounce_allow_set(wd->scr, EINA_FALSE,
1346 _elm_config->thumbscroll_bounce_enable);
1348 wd->box = elm_box_add(parent);
1349 elm_box_homogeneous_set(wd->box, 1);
1350 evas_object_size_hint_weight_set(wd->box, EVAS_HINT_EXPAND, 0.0);
1351 evas_object_size_hint_align_set(wd->box, EVAS_HINT_FILL, 0.0);
1352 elm_widget_on_show_region_hook_set(wd->box, _show_region_hook, obj);
1353 elm_widget_sub_object_add(obj, wd->box);
1354 elm_smart_scroller_child_set(wd->scr, wd->box);
1355 evas_object_event_callback_add(wd->box, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1356 _changed_size_hints, obj);
1358 evas_object_show(wd->box);
1362 wd->mode = ELM_LIST_SCROLL;
1364 evas_object_smart_callback_add(wd->scr, "edge,left", _scroll_edge_left, obj);
1365 evas_object_smart_callback_add(wd->scr, "edge,right", _scroll_edge_right, obj);
1366 evas_object_smart_callback_add(wd->scr, "edge,top", _scroll_edge_top, obj);
1367 evas_object_smart_callback_add(wd->scr, "edge,bottom", _scroll_edge_bottom, obj);
1369 evas_object_smart_callback_add(obj, "sub-object-del", _sub_del, obj);
1370 evas_object_smart_callback_add(obj, "scroll-hold-on", _hold_on, obj);
1371 evas_object_smart_callback_add(obj, "scroll-hold-off", _hold_off, obj);
1372 evas_object_smart_callback_add(obj, "scroll-freeze-on", _freeze_on, obj);
1373 evas_object_smart_callback_add(obj, "scroll-freeze-off", _freeze_off, obj);
1375 evas_object_smart_callbacks_descriptions_set(obj, _signals);
1377 _mirrored_set(obj, elm_widget_mirrored_get(obj));
1383 * Appends an item to the list object.
1385 * @param obj The list object
1386 * @param label The label of the list item
1387 * @param icon The icon object to use for the left side of the item
1388 * @param end The icon object to use for the right side of the item
1389 * @param func The function to call when the item is clicked
1390 * @param data The data to associate with the item for related callbacks
1392 * @return The created item or NULL upon failure
1396 EAPI Elm_List_Item *
1397 elm_list_item_append(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data)
1399 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1400 Widget_Data *wd = elm_widget_data_get(obj);
1401 Elm_List_Item *it = _item_new(obj, label, icon, end, func, data);
1403 wd->items = eina_list_append(wd->items, it);
1404 it->node = eina_list_last(wd->items);
1405 elm_box_pack_end(wd->box, it->base.view);
1410 * Prepends an item to the list object.
1412 * @param obj The list object
1413 * @param label The label of the list item
1414 * @param icon The icon object to use for the left side of the item
1415 * @param end The icon object to use for the right side of the item
1416 * @param func The function to call when the item is clicked
1417 * @param data The data to associate with the item for related callbacks
1419 * @return The created item or NULL upon failure
1423 EAPI Elm_List_Item *
1424 elm_list_item_prepend(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data)
1426 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1427 Widget_Data *wd = elm_widget_data_get(obj);
1428 Elm_List_Item *it = _item_new(obj, label, icon, end, func, data);
1430 wd->items = eina_list_prepend(wd->items, it);
1431 it->node = wd->items;
1432 elm_box_pack_start(wd->box, it->base.view);
1437 * Inserts an item into the list object before @p before.
1439 * @param obj The list object
1440 * @param before The list item to insert before
1441 * @param label The label of the list item
1442 * @param icon The icon object to use for the left side of the item
1443 * @param end The icon object to use for the right side of the item
1444 * @param func The function to call when the item is clicked
1445 * @param data The data to associate with the item for related callbacks
1447 * @return The created item or NULL upon failure
1451 EAPI Elm_List_Item *
1452 elm_list_item_insert_before(Evas_Object *obj, Elm_List_Item *before, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data)
1457 EINA_SAFETY_ON_NULL_RETURN_VAL(before, NULL);
1458 if (!before->node) return NULL;
1459 ELM_LIST_ITEM_CHECK_DELETED_RETURN(before, NULL);
1461 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1462 wd = elm_widget_data_get(obj);
1463 if (!wd) return NULL;
1464 it = _item_new(obj, label, icon, end, func, data);
1465 wd->items = eina_list_prepend_relative_list(wd->items, it, before->node);
1466 it->node = before->node->prev;
1467 elm_box_pack_before(wd->box, it->base.view, before->base.view);
1472 * Inserts an item into the list object after @p after.
1474 * @param obj The list object
1475 * @param after The list item to insert after
1476 * @param label The label of the list item
1477 * @param icon The icon object to use for the left side of the item
1478 * @param end The icon object to use for the right side of the item
1479 * @param func The function to call when the item is clicked
1480 * @param data The data to associate with the item for related callbacks
1482 * @return The created item or NULL upon failure
1486 EAPI Elm_List_Item *
1487 elm_list_item_insert_after(Evas_Object *obj, Elm_List_Item *after, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data)
1492 EINA_SAFETY_ON_NULL_RETURN_VAL(after, NULL);
1493 if (!after->node) return NULL;
1494 ELM_LIST_ITEM_CHECK_DELETED_RETURN(after, NULL);
1496 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1497 wd = elm_widget_data_get(obj);
1498 if (!wd) return NULL;
1499 it = _item_new(obj, label, icon, end, func, data);
1500 wd->items = eina_list_append_relative_list(wd->items, it, after->node);
1501 it->node = after->node->next;
1502 elm_box_pack_after(wd->box, it->base.view, after->base.view);
1507 * Insert a new item into the sorted list object.
1509 * @param obj The list object
1510 * @param label The label of the list item
1511 * @param icon The icon object to use for the left side of the item
1512 * @param end The icon object to use for the right side of the item
1513 * @param func The function to call when the item is clicked
1514 * @param data The data to associate with the item for related callbacks
1515 * @param cmp_func The function called for the sort.
1517 * @return The created item or NULL upon failure
1521 EAPI Elm_List_Item *
1522 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)
1524 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1525 Widget_Data *wd = elm_widget_data_get(obj);
1526 Elm_List_Item *it = _item_new(obj, label, icon, end, func, data);
1529 wd->items = eina_list_sorted_insert(wd->items, cmp_func, it);
1530 l = eina_list_data_find_list(wd->items, it);
1531 l = eina_list_next(l);
1534 it->node = eina_list_last(wd->items);
1535 elm_box_pack_end(wd->box, it->base.view);
1539 Elm_List_Item *before = eina_list_data_get(l);
1540 it->node = before->node->prev;
1541 elm_box_pack_before(wd->box, it->base.view, before->base.view);
1547 * Clears a list of all items.
1549 * @param obj The list object
1554 elm_list_clear(Evas_Object *obj)
1556 ELM_CHECK_WIDTYPE(obj, widtype);
1557 Widget_Data *wd = elm_widget_data_get(obj);
1561 if (!wd->items) return;
1563 eina_list_free(wd->selected);
1564 wd->selected = NULL;
1566 if (wd->walking > 0)
1570 EINA_LIST_FOREACH(wd->items, n, it)
1572 if (it->deleted) continue;
1573 it->deleted = EINA_TRUE;
1574 wd->to_delete = eina_list_append(wd->to_delete, it);
1579 evas_object_ref(obj);
1582 EINA_LIST_FREE(wd->items, it)
1584 elm_widget_item_pre_notify_del(it);
1585 _elm_list_item_free(it);
1588 _elm_list_unwalk(wd);
1592 evas_object_unref(obj);
1596 * Starts the list. Call before running show() on the list object.
1598 * @param obj The list object
1603 elm_list_go(Evas_Object *obj)
1605 ELM_CHECK_WIDTYPE(obj, widtype);
1606 Widget_Data *wd = elm_widget_data_get(obj);
1612 * Enables/disables the state of multi-select on the list object.
1614 * @param obj The list object
1615 * @param multi If true, multi-select is enabled
1620 elm_list_multi_select_set(Evas_Object *obj, Eina_Bool multi)
1622 ELM_CHECK_WIDTYPE(obj, widtype);
1623 Widget_Data *wd = elm_widget_data_get(obj);
1629 * Gets the state of multi-select on the list object.
1631 * @param obj The list object
1632 * @return If true, multi-select is enabled
1637 elm_list_multi_select_get(const Evas_Object *obj)
1639 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1640 Widget_Data *wd = elm_widget_data_get(obj);
1641 if (!wd) return EINA_FALSE;
1646 * Set which mode to use for the list with.
1648 * @param obj The list object
1649 * @param mode One of @c ELM_LIST_COMPRESS, @c ELM_LIST_SCROLL, @c
1650 * ELM_LIST_LIMIT or @c ELM_LIST_EXPAND.
1652 * @note Default value is @c ELM_LIST_SCROLL. At this mode, the list
1653 * object won't set any of its size hints to inform how a possible
1654 * container should resize it. Then, if it's not created as a "resize
1655 * object", it might end with zero dimensions. The list will respect
1656 * the container's geometry and, if any of its items won't fit into
1657 * its transverse axis, one will be able to scroll it in that
1658 * direction. @c ELM_LIST_COMPRESS is the same as the previous, except
1659 * that it <b>won't</b> let one scroll in the transverse axis, on
1660 * those cases (large items will get cropped). @c ELM_LIST_LIMIT will
1661 * actually set a minimun size hint on the list object, so that
1662 * containers may respect it (and resize itself to fit the child
1663 * properly). More specifically, a minimum size hint will be set for
1664 * its transverse axis, so that the <b>largest</b> item in that
1665 * direction fits well. @c ELM_LIST_EXPAND, besides setting a minimum
1666 * size on the transverse axis, just like the previous mode, will set
1667 * a minimum size on the longitudinal axis too, trying to reserve
1668 * space to all its children to be visible at a time. The last two
1669 * modes can always have effects bounded by setting the list object's
1670 * maximum size hints, though.
1675 elm_list_mode_set(Evas_Object *obj, Elm_List_Mode mode)
1677 ELM_CHECK_WIDTYPE(obj, widtype);
1681 wd = elm_widget_data_get(obj);
1684 if (wd->mode == mode)
1688 _elm_list_mode_set_internal(wd);
1692 * Get the mode the list is at.
1694 * @param obj The list object
1695 * @return mode One of @c ELM_LIST_COMPRESS, @c ELM_LIST_SCROLL or @c
1696 * ELM_LIST_LIMIT (@c ELM_LIST_LAST on errors).
1698 * @note see elm_list_mode_set() for more information.
1703 elm_list_mode_get(const Evas_Object *obj)
1705 ELM_CHECK_WIDTYPE(obj, widtype) ELM_LIST_LAST;
1706 Widget_Data *wd = elm_widget_data_get(obj);
1707 if (!wd) return ELM_LIST_LAST;
1712 * Enables/disables horizontal mode of the list.
1714 * @param obj The list object
1715 * @param mode If true, horizontale mode is enabled
1717 * @note Bounce options for the list will be reset to default values
1718 * with this funcion. Re-call elm_list_bounce_set() once more after
1719 * this one, if you had custom values.
1724 elm_list_horizontal_set(Evas_Object *obj, Eina_Bool horizontal)
1726 ELM_CHECK_WIDTYPE(obj, widtype);
1729 Eina_Bool bounce = _elm_config->thumbscroll_bounce_enable;
1731 wd = elm_widget_data_get(obj);
1735 if (wd->h_mode == horizontal)
1738 wd->h_mode = horizontal;
1739 elm_box_horizontal_set(wd->box, horizontal);
1743 evas_object_size_hint_weight_set(wd->box, 0.0, EVAS_HINT_EXPAND);
1744 evas_object_size_hint_align_set(wd->box, 0.0, EVAS_HINT_FILL);
1745 elm_smart_scroller_bounce_allow_set(wd->scr, bounce, EINA_FALSE);
1749 evas_object_size_hint_weight_set(wd->box, EVAS_HINT_EXPAND, 0.0);
1750 evas_object_size_hint_align_set(wd->box, EVAS_HINT_FILL, 0.0);
1751 elm_smart_scroller_bounce_allow_set(wd->scr, EINA_FALSE, bounce);
1754 _elm_list_mode_set_internal(wd);
1758 * Retrieve whether horizontal mode is enabled for a list.
1760 * @param obj The list object
1761 * @return @c EINA_TRUE, if horizontal mode is enabled and @c
1762 * EINA_FALSE, otherwise.
1764 * @note see elm_list_horizontal_set() for more information.
1769 elm_list_horizontal_get(const Evas_Object *obj)
1771 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1775 wd = elm_widget_data_get(obj);
1783 * Enables/disables the state of always_select, meaning that
1784 * an item will always be selected.
1786 * @param obj The list object
1787 * @param always_select If true, always_select is enabled
1792 elm_list_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select)
1794 ELM_CHECK_WIDTYPE(obj, widtype);
1795 Widget_Data *wd = elm_widget_data_get(obj);
1797 wd->always_select = always_select;
1801 * Gets the state of always_select.
1802 * See also elm_list_always_select_mode_set()
1804 * @param obj The list object
1805 * @return If true, always_select is enabled
1810 elm_list_always_select_mode_get(const Evas_Object *obj)
1812 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1813 Widget_Data *wd = elm_widget_data_get(obj);
1814 if (!wd) return EINA_FALSE;
1815 return wd->always_select;
1819 * Returns a list of all the list items.
1821 * @param obj The list object
1822 * @return An Eina_List* of the list items, or NULL on failure
1826 EAPI const Eina_List *
1827 elm_list_items_get(const Evas_Object *obj)
1829 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1830 Widget_Data *wd = elm_widget_data_get(obj);
1831 if (!wd) return NULL;
1836 * Returns the currently selected list item.
1838 * @param obj The list object
1839 * @return The selected list item, or NULL on failure
1843 EAPI Elm_List_Item *
1844 elm_list_selected_item_get(const Evas_Object *obj)
1846 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1847 Widget_Data *wd = elm_widget_data_get(obj);
1848 if (!wd) return NULL;
1849 if (wd->selected) return wd->selected->data;
1854 * Returns a list of the currently selected list items.
1856 * @param obj The list object
1857 * @return An Eina_List* of the selected list items, or NULL on failure
1861 EAPI const Eina_List *
1862 elm_list_selected_items_get(const Evas_Object *obj)
1864 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1865 Widget_Data *wd = elm_widget_data_get(obj);
1866 if (!wd) return NULL;
1867 return wd->selected;
1871 * Sets if item is a separator.
1873 * @param it The list item object
1877 elm_list_item_separator_set(Elm_List_Item *it, Eina_Bool setting)
1879 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
1880 it->is_separator = !!setting;
1884 * Returns EINA_TRUE if Elm_List_Item is a separator.
1886 * @param it The list item object
1889 elm_list_item_separator_get(const Elm_List_Item *it)
1891 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, EINA_FALSE);
1892 return it->is_separator;
1897 * Sets the selected state of @p it.
1899 * @param it The list item
1900 * @param selected Enables/disables the selected state
1905 elm_list_item_selected_set(Elm_List_Item *it, Eina_Bool selected)
1907 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
1908 Evas_Object *obj = it->base.widget;
1909 Widget_Data *wd = elm_widget_data_get(obj);
1912 selected = !!selected;
1913 if (it->selected == selected) return;
1915 evas_object_ref(obj);
1922 while (wd->selected)
1923 _item_unselect(wd->selected->data);
1931 _elm_list_unwalk(wd);
1932 evas_object_unref(obj);
1936 * Gets the selected state of @p it.
1938 * @param it The list item
1939 * @return If true, the item is selected
1944 elm_list_item_selected_get(const Elm_List_Item *it)
1946 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, EINA_FALSE);
1947 return it->selected;
1951 * Brings @p it to the center of the list view.
1953 * @param it The list item
1958 elm_list_item_show(Elm_List_Item *it)
1960 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
1961 Widget_Data *wd = elm_widget_data_get(it->base.widget);
1962 Evas_Coord bx, by, bw, bh;
1963 Evas_Coord x, y, w, h;
1965 evas_object_geometry_get(wd->box, &bx, &by, &bw, &bh);
1966 evas_object_geometry_get(it->base.view, &x, &y, &w, &h);
1970 elm_smart_scroller_child_region_show(wd->scr, x, y, w, h);
1974 * Bring in the given item
1976 * This causes list to jump to the given item @p it and show it (by scrolling),
1977 * if it is not fully visible. This may use animation to do so and take a
1980 * @param it The item
1985 elm_list_item_bring_in(Elm_List_Item *it)
1987 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
1988 Widget_Data *wd = elm_widget_data_get(it->base.widget);
1989 Evas_Coord bx, by, bw, bh;
1990 Evas_Coord x, y, w, h;
1992 evas_object_geometry_get(wd->box, &bx, &by, &bw, &bh);
1993 evas_object_geometry_get(it->base.view, &x, &y, &w, &h);
1997 elm_smart_scroller_region_bring_in(wd->scr, x, y, w, h);
2001 * Deletes item @p it from the list.
2003 * @param it The list item to delete
2008 elm_list_item_del(Elm_List_Item *it)
2010 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2011 Evas_Object *obj = it->base.widget;
2012 Widget_Data *wd = elm_widget_data_get(obj);
2015 if (it->selected) _item_unselect(it);
2017 if (wd->walking > 0)
2019 if (it->deleted) return;
2020 it->deleted = EINA_TRUE;
2021 wd->to_delete = eina_list_append(wd->to_delete, it);
2025 wd->items = eina_list_remove_list(wd->items, it->node);
2027 evas_object_ref(obj);
2030 elm_widget_item_pre_notify_del(it);
2031 _elm_list_item_free(it);
2033 _elm_list_unwalk(wd);
2034 evas_object_unref(obj);
2038 * Set the function called when a list item is freed.
2040 * @param it The item to set the callback on
2041 * @param func The function called
2046 elm_list_item_del_cb_set(Elm_List_Item *it, Evas_Smart_Cb func)
2048 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2049 elm_widget_item_del_cb_set(it, func);
2053 * Returns the data associated with the item.
2055 * @param it The list item
2056 * @return The data associated with @p it
2061 elm_list_item_data_get(const Elm_List_Item *it)
2063 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
2064 return elm_widget_item_data_get(it);
2068 * Returns the left side icon associated with the item.
2070 * @param it The list item
2071 * @return The left side icon associated with @p it
2076 elm_list_item_icon_get(const Elm_List_Item *it)
2078 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
2079 if (it->dummy_icon) return NULL;
2084 * Sets the left side icon associated with the item.
2086 * Once the icon object is set, a previously set one will be deleted.
2087 * You probably don't want, then, to have the <b>same</b> icon object set
2088 * for more than one item of the list.
2090 * @param it The list item
2091 * @param icon The left side icon object to associate with @p it
2096 elm_list_item_icon_set(Elm_List_Item *it, Evas_Object *icon)
2098 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2099 if (it->icon == icon) return;
2100 if ((it->dummy_icon) && (!icon)) return;
2103 evas_object_del(it->icon);
2104 it->dummy_icon = EINA_FALSE;
2108 icon = evas_object_rectangle_add(evas_object_evas_get(it->base.widget));
2109 evas_object_color_set(icon, 0, 0, 0, 0);
2110 it->dummy_icon = EINA_TRUE;
2114 evas_object_del(it->icon);
2119 edje_object_part_swallow(it->base.view, "elm.swallow.icon", icon);
2123 * Gets the right side icon associated with the item.
2125 * @param it The list item
2126 * @return The right side icon object associated with @p it
2131 elm_list_item_end_get(const Elm_List_Item *it)
2133 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
2134 if (it->dummy_end) return NULL;
2139 * Sets the right side icon associated with the item.
2141 * Once the icon object is set, a previously set one will be deleted.
2142 * You probably don't want, then, to have the <b>same</b> icon object set
2143 * for more than one item of the list.
2145 * @param it The list item
2146 * @param icon The right side icon object to associate with @p it
2151 elm_list_item_end_set(Elm_List_Item *it, Evas_Object *end)
2153 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2154 if (it->end == end) return;
2155 if ((it->dummy_end) && (!end)) return;
2158 evas_object_del(it->end);
2159 it->dummy_icon = EINA_FALSE;
2163 end = evas_object_rectangle_add(evas_object_evas_get(it->base.widget));
2164 evas_object_color_set(end, 0, 0, 0, 0);
2165 it->dummy_end = EINA_TRUE;
2169 evas_object_del(it->end);
2174 edje_object_part_swallow(it->base.view, "elm.swallow.end", end);
2178 * Gets the base object of the item.
2180 * @param it The list item
2181 * @return The base object associated with @p it
2186 elm_list_item_base_get(const Elm_List_Item *it)
2188 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
2189 return it->base.view;
2193 * Gets the label of the item.
2195 * @param it The list item
2196 * @return The label of @p it
2201 elm_list_item_label_get(const Elm_List_Item *it)
2203 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
2208 * Sets the label of the item.
2210 * @param it The list item
2211 * @param text The label of @p it
2216 elm_list_item_label_set(Elm_List_Item *it, const char *text)
2218 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2219 if (!eina_stringshare_replace(&it->label, text)) return;
2221 edje_object_part_text_set(it->base.view, "elm.text", it->label);
2225 * Gets the item before @p it in the list.
2227 * @param it The list item
2228 * @return The item before @p it, or NULL on failure
2232 EAPI Elm_List_Item *
2233 elm_list_item_prev(const Elm_List_Item *it)
2235 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
2236 if (it->node->prev) return it->node->prev->data;
2241 * Gets the item after @p it in the list.
2243 * @param it The list item
2244 * @return The item after @p it, or NULL on failure
2248 EAPI Elm_List_Item *
2249 elm_list_item_next(const Elm_List_Item *it)
2251 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
2252 if (it->node->next) return it->node->next->data;
2257 * Set the text to be shown in the list item.
2259 * @param item Target item
2260 * @param text The text to set in the content
2262 * Setup the text as tooltip to object. The item can have only one tooltip,
2263 * so any previous tooltip data is removed.
2268 elm_list_item_tooltip_text_set(Elm_List_Item *item, const char *text)
2270 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item);
2271 elm_widget_item_tooltip_text_set(item, text);
2275 * Set the content to be shown in the tooltip item
2277 * Setup the tooltip to item. The item can have only one tooltip,
2278 * so any previous tooltip data is removed. @p func(with @p data) will
2279 * be called every time that need show the tooltip and it should
2280 * return a valid Evas_Object. This object is then managed fully by
2281 * tooltip system and is deleted when the tooltip is gone.
2283 * @param item the list item being attached a tooltip.
2284 * @param func the function used to create the tooltip contents.
2285 * @param data what to provide to @a func as callback data/context.
2286 * @param del_cb called when data is not needed anymore, either when
2287 * another callback replaces @func, the tooltip is unset with
2288 * elm_list_item_tooltip_unset() or the owner @a item
2289 * dies. This callback receives as the first parameter the
2290 * given @a data, and @c event_info is the item.
2295 elm_list_item_tooltip_content_cb_set(Elm_List_Item *item, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb)
2297 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item);
2298 elm_widget_item_tooltip_content_cb_set(item, func, data, del_cb);
2302 * Unset tooltip from item
2304 * @param item list item to remove previously set tooltip.
2306 * Remove tooltip from item. The callback provided as del_cb to
2307 * elm_list_item_tooltip_content_cb_set() will be called to notify
2308 * it is not used anymore.
2310 * @see elm_list_item_tooltip_content_cb_set()
2315 elm_list_item_tooltip_unset(Elm_List_Item *item)
2317 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item);
2318 elm_widget_item_tooltip_unset(item);
2322 * Sets a different style for this item tooltip.
2324 * @note before you set a style you should define a tooltip with
2325 * elm_list_item_tooltip_content_cb_set() or
2326 * elm_list_item_tooltip_text_set()
2328 * @param item list item with tooltip already set.
2329 * @param style the theme style to use (default, transparent, ...)
2334 elm_list_item_tooltip_style_set(Elm_List_Item *item, const char *style)
2336 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item);
2337 elm_widget_item_tooltip_style_set(item, style);
2341 * Get the style for this item tooltip.
2343 * @param item list item with tooltip already set.
2344 * @return style the theme style in use, defaults to "default". If the
2345 * object does not have a tooltip set, then NULL is returned.
2350 elm_list_item_tooltip_style_get(const Elm_List_Item *item)
2352 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item, NULL);
2353 return elm_widget_item_tooltip_style_get(item);
2357 * Set the cursor to be shown when mouse is over the list item
2359 * @param item Target item
2360 * @param cursor the cursor name to be used.
2362 * @see elm_object_cursor_set()
2366 elm_list_item_cursor_set(Elm_List_Item *item, const char *cursor)
2368 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item);
2369 elm_widget_item_cursor_set(item, cursor);
2373 * Get the cursor to be shown when mouse is over the list item
2375 * @param item list item with cursor already set.
2376 * @return the cursor name.
2381 elm_list_item_cursor_get(const Elm_List_Item *item)
2383 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item, NULL);
2384 return elm_widget_item_cursor_get(item);
2388 * Unset the cursor to be shown when mouse is over the list item
2390 * @param item Target item
2392 * @see elm_object_cursor_unset()
2396 elm_list_item_cursor_unset(Elm_List_Item *item)
2398 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item);
2399 elm_widget_item_cursor_unset(item);
2403 * Sets a different style for this item cursor.
2405 * @note before you set a style you should define a cursor with
2406 * elm_list_item_cursor_set()
2408 * @param item list item with cursor already set.
2409 * @param style the theme style to use (default, transparent, ...)
2414 elm_list_item_cursor_style_set(Elm_List_Item *item, const char *style)
2416 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item);
2417 elm_widget_item_cursor_style_set(item, style);
2421 * Get the style for this item cursor.
2423 * @param item list item with cursor already set.
2424 * @return style the theme style in use, defaults to "default". If the
2425 * object does not have a cursor set, then NULL is returned.
2430 elm_list_item_cursor_style_get(const Elm_List_Item *item)
2432 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item, NULL);
2433 return elm_widget_item_cursor_style_get(item);
2437 * Set if the cursor set should be searched on the theme or should use
2438 * the provided by the engine, only.
2440 * @note before you set if should look on theme you should define a cursor
2441 * with elm_object_cursor_set(). By default it will only look for cursors
2442 * provided by the engine.
2444 * @param item widget item with cursor already set.
2445 * @param engine_only boolean to define it cursors should be looked only
2446 * between the provided by the engine or searched on widget's theme as well.
2451 elm_list_item_cursor_engine_only_set(Elm_List_Item *item, Eina_Bool engine_only)
2453 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item);
2454 elm_widget_item_cursor_engine_only_set(item, engine_only);
2458 * Get the cursor engine only usage for this item cursor.
2460 * @param item widget item with cursor already set.
2461 * @return engine_only boolean to define it cursors should be looked only
2462 * between the provided by the engine or searched on widget's theme as well. If
2463 * the object does not have a cursor set, then EINA_FALSE is returned.
2468 elm_list_item_cursor_engine_only_get(const Elm_List_Item *item)
2470 ELM_LIST_ITEM_CHECK_DELETED_RETURN(item, EINA_FALSE);
2471 return elm_widget_item_cursor_engine_only_get(item);
2477 * This will enable or disable the scroller bounce mode for the list. See
2478 * elm_scroller_bounce_set() for details
2480 * @param obj The list object
2481 * @param h_bounce Allow bounce horizontally
2482 * @param v_bounce Allow bounce vertically
2487 elm_list_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce)
2489 ELM_CHECK_WIDTYPE(obj, widtype);
2490 Widget_Data *wd = elm_widget_data_get(obj);
2493 elm_smart_scroller_bounce_allow_set(wd->scr, h_bounce, v_bounce);
2497 * Get the bounce mode
2499 * @param obj The List object
2500 * @param h_bounce Allow bounce horizontally
2501 * @param v_bounce Allow bounce vertically
2506 elm_list_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce)
2508 ELM_CHECK_WIDTYPE(obj, widtype);
2509 Widget_Data *wd = elm_widget_data_get(obj);
2511 elm_smart_scroller_bounce_allow_get(wd->scr, h_bounce, v_bounce);
2515 * Set the scrollbar policy
2517 * This sets the scrollbar visibility policy for the given list scroller.
2518 * ELM_SMART_SCROLLER_POLICY_AUTO means the scrollber is made visible if it
2519 * is needed, and otherwise kept hidden. ELM_SMART_SCROLLER_POLICY_ON turns
2520 * it on all the time, and ELM_SMART_SCROLLER_POLICY_OFF always keeps it off.
2521 * This applies respectively for the horizontal and vertical scrollbars.
2523 * @param obj The list object
2524 * @param policy_h Horizontal scrollbar policy
2525 * @param policy_v Vertical scrollbar policy
2530 elm_list_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v)
2532 ELM_CHECK_WIDTYPE(obj, widtype);
2533 Widget_Data *wd = elm_widget_data_get(obj);
2535 if ((policy_h >= ELM_SCROLLER_POLICY_LAST) ||
2536 (policy_v >= ELM_SCROLLER_POLICY_LAST))
2538 elm_smart_scroller_policy_set(wd->scr, policy_h, policy_v);
2542 elm_list_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v)
2544 ELM_CHECK_WIDTYPE(obj, widtype);
2545 Widget_Data *wd = elm_widget_data_get(obj);
2546 Elm_Smart_Scroller_Policy s_policy_h, s_policy_v;
2547 if ((!wd) || (!wd->scr)) return;
2548 elm_smart_scroller_policy_get(wd->scr, &s_policy_h, &s_policy_v);
2549 if (policy_h) *policy_h = (Elm_Scroller_Policy) s_policy_h;
2550 if (policy_v) *policy_v = (Elm_Scroller_Policy) s_policy_v;
2554 * Sets the disabled/enabled state of a list item.
2556 * A disabled item cannot be selected or unselected. It will also
2557 * change its appearance (generally greyed out). This sets the
2558 * disabled state (@c EINA_TRUE for disabled, @c EINA_FALSE for
2561 * @param it The item
2562 * @param disabled The disabled state
2567 elm_list_item_disabled_set(Elm_List_Item *it, Eina_Bool disabled)
2569 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
2571 if (it->disabled == disabled)
2574 it->disabled = !!disabled;
2577 edje_object_signal_emit(it->base.view, "elm,state,disabled", "elm");
2579 edje_object_signal_emit(it->base.view, "elm,state,enabled", "elm");
2583 * Get the disabled/enabled state of a list item
2585 * @param it The item
2586 * @return The disabled state
2588 * See elm_list_item_disabled_set().
2593 elm_list_item_disabled_get(const Elm_List_Item *it)
2595 ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, EINA_FALSE);
2597 return it->disabled;