forked from fyne-io/fyne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
key.go
141 lines (136 loc) · 3.57 KB
/
key.go
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
package fyne
// KeyName represents the name of a key that has been pressed
type KeyName string
const (
// KeyEscape is the "esc" key
KeyEscape KeyName = "Escape"
// KeyReturn is the carriage return (main keyboard)
KeyReturn KeyName = "Return"
// KeyTab is the tab advance key
KeyTab KeyName = "Tab"
// KeyBackspace is the delete-before-cursor key
KeyBackspace KeyName = "BackSpace"
// KeyInsert is the insert mode key
KeyInsert KeyName = "Insert"
// KeyDelete is the delete-after-cursor key
KeyDelete KeyName = "Delete"
// KeyRight is the right arrow key
KeyRight KeyName = "Right"
// KeyLeft is the left arrow key
KeyLeft KeyName = "Left"
// KeyDown is the down arrow key
KeyDown KeyName = "Down"
// KeyUp is the up arrow key
KeyUp KeyName = "Up"
// KeyPageUp is the page up num-pad key
KeyPageUp KeyName = "Prior"
// KeyPageDown is the page down num-pad key
KeyPageDown KeyName = "Next"
// KeyHome is the line-home key
KeyHome KeyName = "Home"
// KeyEnd is the line-end key
KeyEnd KeyName = "End"
// KeyF1 is the first function key
KeyF1 KeyName = "F1"
// KeyF2 is the second function key
KeyF2 KeyName = "F2"
// KeyF3 is the third function key
KeyF3 KeyName = "F3"
// KeyF4 is the fourth function key
KeyF4 KeyName = "F4"
// KeyF5 is the fifth function key
KeyF5 KeyName = "F5"
// KeyF6 is the sixth function key
KeyF6 KeyName = "F6"
// KeyF7 is the seventh function key
KeyF7 KeyName = "F7"
// KeyF8 is the eighth function key
KeyF8 KeyName = "F8"
// KeyF9 is the ninth function key
KeyF9 KeyName = "F9"
// KeyF10 is the tenth function key
KeyF10 KeyName = "F10"
// KeyF11 is the eleventh function key
KeyF11 KeyName = "F11"
// KeyF12 is the twelfth function key
KeyF12 KeyName = "F12"
/*
F13
...
F25
*/
// KeyEnter is the enter/ return key (keypad)
KeyEnter KeyName = "KP_Enter"
// Key0 represents the key 0
Key0 KeyName = "0"
// Key1 represents the key 1
Key1 KeyName = "1"
// Key2 represents the key 2
Key2 KeyName = "2"
// Key3 represents the key 3
Key3 KeyName = "3"
// Key4 represents the key 4
Key4 KeyName = "4"
// Key5 represents the key 5
Key5 KeyName = "5"
// Key6 represents the key 6
Key6 KeyName = "6"
// Key7 represents the key 7
Key7 KeyName = "7"
// Key8 represents the key 8
Key8 KeyName = "8"
// Key9 represents the key 9
Key9 KeyName = "9"
// KeyA represents the key A
KeyA KeyName = "A"
// KeyB represents the key B
KeyB KeyName = "B"
// KeyC represents the key C
KeyC KeyName = "C"
// KeyD represents the key D
KeyD KeyName = "D"
// KeyE represents the key E
KeyE KeyName = "E"
// KeyF represents the key F
KeyF KeyName = "F"
// KeyG represents the key G
KeyG KeyName = "G"
// KeyH represents the key H
KeyH KeyName = "H"
// KeyI represents the key I
KeyI KeyName = "I"
// KeyJ represents the key J
KeyJ KeyName = "J"
// KeyK represents the key K
KeyK KeyName = "K"
// KeyL represents the key L
KeyL KeyName = "L"
// KeyM represents the key M
KeyM KeyName = "M"
// KeyN represents the key N
KeyN KeyName = "N"
// KeyO represents the key O
KeyO KeyName = "O"
// KeyP represents the key P
KeyP KeyName = "P"
// KeyQ represents the key Q
KeyQ KeyName = "Q"
// KeyR represents the key R
KeyR KeyName = "R"
// KeyS represents the key S
KeyS KeyName = "S"
// KeyT represents the key T
KeyT KeyName = "T"
// KeyU represents the key U
KeyU KeyName = "U"
// KeyV represents the key V
KeyV KeyName = "V"
// KeyW represents the key W
KeyW KeyName = "W"
// KeyX represents the key X
KeyX KeyName = "X"
// KeyY represents the key Y
KeyY KeyName = "Y"
// KeyZ represents the key Z
KeyZ KeyName = "Z"
)