Revert "Revert "Setup before starting fps measurement""
[platform/upstream/expedite.git] / src / bin / widgets_file_icons_2.c
1 #undef FNAME
2 #undef NAME
3 #undef ICON
4
5 /* metadata */
6 #define FNAME widgets_file_icons_2_start
7 #define NAME "Widgets File Icons 2"
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    done = 0;
70 }
71
72 /* cleanup */
73 static void _cleanup(void)
74 {
75    int i;
76    for (i = 0; i < NUM; i++)
77      {
78         efl_del(o_images[i]);
79         efl_del(o_texts[i]);
80      }
81 }
82
83 /* loop - do things */
84 static void _loop(double t, int f)
85 {
86    int i;
87    Evas_Coord x, y, tw, th, cent;
88    x = 0;
89    y = 0 - f;
90    for (i = 0; i < NUM; i++)
91      {
92         efl_gfx_entity_position_set(o_images[i], EINA_POSITION2D(x + 8, y));
93         exp_size_get(o_texts[i], &tw, &th);
94         cent = (ICON_SIZE + 16 - tw) / 2;
95         efl_gfx_entity_position_set(o_texts[i], EINA_POSITION2D(x + cent, y + ICON_SIZE + 4));
96         x += ICON_SIZE + 16;
97         if (x > win_w)
98           {
99              x = 0;
100              y += ICON_SIZE + 16;
101           }
102      }
103    FPS_STD(NAME);
104 }
105
106 /* prepend special key handlers if interactive (before STD) */
107 static void _key(const char *key)
108 {
109    KEY_STD;
110 }
111
112
113
114
115
116
117
118
119
120
121
122
123 /* template stuff - ignore */
124 # endif
125 #endif
126
127 #ifdef UI
128 _ui_menu_item_add(ICON, NAME, FNAME);
129 #endif
130
131 #ifdef PROTO
132 void FNAME(void);
133 #endif
134
135 #ifndef PROTO
136 # ifndef UI
137 void FNAME(void)
138 {
139    _setup();
140    ui_func_set(_key, _loop);
141 }
142 # endif
143 #endif
144 #undef FNAME
145 #undef NAME
146 #undef ICON