summaryrefslogtreecommitdiff
path: root/doc/widgets/widget_preview_bubble3.c
blob: ff474f104ebb531f242ed4fe581e71db598af708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "widget_preview_tmpl_head.c"

Evas_Object *o = elm_bubble_add(win);
evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_win_resize_object_add(win, o);
evas_object_show(o);

Evas_Object *o2 = elm_icon_add(win);
elm_icon_standard_set(o2, "home");
elm_object_part_content_set(o, "icon", o2);
evas_object_show(o2);

#include "widget_preview_tmpl_foot.c"