Expedite initialize.
[framework/uifw/expedite.git] / src / bin / image_map_solid_rotate.c
1 #undef FNAME
2 #undef NAME
3 #undef ICON
4
5 /* metadata */
6 #define FNAME image_map_solid_rotate_start
7 #define NAME "Image Map Solid Rotate"
8 #define ICON "map.png"
9
10 #ifndef PROTO
11 # ifndef UI
12 #  include "main.h"
13
14 /* standard var */
15 static int done = 0;
16
17 /* private data */
18 static Evas_Object *o_images[OBNUM];
19
20 /* setup */
21 static void _setup(void)
22 {
23    int i;
24    Evas_Object *o;
25    for (i = 0; i < (OBNUM / 2); i++)
26      {
27         o = evas_object_image_add(evas);
28         o_images[i] = o;
29         evas_object_image_file_set(o, build_path("image.png"), NULL);
30         evas_object_image_fill_set(o, 0, 0, 120, 160);
31         evas_object_resize(o, 120, 160);
32         evas_object_show(o);
33      }
34    done = 0;
35 }
36
37 /* cleanup */
38 static void _cleanup(void)
39 {
40    int i;
41    for (i = 0; i < (OBNUM / 2); i++) evas_object_del(o_images[i]);
42 }
43
44 /* loop - do things */
45 static void _loop(double t, int f)
46 {
47    int i;
48    Evas_Map *m;
49    Evas_Coord x, y, w, h;
50    m = evas_map_new(4);
51    for (i = 0; i < (OBNUM / 2); i++)
52      {
53         w = 120;
54         h = 160;
55         x = (win_w / 2) - (w / 2);
56         x += sin((double)(f + (i * 13)) / (36.7 * SLOW)) * (w / 2);
57         y = (win_h / 2) - (h / 2);
58         y += cos((double)(f + (i * 28)) / (43.8 * SLOW)) * (h / 2);
59
60         evas_map_util_points_populate_from_geometry(m, x, y, w, h, 0);
61
62         evas_map_util_rotate(m, f, x + (w / 2), y + (h / 2));
63
64         evas_object_map_enable_set(o_images[i], 1);
65         evas_object_map_set(o_images[i], m);
66      }
67    evas_map_free(m);
68    FPS_STD(NAME);
69 }
70
71 /* prepend special key handlers if interactive (before STD) */
72 static void _key(char *key)
73 {
74    KEY_STD;
75 }
76
77
78
79
80
81
82
83
84
85
86
87
88 /* template stuff - ignore */
89 # endif
90 #endif
91
92 #ifdef UI
93 _ui_menu_item_add(ICON, NAME, FNAME);
94 #endif
95
96 #ifdef PROTO
97 void FNAME(void);
98 #endif
99
100 #ifndef PROTO
101 # ifndef UI
102 void FNAME(void)
103 {
104    ui_func_set(_key, _loop);
105    _setup();
106 }
107 # endif
108 #endif
109 #undef FNAME
110 #undef NAME
111 #undef ICON