containing ui setup steps in the profiling again.
[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 #if 0
59         efl_text_font_family_set(o, "Vera-Bold");
60         efl_text_font_size_set(o, 10);
61         efl_text_set(o, icons[i % 13]);
62 #else
63         evas_object_text_font_set(o, "Vera-Bold", 10);
64         evas_object_text_text_set(o, icons[i % 13]);
65 #endif
66         efl_gfx_color_set(o, 0, 0, 0, 255);
67         efl_gfx_entity_visible_set(o, EINA_TRUE);
68      }
69    for (i = 0; i < NUM; i++)
70      {
71         efl_gfx_stack_raise_to_top(o_images[i]);
72      }
73    for (i = 0; i < NUM; i++)
74      {
75         if (i > 13)
76           efl_gfx_stack_above(o_images[i], o_images[i - 13]);
77      }
78    done = 0;
79 }
80
81 /* cleanup */
82 static void _cleanup(void)
83 {
84    int i;
85    for (i = 0; i < NUM; i++)
86      {
87         efl_del(o_images[i]);
88         efl_del(o_texts[i]);
89      }
90 }
91
92 /* loop - do things */
93 static void _loop(double t, int f)
94 {
95    int i;
96    Evas_Coord x, y, tw, th, cent;
97    x = 0;
98    y = 0 - f;
99    for (i = 0; i < NUM; i++)
100      {
101         efl_gfx_entity_position_set(o_images[i], EINA_POSITION2D(x + 8, y));
102         exp_size_get(o_texts[i], &tw, &th);
103         cent = (ICON_SIZE + 16 - tw) / 2;
104         efl_gfx_entity_position_set(o_texts[i], EINA_POSITION2D(x + cent, y + ICON_SIZE + 4));
105         x += ICON_SIZE + 16;
106         if (x > win_w)
107           {
108              x = 0;
109              y += ICON_SIZE + 16;
110           }
111      }
112    FPS_STD(NAME);
113 }
114
115 /* prepend special key handlers if interactive (before STD) */
116 static void _key(const char *key)
117 {
118    KEY_STD;
119 }
120
121
122
123
124
125
126
127
128
129
130
131
132 /* template stuff - ignore */
133 # endif
134 #endif
135
136 #ifdef UI
137 _ui_menu_item_add(ICON, NAME, FNAME);
138 #endif
139
140 #ifdef PROTO
141 void FNAME(void);
142 #endif
143
144 #ifndef PROTO
145 # ifndef UI
146 void FNAME(void)
147 {
148    ui_func_set(_key, _loop, _setup);
149 }
150 # endif
151 #endif
152 #undef FNAME
153 #undef NAME
154 #undef ICON