forked from vlang/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkey.v
211 lines (196 loc) · 2.77 KB
/
key.v
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
207
208
209
210
211
// Copyright (c) 2020-2021 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by a GPL license
// that can be found in the LICENSE file.
module ui
// glfw values TODO
/*
pub enum Key {
left = 263
right = 262
arrow_up = 265
arrow_down = 264
backspace = 259
delete = 261
tab = 258
space = 32
key_v = 86
key_a = 65
enter = 257
escape = 256
down = 2
up = 3
}
pub enum KeyMod {
shift = 1
alt = 4
super = 8
ctrl = 2
}
*/
// BitMask
[flag]
pub enum KeyMod {
shift //= 1 // (1<<0)
ctrl //= 2 // (1<<1)
alt //= 4 // (1<<2)
super //= 8 // (1<<3)
}
pub enum KeyState {
press = 1
release = 0
repeat = 2
}
pub struct KeyEvent {
pub:
key Key
action int
code int
mods KeyMod
codepoint u32
}
// Copied from sapp/enums TODO alias?
pub enum Key {
invalid = 0
space = 32
apostrophe = 39 // '
comma = 44 // ,
minus = 45 // -
period = 46 // .
slash = 47 // /
_0 = 48
_1 = 49
_2 = 50
_3 = 51
_4 = 52
_5 = 53
_6 = 54
_7 = 55
_8 = 56
_9 = 57
semicolon = 59 // ;
equal = 61 // =
a = 65
b = 66
c = 67
d = 68
e = 69
f = 70
g = 71
h = 72
i = 73
j = 74
k = 75
l = 76
m = 77
n = 78
o = 79
p = 80
q = 81
r = 82
s = 83
t = 84
u = 85
v = 86
w = 87
x = 88
y = 89
z = 90
left_bracket = 91 // [
backslash = 92 // \
right_bracket = 93 // ]
grave_accent = 96 // `
world_1 = 161 // non-us #1
world_2 = 162 // non-us #2
escape = 256
enter = 257
tab = 258
backspace = 259
insert = 260
delete = 261
right = 262
left = 263
down = 264
up = 265
page_up = 266
page_down = 267
home = 268
end = 269
caps_lock = 280
scroll_lock = 281
num_lock = 282
print_screen = 283
pause = 284
f1 = 290
f2 = 291
f3 = 292
f4 = 293
f5 = 294
f6 = 295
f7 = 296
f8 = 297
f9 = 298
f10 = 299
f11 = 300
f12 = 301
f13 = 302
f14 = 303
f15 = 304
f16 = 305
f17 = 306
f18 = 307
f19 = 308
f20 = 309
f21 = 310
f22 = 311
f23 = 312
f24 = 313
f25 = 314
kp_0 = 320
kp_1 = 321
kp_2 = 322
kp_3 = 323
kp_4 = 324
kp_5 = 325
kp_6 = 326
kp_7 = 327
kp_8 = 328
kp_9 = 329
kp_decimal = 330
kp_divide = 331
kp_multiply = 332
kp_subtract = 333
kp_add = 334
kp_enter = 335
kp_equal = 336
left_shift = 340
left_control = 341
left_alt = 342
left_super = 343
right_shift = 344
right_control = 345
right_alt = 346
right_super = 347
menu = 348
}
fn shift_key(mods KeyMod) bool {
return int(mods) & 1 == 1
}
fn ctl_key(mods KeyMod) bool {
return int(mods) & 2 == 2
}
fn alt_key(mods KeyMod) bool {
return int(mods) & 4 == 4
}
fn super_key(mods KeyMod) bool {
return int(mods) & 8 == 8
}
fn ctl_shift_key(mods KeyMod) bool {
return int(mods) & 3 == 3
}
fn ctl_alt_key(mods KeyMod) bool {
return int(mods) & 6 == 6
}
fn super_alt_key(mods KeyMod) bool {
return int(mods) & 12 == 12
}
// NB: to complete if useful