fixed plugin image size problem
[framework/uifw/elementary.git] / doc / widgets / widget_preview_entry3.c
1 #include "widget_preview_tmpl_head.c"
2
3 Evas_Object *o = elm_entry_add(win);
4 elm_entry_single_line_set(o, EINA_TRUE);
5 elm_entry_scrollable_set(o, EINA_TRUE);
6 evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
7 elm_win_resize_object_add(win, o);
8 evas_object_show(o);
9
10 elm_object_text_set(o, "A single line entry <b>with some format</b> that"
11                     "is so long it won't fit in the small screenshot we are"
12                     "generating for the documentation.");
13
14 #include "widget_preview_tmpl_foot.c"