containing ui setup steps in the profiling again.
[platform/upstream/expedite.git] / src / bin / text_change.c
1 #undef FNAME
2 #undef NAME
3 #undef ICON
4
5 /* metadata */
6 #define FNAME text_change_start
7 #define NAME "Text Change"
8 #define ICON "text.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_texts[OBNUM];
19
20 /* setup */
21 static void _setup(void)
22 {
23    int i;
24    Evas_Object *o;
25    Evas_Coord x, y, w, h;
26    char buf[1024];
27    const char *strs[] = {
28       "Big", "Smelly", "Fish", "Pants", "Octopus", "Garden", "There", "I",
29         "Am", "You", "Are", "Erogenous", "We", "Stick", "Wet", "Fishy",
30         "Fiddly", "Family", "Lair", "Monkeys", "Magazine"
31    };
32    srnd();
33    for (i = 0; i < OBNUM; i++)
34      {
35         o = evas_object_text_add(evas);
36         o_texts[i] = o;
37 #if 0
38         efl_text_font_family_set(o, "Vera-Bold");
39         efl_text_font_size_set(o, 20);
40         snprintf(buf, sizeof(buf), "%s %s %s %s.",
41                  strs[rnd() % (sizeof(strs) / sizeof(char *))],
42                  strs[rnd() % (sizeof(strs) / sizeof(char *))],
43                  strs[rnd() % (sizeof(strs) / sizeof(char *))],
44                  strs[rnd() % (sizeof(strs) / sizeof(char *))]);
45         efl_text_set(o, buf);
46 #else
47         evas_object_text_font_set(o, "Vera-Bold", 20);
48         evas_object_text_text_set(o, buf);
49 #endif
50         efl_gfx_color_set(o, 0, 0, 0, 255);
51         exp_size_get(o, &w, &h);
52         x = (win_w / 2) - (w / 2);
53         x += sin((double)((i * 13)) / (36.7 * SLOW)) * (w / 2);
54         y = (win_h / 2) - (h / 2);
55         y += cos((double)((i * 28)) / (43.8 * SLOW)) * (w / 2);
56         efl_gfx_entity_position_set(o, EINA_POSITION2D(x, y));
57         efl_gfx_entity_visible_set(o, EINA_TRUE);
58      }
59    done = 0;
60 }
61
62 /* cleanup */
63 static void _cleanup(void)
64 {
65    int i;
66    for (i = 0; i < OBNUM; i++) efl_del(o_texts[i]);
67 }
68
69 /* loop - do things */
70 static void _loop(double t, int f)
71 {
72    int i;
73    char buf[1024];
74    const char *strs[] = {
75       "Big", "Smelly", "Fish", "Pants", "Octopus", "Garden", "There", "I",
76         "Am", "You", "Are", "Erogenous", "We", "Stick", "Wet", "Fishy",
77         "Fiddly", "Family", "Lair", "Monkeys", "Magazine"
78    };
79    for (i = 0; i < OBNUM; i++)
80      {
81         snprintf(buf, sizeof(buf), "%s %s %s %s.",
82                  strs[rnd() % (sizeof(strs) / sizeof(char *))],
83                  strs[rnd() % (sizeof(strs) / sizeof(char *))],
84                  strs[rnd() % (sizeof(strs) / sizeof(char *))],
85                  strs[rnd() % (sizeof(strs) / sizeof(char *))]);
86         efl_text_set(o_texts[i], buf);
87      }
88    FPS_STD(NAME);
89 }
90
91 /* prepend special key handlers if interactive (before STD) */
92 static void _key(const char *key)
93 {
94    KEY_STD;
95 }
96
97
98
99
100
101
102
103
104
105
106
107
108 /* template stuff - ignore */
109 # endif
110 #endif
111
112 #ifdef UI
113 _ui_menu_item_add(ICON, NAME, FNAME);
114 #endif
115
116 #ifdef PROTO
117 void FNAME(void);
118 #endif
119
120 #ifndef PROTO
121 # ifndef UI
122 void FNAME(void)
123 {
124    ui_func_set(_key, _loop, _setup);
125 }
126 # endif
127 #endif
128 #undef FNAME
129 #undef NAME
130 #undef ICON