summaryrefslogtreecommitdiff
path: root/doc/widgets/widget_preview_list.c
blob: 6aca528e73485795f3d8d1be794e19bc69fa3783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include "widget_preview_tmpl_head.c"

static const char *dict[] = \
{
   "awkward",
   "businessman",
   "cylinder",
   "dying",
   "extremophile",
   "futhark",
   "guttural",
   "hypocrites",
   "issuing",
   "just",
   "knows",
   "lying",
   "mystery",
   "nutrients",
   "oxymoron",
   "putting",
   "quizzes",
   "running",
   "systematically",
   "tyranny",
   "usually",
   "vacuum",
   "want",
   "xenophobia",
   "yacht",
   "zebra"
};

Evas_Object *o = elm_list_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);

unsigned int i;
for (i = 0; i < (sizeof(dict) / sizeof(dict[0])); i++)
  {
     char buf[32];
     elm_list_item_append(o, dict[i], NULL, NULL, NULL, NULL);
     snprintf(buf, sizeof(buf), "%c", dict[i][0]);
  }

#include "widget_preview_tmpl_foot.c"