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