Update to latest upstream code
[platform/upstream/expedite.git] / src / bin / widgets_file_icons_2_grouped.c
1 #undef FNAME
2 #undef NAME
3 #undef ICON
4
5 /* metadata */
6 #define FNAME widgets_file_icons_2_grouped_start
7 #define NAME "Widgets File Icons 2 Grouped"
8 #define ICON "widgets.png"
9
10 #ifndef PROTO
11 # ifndef UI
12 #  include "main.h"
13
14 /* standard var */
15 static int done = 0;
16 /* private data */
17 #define NUM 512
18 #define ICON_SIZE 64
19 static Evas_Object *o_images[NUM];
20 static Evas_Object *o_texts[NUM];
21
22 static const char *icons[] =
23 {
24    "bug.png",
25    "bulb.png",
26    "camera.png",
27    "colorbox.png",
28
29    "e.png",
30    "error.png",
31    "flower.png",
32    "house.png",
33
34    "mushroom.png",
35    "pulse.png",
36    "typewriter.png",
37    "warning.png",
38
39    "watch.png"
40 };
41
42 /* setup */
43 static void _setup(void)
44 {
45    int i;
46    Evas_Object *o;
47    for (i = 0; i < NUM; i++)
48      {
49         o = efl_add(EFL_CANVAS_IMAGE_CLASS, evas);
50         o_images[i] = o;
51         efl_file_simple_load(o, build_path(icons[i % 13]), NULL);
52         efl_gfx_fill_set(o, EINA_RECT(0, 0, ICON_SIZE, ICON_SIZE));
53         efl_gfx_entity_size_set(o, EINA_SIZE2D(ICON_SIZE, ICON_SIZE));
54         efl_gfx_entity_visible_set(o, EINA_TRUE);
55
56         o = evas_object_text_add(evas);
57         o_texts[i] = o;
58         efl_text_font_family_set(o, "Vera-Bold");
59         efl_text_font_size_set(o, 10);
60         efl_text_set(o, icons[i % 13]);
61         efl_gfx_color_set(o, 0, 0, 0, 255);
62         efl_gfx_entity_visible_set(o, EINA_TRUE);
63      }
64    for (i = 0; i < NUM; i++)
65      {
66         efl_gfx_stack_raise_to_top(o_images[i]);
67      }
68    for (i = 0; i < NUM; i++)
69      {
70         if (i > 13)
71           efl_gfx_stack_above(o_images[i], o_images[i - 13]);
72      }
73    done = 0;
74 }
75
76 /* cleanup */
77 static void _cleanup(void)
78 {
79    int i;
80    for (i = 0; i < NUM; i++)
81      {
82         efl_del(o_images[i]);
83         efl_del(o_texts[i]);
84      }
85 }
86
87 /* loop - do things */
88 static void _loop(double t, int f)
89 {
90    int i;
91    Evas_Coord x, y, tw, th, cent;
92    x = 0;
93    y = 0 - f;
94    for (i = 0; i < NUM; i++)
95      {
96         efl_gfx_entity_position_set(o_images[i], EINA_POSITION2D(x + 8, y));
97         exp_size_get(o_texts[i], &tw, &th);
98         cent = (ICON_SIZE + 16 - tw) / 2;
99         efl_gfx_entity_position_set(o_texts[i], EINA_POSITION2D(x + cent, y + ICON_SIZE + 4));
100         x += ICON_SIZE + 16;
101         if (x > win_w)
102           {
103              x = 0;
104              y += ICON_SIZE + 16;
105           }
106      }
107    FPS_STD(NAME);
108 }
109
110 /* prepend special key handlers if interactive (before STD) */
111 static void _key(const char *key)
112 {
113    KEY_STD;
114 }
115
116
117
118
119
120
121
122
123
124
125
126
127 /* template stuff - ignore */
128 # endif
129 #endif
130
131 #ifdef UI
132 _ui_menu_item_add(ICON, NAME, FNAME);
133 #endif
134
135 #ifdef PROTO
136 void FNAME(void);
137 #endif
138
139 #ifndef PROTO
140 # ifndef UI
141 void FNAME(void)
142 {
143    ui_func_set(_key, _loop);
144    _setup();
145 }
146 # endif
147 #endif
148 #undef FNAME
149 #undef NAME
150 #undef ICON