blob: a5195feed91e1496cd5e6d40bd4de15d1717b1f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "widget_preview_tmpl_head.c"
Evas_Object *inwin, *lbl;
inwin = elm_win_inwin_add(win);
evas_object_show(inwin);
lbl = elm_label_add(win);
elm_object_text_set(lbl, "The content of an inwin<ps>"
"can be anything that<ps>"
"may be shown in a popup.<ps><ps>"
"This one we are in is<ps>"
"using the <b>default</b> style.");
elm_win_inwin_content_set(inwin, lbl);
evas_object_show(lbl);
#include "widget_preview_tmpl_foot.c"
|