Sources
Include
UICore
Display
Window
keys.h
1
/*
2
** UICore
3
** Copyright (c) 1997-2015 The UICore Team
4
**
5
** This software is provided 'as-is', without any express or implied
6
** warranty. In no event will the authors be held liable for any damages
7
** arising from the use of this software.
8
**
9
** Permission is granted to anyone to use this software for any purpose,
10
** including commercial applications, and to alter it and redistribute it
11
** freely, subject to the following restrictions:
12
**
13
** 1. The origin of this software must not be misrepresented; you must not
14
** claim that you wrote the original software. If you use this software
15
** in a product, an acknowledgment in the product documentation would be
16
** appreciated but is not required.
17
** 2. Altered source versions must be plainly marked as such, and must not be
18
** misrepresented as being the original software.
19
** 3. This notice may not be removed or altered from any source distribution.
20
**
21
** Note: Some of the libraries UICore may link to may have additional
22
** requirements or restrictions.
23
**
24
** File Author(s):
25
**
26
** Magnus Norddahl
27
** Chu Chin Kuan
28
*/
29
30
#pragma once
31
32
#include "input_code.h"
33
34
namespace
uicore
35
{
37
enum class
Key
38
{
39
none
= 0x00,
40
backspace
= 0x08,
41
tab
= 0x09,
// ASCII HT, Horizontal tab
42
linefeed
= 0x0a,
// ASCII LF
43
clear
= 0x0b,
// ASCII VT
44
scroll
= 0x0c,
// ASCII FF, Clear screen
45
key_return
= 0x0d,
// ASCII CR, Enter key
46
select
= 0x0e,
47
execute
= 0x1a,
48
escape
= 0x1b,
49
pause
= 0x1c,
50
print
= 0x1d,
51
52
space
= 0x20,
53
54
prior
= 0x21,
55
next
= 0x22,
56
home
= 0x23,
57
end
= 0x24,
58
left
= 0x25,
59
up
= 0x26,
60
right
= 0x27,
61
down
= 0x28,
62
63
kanji
= 0x29,
64
convert
= 0x2a,
65
nonconvert
= 0x2b,
66
separator
= 0x2c,
// ASCII ','
67
68
help
= 0x3f,
// ASCII '?'
69
70
key_0
=
'0'
,
// 0x30
71
key_1
=
'1'
,
72
key_2
=
'2'
,
73
key_3
=
'3'
,
74
key_4
=
'4'
,
75
key_5
=
'5'
,
76
key_6
=
'6'
,
77
key_7
=
'7'
,
78
key_8
=
'8'
,
79
key_9
=
'9'
,
80
81
a
=
'A'
,
// 0x41
82
b
=
'B'
,
83
c
=
'C'
,
84
d
=
'D'
,
85
e
=
'E'
,
86
f
=
'F'
,
87
g
=
'G'
,
88
h
=
'H'
,
89
i
=
'I'
,
90
j
=
'J'
,
91
k
=
'K'
,
92
l
=
'L'
,
93
m
=
'M'
,
94
n
=
'N'
,
95
o
=
'O'
,
96
p
=
'P'
,
97
q
=
'Q'
,
98
r
=
'R'
,
99
s
=
'S'
,
100
t
=
'T'
,
101
u
=
'U'
,
102
v
=
'V'
,
103
w
=
'W'
,
104
x
=
'X'
,
105
y
=
'Y'
,
106
z
=
'Z'
,
107
108
f1
= 0x61,
// ASCII 'a'
109
f2
= 0x62,
110
f3
= 0x63,
111
f4
= 0x64,
112
f5
= 0x65,
113
f6
= 0x66,
114
f7
= 0x67,
115
f8
= 0x68,
116
f9
= 0x69,
117
f10
= 0x6a,
118
f11
= 0x6b,
119
f12
= 0x6c,
120
f13
= 0x6d,
121
f14
= 0x6e,
122
f15
= 0x6f,
123
f16
= 0x70,
124
f17
= 0x71,
125
f18
= 0x72,
126
f19
= 0x73,
127
f20
= 0x74,
128
f21
= 0x75,
129
f22
= 0x76,
130
f23
= 0x77,
131
f24
= 0x78,
132
133
insert
= 0x7e,
134
key_delete
= 0x7f,
// ASCII DEL
135
136
// Numpad numbers
137
numpad_0
= 0x80,
138
numpad_1
= 0x81,
139
numpad_2
= 0x82,
140
numpad_3
= 0x83,
141
numpad_4
= 0x84,
142
numpad_5
= 0x85,
143
numpad_6
= 0x86,
144
numpad_7
= 0x87,
145
numpad_8
= 0x88,
146
numpad_9
= 0x89,
147
148
// Numpad buttons
149
multiply
= 0x8a,
150
add
= 0x8b,
151
seperator
= 0x8c,
152
subtract
= 0x8d,
153
decimal
= 0x8e,
154
divide
= 0x8f,
155
156
// Modifiers
157
lshift
= 0xe0,
158
rshift
= 0xe1,
159
lcontrol
= 0xe2,
160
rcontrol
= 0xe3,
161
lalt
= 0xe4,
loption
=
lalt
,
162
ralt
= 0xe5,
roption
=
ralt
,
163
lmenu
= 0xe6,
apps
=
lmenu
,
164
rmenu
= 0xe7,
165
lsuper
= 0xe8,
lcmd
=
lsuper
,
166
rsuper
= 0xe9,
rcmd
=
rsuper
,
167
168
scrolllock
= 0xea,
169
capslock
= 0xeb,
170
numlock
= 0xec
171
};
172
173
Key
decode_ic
(
InputCode
);
174
}
uicore::Key::h
uicore::Key::lcontrol
uicore::Key::end
uicore::Key::p
uicore::Key::up
uicore::Key::f10
uicore::Key::f4
uicore::Key::f18
uicore::Key::lmenu
uicore::Key::numpad_4
uicore::Key::f8
uicore::Key::f22
uicore::decode_ic
Key decode_ic(InputCode)
uicore::Key::b
uicore::Key::numpad_9
uicore::Key::home
uicore::Key::multiply
uicore::Key::f23
uicore::Key::space
uicore::Key::f24
uicore::Key::tab
uicore::Key::lalt
uicore::Key::pause
uicore::Key::f16
uicore::Key::numpad_0
uicore::Key::u
uicore::Key::key_return
uicore::Key::separator
uicore::Key::f7
uicore::Key::numpad_3
uicore::Key
Key
Enumeration of keyboard keys recognized on UICore.
Definition:
keys.h:37
uicore::Key::prior
uicore::Key::key_6
uicore::Key::lshift
uicore::Key::c
uicore::Key::f1
uicore::Key::scrolllock
uicore::Key::s
uicore::Key::v
uicore::Key::f19
uicore::Key::decimal
uicore::Key::seperator
uicore::Key::lcmd
uicore::Key::f2
uicore::Key::ralt
uicore::Key::scroll
uicore::Key::a
uicore::Key::down
uicore::Key::j
uicore::Key::key_3
uicore::Key::key_4
uicore::Key::convert
uicore::Key::l
uicore::Key::f17
uicore::Key::numpad_5
uicore::Key::f14
uicore::Key::next
uicore::Key::e
uicore::Key::r
uicore::Key::right
uicore::Key::clear
uicore::Key::m
uicore::Key::roption
uicore::Key::n
uicore::Key::key_5
uicore::Key::numpad_1
uicore::Key::i
uicore::Key::subtract
uicore::Key::loption
uicore::Key::numlock
uicore::Key::lsuper
uicore::Key::insert
uicore::Key::numpad_8
uicore::Key::left
uicore::Key::linefeed
uicore::Key::f21
uicore::Key::execute
uicore::Key::apps
uicore::Key::f11
uicore::Key::kanji
uicore::Key::z
uicore::Key::f6
uicore::Key::key_9
uicore::Key::nonconvert
uicore::Key::help
uicore::Key::key_0
uicore::Key::x
uicore::ByteOrderMark::none
uicore::Key::capslock
uicore::Key::escape
uicore::Key::f13
uicore::Key::f20
uicore::Key::d
uicore::Key::key_2
uicore::Key::backspace
uicore::InputCode
InputCode
Definition:
input_code.h:43
uicore::Key::key_1
uicore::Key::add
uicore::Key::y
uicore::Key::select
uicore::Key::rcmd
uicore::Key::f15
uicore::Key::q
uicore::Key::o
uicore::Key::rcontrol
uicore::Key::divide
uicore::Key::key_7
uicore::Key::rmenu
uicore::Key::numpad_7
uicore::Key::print
uicore::Key::f12
uicore::Key::k
uicore::Key::g
uicore::Key::t
uicore::Key::key_8
uicore::Key::numpad_2
uicore::Key::f5
uicore
Definition:
Application/application.h:35
uicore::Key::rsuper
uicore::Key::f3
uicore::Key::w
uicore::Key::rshift
uicore::Key::numpad_6
uicore::Key::f
uicore::Key::key_delete
uicore::Key::f9