#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" "can be anything that" "may be shown in a popup." "This one we are in is" "using the default style."); elm_win_inwin_content_set(inwin, lbl); evas_object_show(lbl); #include "widget_preview_tmpl_foot.c"