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