aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/elementary/doc/widgets/widget_preview_inwin1.c
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/elementary/doc/widgets/widget_preview_inwin1.c')
-rw-r--r--libraries/elementary/doc/widgets/widget_preview_inwin1.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/libraries/elementary/doc/widgets/widget_preview_inwin1.c b/libraries/elementary/doc/widgets/widget_preview_inwin1.c
new file mode 100644
index 0000000..a5195fe
--- /dev/null
+++ b/libraries/elementary/doc/widgets/widget_preview_inwin1.c
@@ -0,0 +1,17 @@
1#include "widget_preview_tmpl_head.c"
2
3Evas_Object *inwin, *lbl;
4
5inwin = elm_win_inwin_add(win);
6evas_object_show(inwin);
7
8lbl = elm_label_add(win);
9elm_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.");
14elm_win_inwin_content_set(inwin, lbl);
15evas_object_show(lbl);
16
17#include "widget_preview_tmpl_foot.c"