1 #include <Elementary.h>
5 * @defgroup Pager Pager
7 * The pager is an object that allows flipping (with animation) between 1 or
8 * more “pages” of objects, much like a stack of windows within the window.
10 * Objects can be pushed or popped from the stack or deleted as normal.
11 * Pushes and pops will animate (and a pop will delete the object once the
12 * animation is finished). Any object in the pager can be promoted to the top
13 * (from its current stacking position) as well. Objects are pushed to the
14 * top with elm_pager_content_push() and when the top item is no longer
15 * wanted, simply pop it with elm_pager_content_pop() and it will also be
16 * deleted. Any object you wish to promote to the top that is already in the
17 * pager, simply use elm_pager_content_promote(). If an object is no longer
18 * needed and is not the top item, just delete it as normal. You can query
19 * which objects are the top and bottom with elm_pager_content_bottom_get()
20 * and elm_pager_content_top_get().
22 * Signals that you can add callbacks for are:
24 * "hide,finished" - when the previous page is hided
28 typedef struct _Widget_Data Widget_Data;
29 typedef struct _Item Item;
35 Evas_Object *rect, *clip;
40 Evas_Object *obj, *base, *content;
41 Evas_Coord minw, minh;
45 static const char *widtype = NULL;
46 static void _del_hook(Evas_Object *obj);
47 static void _mirrored_set(Evas_Object *obj, Eina_Bool rtl);
48 static void _theme_hook(Evas_Object *obj);
49 static void _sizing_eval(Evas_Object *obj);
50 static void _changed_size_hints(void *data,
54 static void _content_del(void *data,
58 static Eina_List *_item_get(Evas_Object *obj, Evas_Object *content);
60 static const char SIG_HIDE_FINISHED[] = "hide,finished";
62 static const Evas_Smart_Cb_Description _signals[] = {
63 {SIG_HIDE_FINISHED, ""},
68 _del_hook(Evas_Object *obj)
70 Widget_Data *wd = elm_widget_data_get(obj);
76 _mirrored_set(Evas_Object *obj, Eina_Bool rtl)
78 Widget_Data *wd = elm_widget_data_get(obj);
82 EINA_LIST_FOREACH(wd->stack, l, it)
83 edje_object_mirrored_set(it->base, rtl);
87 _theme_hook(Evas_Object *obj)
89 Widget_Data *wd = elm_widget_data_get(obj);
93 _elm_widget_mirrored_reload(obj);
94 _mirrored_set(obj, elm_widget_mirrored_get(obj));
95 EINA_LIST_FOREACH(wd->stack, l, it)
97 _elm_theme_object_set(obj, it->base, "pager", "base",
98 elm_widget_style_get(obj));
99 edje_object_scale_set(it->base, elm_widget_scale_get(obj) *
106 _item_get(Evas_Object *obj, Evas_Object *content)
108 Widget_Data *wd = elm_widget_data_get(obj);
111 if (!wd) return NULL;
113 EINA_LIST_FOREACH(wd->stack, l, it)
115 if (it->content == content)
123 _elm_pager_focus_next_hook(const Evas_Object *obj, Elm_Focus_Direction dir, Evas_Object **next)
125 Widget_Data *wd = elm_widget_data_get(obj);
128 if ((!wd) || (!wd->top))
131 cur = wd->top->content;
133 /* Try Focus cycle in subitem */
134 return elm_widget_focus_next_get(cur, dir, next);
138 _sizing_eval(Evas_Object *obj)
140 Widget_Data *wd = elm_widget_data_get(obj);
141 Evas_Coord minw = -1, minh = -1;
145 EINA_LIST_FOREACH(wd->stack, l, it)
147 if (it->minw > minw) minw = it->minw;
148 if (it->minh > minh) minh = it->minh;
150 evas_object_size_hint_min_set(obj, minw, minh);
151 evas_object_size_hint_max_set(obj, -1, -1);
155 _changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
158 Evas_Coord minw = -1, minh = -1;
159 evas_object_size_hint_min_get(it->content, &minw, &minh);
160 // FIXME: why is this needed? how does edje get this unswallowed or
161 // lose its callbacks to edje
162 edje_object_part_swallow(it->base, "elm.swallow.content", it->content);
163 edje_object_size_min_calc(it->base, &it->minw, &it->minh);
164 _sizing_eval(it->obj);
168 _eval_top(Evas_Object *obj)
170 Widget_Data *wd = elm_widget_data_get(obj);
173 if (!wd->stack) return;
174 ittop = eina_list_last(wd->stack)->data;
175 if (ittop != wd->top)
178 const char *onshow, *onhide;
185 edje_object_signal_emit(o, "elm,action,pop", "elm");
186 wd->stack = eina_list_remove(wd->stack, wd->top);
189 edje_object_signal_emit(o, "elm,action,hide", "elm");
190 onhide = edje_object_data_get(o, "onhide");
193 if (!strcmp(onhide, "raise")) evas_object_raise(o);
194 else if (!strcmp(onhide, "lower")) evas_object_lower(o);
197 wd->oldtop = wd->top;
203 if (elm_object_focus_get(wd->oldtop->content))
204 elm_object_focus(wd->top->content);
205 if (wd->oldtop->popme)
206 edje_object_signal_emit(o, "elm,action,show", "elm");
208 edje_object_signal_emit(o, "elm,action,push", "elm");
211 edje_object_signal_emit(o, "elm,action,push", "elm");
212 onshow = edje_object_data_get(o, "onshow");
215 if (!strcmp(onshow, "raise")) evas_object_raise(o);
216 else if (!strcmp(onshow, "lower")) evas_object_lower(o);
222 _move(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
224 Widget_Data *wd = elm_widget_data_get(data);
229 evas_object_geometry_get(obj, &x, &y, NULL, NULL);
230 EINA_LIST_FOREACH(wd->stack, l, it)
231 evas_object_move(it->base, x, y);
235 _content_del(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
237 Widget_Data *wd = elm_widget_data_get(data);
241 l = _item_get(data, obj);
244 wd->stack = eina_list_remove_list(wd->stack, l);
245 evas_object_event_callback_del_full
246 (obj, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _changed_size_hints, it);
247 evas_object_del(it->base);
253 _resize(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
255 Widget_Data *wd = elm_widget_data_get(data);
260 evas_object_geometry_get(obj, NULL, NULL, &w, &h);
261 EINA_LIST_FOREACH(wd->stack, l, it) evas_object_resize(it->base, w, h);
265 _signal_hide_finished(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
268 Evas_Object *obj2 = it->obj;
269 Evas_Object *content = it->content;
273 evas_object_del(it->base);
274 evas_object_event_callback_del_full(content,
275 EVAS_CALLBACK_CHANGED_SIZE_HINTS,
278 evas_object_event_callback_del(content,
281 evas_object_del(content);
286 evas_object_hide(it->base);
287 edje_object_signal_emit(it->base, "elm,action,reset", "elm");
288 edje_object_message_signal_process(it->base);
289 evas_object_hide(content);
291 evas_object_smart_callback_call(obj2, SIG_HIDE_FINISHED, content);
296 * Add a new pager to the parent
298 * @param parent The parent object
299 * @return The new object or NULL if it cannot be created
304 elm_pager_add(Evas_Object *parent)
310 ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
312 ELM_SET_WIDTYPE(widtype, "pager");
313 elm_widget_type_set(obj, "pager");
314 elm_widget_sub_object_add(parent, obj);
315 elm_widget_data_set(obj, wd);
316 elm_widget_del_hook_set(obj, _del_hook);
317 elm_widget_theme_hook_set(obj, _theme_hook);
318 elm_widget_focus_next_hook_set(obj, _elm_pager_focus_next_hook);
319 elm_widget_can_focus_set(obj, EINA_FALSE);
321 wd->clip = evas_object_rectangle_add(e);
322 elm_widget_resize_object_set(obj, wd->clip);
323 elm_widget_sub_object_add(obj, wd->clip);
325 wd->rect = evas_object_rectangle_add(e);
326 elm_widget_sub_object_add(obj, wd->rect);
327 evas_object_color_set(wd->rect, 255, 255, 255, 0);
328 evas_object_clip_set(wd->rect, wd->clip);
330 evas_object_event_callback_add(obj, EVAS_CALLBACK_MOVE, _move, obj);
331 evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE, _resize, obj);
333 evas_object_smart_callbacks_descriptions_set(obj, _signals);
335 _mirrored_set(obj, elm_widget_mirrored_get(obj));
341 * Push an object to the top of the pager stack (and show it)
343 * The object pushed becomes a child of the pager and will be controlled
344 * it and deleted when the pager is deleted.
346 * @param obj The pager object
347 * @param content The object to push
350 * @warning It will be failed if the content exists on the stack already.
353 elm_pager_content_push(Evas_Object *obj, Evas_Object *content)
355 ELM_CHECK_WIDTYPE(obj, widtype);
356 Widget_Data *wd = elm_widget_data_get(obj);
357 Evas_Coord x, y, w, h;
360 if ((!wd) || (!content)) return;
361 if (_item_get(obj, content)) return;
366 it->content = content;
367 it->base = edje_object_add(evas_object_evas_get(obj));
368 evas_object_smart_member_add(it->base, obj);
369 evas_object_geometry_get(obj, &x, &y, &w, &h);
370 evas_object_move(it->base, x, y);
371 evas_object_resize(it->base, w, h);
372 evas_object_clip_set(it->base, wd->clip);
373 elm_widget_sub_object_add(obj, it->base);
374 elm_widget_sub_object_add(obj, it->content);
375 _elm_theme_object_set(obj,
379 elm_widget_style_get(obj));
380 edje_object_signal_callback_add(it->base,
381 "elm,action,hide,finished",
383 _signal_hide_finished,
385 evas_object_event_callback_add(it->content,
386 EVAS_CALLBACK_CHANGED_SIZE_HINTS,
389 evas_object_event_callback_add(it->content,
393 edje_object_part_swallow(it->base, "elm.swallow.content", it->content);
394 edje_object_size_min_calc(it->base, &it->minw, &it->minh);
395 evas_object_data_set(it->base, "_elm_leaveme", obj);
396 evas_object_show(it->content);
397 wd->stack = eina_list_append(wd->stack, it);
403 * Pop the object that is on top of the stack
405 * This pops the object that is on top (visible) in the pager, makes it
406 * disappear, then deletes the object. The object that was underneath it
407 * on the stack will become visible.
409 * @param obj The pager object
414 elm_pager_content_pop(Evas_Object *obj)
416 ELM_CHECK_WIDTYPE(obj, widtype);
417 Widget_Data *wd = elm_widget_data_get(obj);
421 if (!wd->stack) return;
422 it = eina_list_last(wd->stack)->data;
423 it->popme = EINA_TRUE;
424 ll = eina_list_last(wd->stack);
435 edje_object_signal_emit(o, "elm,action,pop", "elm");
436 wd->stack = eina_list_remove(wd->stack, it);
437 onhide = edje_object_data_get(o, "onhide");
440 if (!strcmp(onhide, "raise")) evas_object_raise(o);
441 else if (!strcmp(onhide, "lower")) evas_object_lower(o);
448 elm_pager_content_promote(obj, it->content);
454 * Promote an object already in the pager stack to the top of the stack
456 * This will take the indicated object and promote it to the top of the stack
457 * as if it had been pushed there. The object must already be inside the
458 * pager stack to work.
460 * @param obj The pager object
461 * @param content The object to promote
466 elm_pager_content_promote(Evas_Object *obj, Evas_Object *content)
468 ELM_CHECK_WIDTYPE(obj, widtype);
469 Widget_Data *wd = elm_widget_data_get(obj);
473 l = _item_get(obj, content);
477 wd->stack = eina_list_remove_list(wd->stack, l);
478 wd->stack = eina_list_append(wd->stack, it);
483 * Return the object at the bottom of the pager stack
485 * @param obj The pager object
486 * @return The bottom object or NULL if none
491 elm_pager_content_bottom_get(const Evas_Object *obj)
493 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
494 Widget_Data *wd = elm_widget_data_get(obj);
496 if (!wd) return NULL;
497 if (!wd->stack) return NULL;
498 it = wd->stack->data;
503 * Return the object at the top of the pager stack
505 * @param obj The pager object
506 * @return The top object or NULL if none
511 elm_pager_content_top_get(const Evas_Object *obj)
513 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
514 Widget_Data *wd = elm_widget_data_get(obj);
515 if (!wd) return NULL;
516 if (!wd->top) return NULL;
517 return wd->top->content;