Initialize Tizen 2.3
[framework/uifw/elementary.git] / wearable / doc / widgets / widget_preview_entry4.c
1 #include "widget_preview_tmpl_head.c"
2
3 Evas_Object *o = elm_entry_add(win);
4 elm_entry_scrollable_set(o, EINA_TRUE);
5 evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
6 elm_win_resize_object_add(win, o);
7 evas_object_show(o);
8
9 elm_object_text_set(o, "Some text with <a href=nothing>Anchors</a> and<ps>"
10                     "also items taken from the default theme"
11                     "<item size=16x16 vsize=full href=emoticon/evil></item>"
12                     "showing theme with different sizes<ps>and how they affect"
13                     "line heights <item absize=64x64 vsize=full "
14                     "href=emoticon/love></item>. This will also scroll.");
15
16 #include "widget_preview_tmpl_foot.c"