aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/elementary/doc/widgets/widget_preview_icon.c
blob: 7a2a1e15cde4f11c6391cb9c1ecae5fbf8b02d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "widget_preview_tmpl_head.c"

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

elm_icon_standard_set(o, "home");
elm_icon_resizable_set(o, EINA_FALSE, EINA_FALSE);
evas_object_show(o);

#include "widget_preview_tmpl_foot.c"