fixed plugin image size problem
[framework/uifw/elementary.git] / doc / widgets / widget_preview_inwin1.c
1 #include "widget_preview_tmpl_head.c"
2
3 Evas_Object *inwin, *lbl;
4
5 inwin = elm_win_inwin_add(win);
6 evas_object_show(inwin);
7
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);
16
17 #include "widget_preview_tmpl_foot.c"