1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
|
/**
* Simple Elementary's <b>flip selector widget</b> example, illustrating its
* usage and API.
*
* See stdout/stderr for output. Compile with:
*
* @verbatim
* gcc -g flipselector_example.c -o flipselector_example `pkg-config --cflags --libs elementary`
* @endverbatim
*/
#include <Elementary.h>
static const char *commands = \
"commands are:\n"
"\tn - flip to next item\n"
"\tp - flip to previous item\n"
"\tf - print first item's label\n"
"\tl - print last item's label\n"
"\ts - print selected item's label\n"
"\th - print help\n";
static void
_on_done(void *data,
Evas_Object *obj,
void *event_info)
{
elm_exit();
}
void /* unselect the item shown in the flip selector */
_unsel_cb(void *data,
Evas_Object *obj,
void *event_info)
{
Elm_Object_Item *it;
Evas_Object *fp = data;
it = elm_flipselector_selected_item_get(fp);
elm_flipselector_item_selected_set(it, EINA_FALSE);
}
void /* delete the item shown in the flip selector */
_del_cb(void *data,
Evas_Object *obj,
void *event_info)
{
Elm_Object_Item *it;
Evas_Object *fp = data;
it = elm_flipselector_selected_item_get(fp);
if (it) elm_object_item_del(it);
}
void /* underflow callback */
_underflow_cb(void *data,
Evas_Object *obj,
void *event_info)
{
fprintf(stdout, "Underflow!\n");
}
void /* overflow callback */
_overflow_cb(void *data,
Evas_Object *obj,
void *event_info)
{
fprintf(stdout, "Overflow!\n");
}
static void
_on_keydown(void *data,
Evas_Object *object,
Evas_Object *src,
Evas_Callback_Type type,
void *event_info)
{
Evas_Object *fs = data;
Evas_Event_Key_Down *ev = event_info;
if (type != EVAS_CALLBACK_KEY_DOWN) return;
if (strcmp(ev->keyname, "h") == 0) /* print help */
{
fprintf(stdout, "%s", commands);
return;
}
if (strcmp(ev->keyname, "n") == 0) /* flip to next item */
{
elm_flipselector_flip_next(fs);
fprintf(stdout, "Flipping to next item\n");
return;
}
if (strcmp(ev->keyname, "p") == 0) /* flip to previous item */
{
elm_flipselector_flip_prev(fs);
fprintf(stdout, "Flipping to previous item\n");
return;
}
if (strcmp(ev->keyname, "f") == 0) /* print first item's label */
{
Elm_Object_Item *it;
it = elm_flipselector_first_item_get(fs);
fprintf(stdout, "Flip selector's first item is: %s\n", it ?
elm_object_item_text_get(it) : "none");
return;
}
if (strcmp(ev->keyname, "l") == 0) /* print last item's label */
{
Elm_Object_Item *it;
it = elm_flipselector_last_item_get(fs);
fprintf(stdout, "Flip selector's last item is: %s\n", it ?
elm_object_item_text_get(it) : "none");
return;
}
if (strcmp(ev->keyname, "s") == 0) /* print selected item's label */
{
Elm_Object_Item *it;
it = elm_flipselector_selected_item_get(fs);
fprintf(stdout, "Flip selector's selected item is: %s\n", it ?
elm_object_item_text_get(it) : "none");
return;
}
}
EAPI_MAIN int
elm_main(int argc, char **argv)
{
unsigned int i;
Evas_Object *win, *bg, *bx, *fp, *bt;
static const char *lbl[] =
{
"Elementary",
"Evas",
"Eina",
"Edje",
"Eet",
"Ecore",
"Efreet",
"Edbus"
};
win = elm_win_add(NULL, "flipselector", ELM_WIN_BASIC);
elm_win_title_set(win, "Flip Selector Example");
evas_object_smart_callback_add(win, "delete,request", _on_done, NULL);
bg = elm_bg_add(win);
elm_win_resize_object_add(win, bg);
evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_show(bg);
bx = elm_box_add(win);
evas_object_size_hint_weight_set(bx, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_win_resize_object_add(win, bx);
evas_object_show(bx);
fp = elm_flipselector_add(win);
evas_object_size_hint_weight_set(fp, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_smart_callback_add(fp, "underflowed", _overflow_cb, NULL);
evas_object_smart_callback_add(fp, "overflowed", _underflow_cb, NULL);
for (i = 0; i < sizeof(lbl) / sizeof(lbl[0]); i++)
elm_flipselector_item_append(fp, lbl[i], NULL, NULL);
elm_box_pack_end(bx, fp);
evas_object_show(fp);
bt = elm_button_add(win);
elm_object_text_set(bt, "Unselect item");
evas_object_smart_callback_add(bt, "clicked", _unsel_cb, fp);
elm_box_pack_end(bx, bt);
evas_object_show(bt);
bt = elm_button_add(win);
elm_object_text_set(bt, "Delete item");
evas_object_smart_callback_add(bt, "clicked", _del_cb, fp);
elm_box_pack_end(bx, bt);
evas_object_show(bt);
elm_object_event_callback_add(win, (Elm_Event_Cb)_on_keydown, fp);
evas_object_show(win);
fprintf(stdout, "%s", commands);
elm_run();
elm_shutdown();
return 0;
}
ELM_MAIN()
|