blob: 14672f66dea5fcf33ba255fe7a5d0a48073b01fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "widget_preview_tmpl_head.c"
Evas_Object *o = elm_actionslider_add(win);
evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_win_resize_object_add(win, o);
evas_object_show(o);
elm_object_part_text_set(o, "left", "left");
elm_object_part_text_set(o, "center", "center");
elm_object_part_text_set(o, "right", "right");
elm_actionslider_indicator_pos_set(o, ELM_ACTIONSLIDER_CENTER);
#include "widget_preview_tmpl_foot.c"
|