-
Notifications
You must be signed in to change notification settings - Fork 4
/
Keyboard.qml
301 lines (295 loc) ยท 23.7 KB
/
Keyboard.qml
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
// This code is by Nathaniel van Diepen and used with permission.
// under the MIT license.
// https://github.com/Eeems/oxidize/blob/master/LICENSE.md
import QtQuick 2.9
import "."
Item {
objectName: "keyboard"
id: keyboard
clip: true
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
property int page: 0
property bool hasCaps: false
property bool hasShift: true
property bool hasAlt: false
property bool hasCtrl: false
property bool hasMeta: false
function charPress(text, modifiers) {
console.log("charPress " + text + " " + modifiers);
onChar(text);
}
function keyPress(text, modifiers) {
console.log("keyPress " + text + " " + modifiers);
if (text === Qt.Key_Backspace) {
onChar("key-del");
} else if (text === Qt.Key_Space) {
onChar("key-spc");
}
}
function hide(){
keyboard.visible = false;
keyboard.focus = true;
}
function each(column, fn){
for(var i = 0; i < column.children.length; i++){
var row = column.children[i];
for(var y = 0; y < row.children.length; y++){
fn(row.children[y]);
}
}
}
function caps(state){
keyboard.hasCaps = state;
keyboard.hasShift = !keyboard.hasShift;
}
function shift(state){
keyboard.hasShift = state;
}
function ctrl(state){
keyboard.haCtrl = state;
}
function alt(state){
keyboard.hasAlt = state;
}
function meta(state){
keyboard.hasMeta = state;
}
width: parent.width
height: 480
MouseArea { anchors.fill: keyboard }
Rectangle {
color: "black"
anchors.fill: keyboard
Column {
id: qwerty
anchors.centerIn: parent
spacing: 4
visible: page == 0
Row {
spacing: parent.spacing
anchors.horizontalCenter: parent.horizontalCenter
KeyboardKey { text: "`"; shifttext: "~" }
KeyboardKey { text: "1"; shifttext: "!" }
KeyboardKey { text: "2"; shifttext: "@" }
KeyboardKey { text: "3"; shifttext: "#" }
KeyboardKey { text: "4"; shifttext: "$" }
KeyboardKey { text: "5"; shifttext: "%" }
KeyboardKey { text: "6"; shifttext: "^" }
KeyboardKey { text: "7"; shifttext: "&" }
KeyboardKey { text: "8"; shifttext: "*" }
KeyboardKey { text: "9"; shifttext: ")" }
KeyboardKey { text: "0"; shifttext: "(" }
KeyboardKey { text: "-"; shifttext: "_" }
KeyboardKey { text: "="; shifttext: "+" }
KeyboardKey { text: "Backspace"; size: 2; key: Qt.Key_Backspace; fontsize: 6 }
}
Row {
spacing: parent.spacing
anchors.horizontalCenter: parent.horizontalCenter
KeyboardKey { text: "Tab"; size: 1; key: Qt.Key_Tab }
KeyboardKey { text: "q"; shifttext: "Q" }
KeyboardKey { text: "w"; shifttext: "W" }
KeyboardKey { text: "e"; shifttext: "E" }
KeyboardKey { text: "r"; shifttext: "R" }
KeyboardKey { text: "t"; shifttext: "T" }
KeyboardKey { text: "y"; shifttext: "Y" }
KeyboardKey { text: "u"; shifttext: "U" }
KeyboardKey { text: "i"; shifttext: "I" }
KeyboardKey { text: "o"; shifttext: "O" }
KeyboardKey { text: "p"; shifttext: "P" }
KeyboardKey { text: "["; shifttext: "{" }
KeyboardKey { text: "]"; shifttext: "}" }
KeyboardKey { text: "\\"; shifttext: "|" }
}
Row {
spacing: parent.spacing
anchors.horizontalCenter: parent.horizontalCenter
KeyboardKey { id: caps; text: "Caps"; key: Qt.Key_CapsLock; size: 2; onClick: keyboard.caps(this.state()); toggle: true }
KeyboardKey { text: "a"; shifttext: "A" }
KeyboardKey { text: "s"; shifttext: "S" }
KeyboardKey { text: "d"; shifttext: "D" }
KeyboardKey { text: "f"; shifttext: "F" }
KeyboardKey { text: "g"; shifttext: "G" }
KeyboardKey { text: "h"; shifttext: "H" }
KeyboardKey { text: "j"; shifttext: "J" }
KeyboardKey { text: "k"; shifttext: "K" }
KeyboardKey { text: "l"; shifttext: "L" }
KeyboardKey { text: ";"; shifttext: ":" }
KeyboardKey { text: "'"; shifttext: "\"" }
KeyboardKey { text: "โฉ"; size: 2; key: Qt.Key_Enter }
}
Row {
spacing: parent.spacing
anchors.horizontalCenter: parent.horizontalCenter
KeyboardKey { id: lshift; text: "Shift"; key: Qt.Key_Shift; size: 2; onClick: keyboard.shift(this.state()); toggle: true }
KeyboardKey { text: "z"; shifttext: "Z" }
KeyboardKey { text: "x"; shifttext: "X" }
KeyboardKey { text: "c"; shifttext: "C" }
KeyboardKey { text: "v"; shifttext: "V" }
KeyboardKey { text: "b"; shifttext: "B" }
KeyboardKey { text: "n"; shifttext: "N" }
KeyboardKey { text: "m"; shifttext: "M" }
KeyboardKey { text: ","; shifttext: "<" }
KeyboardKey { text: "."; shifttext: ">" }
KeyboardKey { text: "/"; shifttext: "?" }
KeyboardKey { id: rshift; text: "Shift"; key: Qt.Key_Shift; size: 2; onClick: keyboard.shift(this.state()); toggle: true }
}
Row {
spacing: parent.spacing
anchors.horizontalCenter: parent.horizontalCenter
KeyboardKey { id: lctrl; text: "Ctrl"; key: Qt.Key_Control; onClick: keyboard.ctrl(this.state()); toggle: true }
KeyboardKey { id: lmeta; text: "Meta"; key: Qt.Key_Meta; onClick: keyboard.meta(this.state()); toggle: true }
KeyboardKey { id: lalt; text: "Alt"; key: Qt.Key_Alt; onClick: keyboard.alt(this.state()); toggle: true }
KeyboardKey { text: "Space"; size: 6; key: Qt.Key_Space; value: " " }
KeyboardKey { id: ralt; text: "Alt"; key: Qt.Key_AltGr; onClick: keyboard.alt(this.state()); toggle: true }
KeyboardKey { id: rmeta; text: "Meta"; key: Qt.Key_Meta; onClick: keyboard.meta(this.state()); toggle: true }
//KeyboardKey { text: "Menu"; key: Qt.Key_Menu }
KeyboardKey { id: rctrl; text: "Ctrl"; key: Qt.Key_Control; onClick: keyboard.ctrl(this.state()); toggle: true }
}
}
Column {
id: more
anchors.centerIn: parent
spacing: 4
visible: page == 1
Row {
spacing: parent.spacing
anchors.horizontalCenter: parent.horizontalCenter
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐
" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "Backspace"; size: 2; key: Qt.Key_Backspace; fontsize: 6 }
}
Row {
spacing: parent.spacing
anchors.horizontalCenter: parent.horizontalCenter
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "โบ๏ธ" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐ถ" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐ฃ" }
KeyboardKey { text: "๐ฅ" }
KeyboardKey { text: "๐ฎ" }
KeyboardKey { text: "๐ฏ" }
KeyboardKey { text: "๐ช" }
KeyboardKey { text: "๐ซ" }
KeyboardKey { text: "๐ด" }
}
Row {
spacing: parent.spacing
anchors.horizontalCenter: parent.horizontalCenter
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐ฒ" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐ข" }
KeyboardKey { text: "โฉ"; size: 2; key: Qt.Key_Enter }
}
Row {
spacing: parent.spacing
anchors.horizontalCenter: parent.horizontalCenter
KeyboardKey { text: "๐ญ" }
KeyboardKey { text: "๐ฆ" }
KeyboardKey { text: "๐ง" }
KeyboardKey { text: "๐จ" }
KeyboardKey { text: "๐ฉ" }
KeyboardKey { text: "๐ฐ" }
KeyboardKey { text: "๐ฑ" }
KeyboardKey { text: "๐ณ" }
KeyboardKey { text: "๐ต" }
KeyboardKey { text: "๐ก" }
KeyboardKey { text: "๐ " }
KeyboardKey { text: "๐ท" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐ฉ" }
}
//
Row {
spacing: parent.spacing
anchors.horizontalCenter: parent.horizontalCenter
KeyboardKey { text: "๐บ" }
KeyboardKey { text: "๐ธ" }
KeyboardKey { text: "๐น" }
KeyboardKey { text: "๐ป" }
KeyboardKey { text: "Space"; size: 4; key: Qt.Key_Space; value: " " }
KeyboardKey { text: "๐ผ" }
KeyboardKey { text: "๐ฝ" }
KeyboardKey { text: "๐" }
KeyboardKey { text: "๐ฟ" }
KeyboardKey { text: "๐พ" }
}
}
// People and Fantasy
//๐ถ ๐ง ๐ง ๐ฆ ๐ฉ ๐ง ๐จ ๐ต ๐ง ๐ด ๐ฒ ๐ณโ๏ธ ๐ณโ๏ธ ๐ง ๐ง ๐ฑโ๏ธ ๐ฑโ๏ธ ๐จ๐ฆฐ ๐ฉ๐ฆฐ ๐จ๐ฆฑ ๐ฉ๐ฆฑ ๐จ๐ฆฒ ๐ฉ๐ฆฒ ๐จ๐ฆณ ๐ฉ๐ฆณ ๐ฆธโ๏ธ ๐ฆธโ๏ธ ๐ฆนโ๏ธ ๐ฆนโ๏ธ ๐ฎโ๏ธ ๐ฎโ๏ธ ๐ทโ๏ธ ๐ทโ๏ธ ๐โ๏ธ ๐โ๏ธ ๐ต๏ธโ๏ธ ๐ต๏ธโ๏ธ ๐ฉโ๏ธ ๐จโ๏ธ ๐ฉ๐พ ๐จ๐พ ๐ฉ๐ณ ๐จ๐ณ ๐ฉ๐ ๐จ๐ ๐ฉ๐ค ๐จ๐ค ๐ฉ๐ซ ๐จ๐ซ ๐ฉ๐ญ ๐จ๐ญ ๐ฉ๐ป ๐จ๐ป ๐ฉ๐ผ ๐จ๐ผ ๐ฉ๐ง ๐จ๐ง ๐ฉ๐ฌ ๐จ๐ฌ ๐ฉ๐จ ๐จ๐จ ๐ฉ๐ ๐จ๐ ๐ฉโ๏ธ ๐จโ๏ธ ๐ฉ๐ ๐จ๐ ๐ฉโ๏ธ ๐จโ๏ธ ๐ฐ ๐คต ๐ธ ๐คด ๐คถ ๐
๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐ผ ๐คฐ ๐คฑ ๐โ๏ธ ๐โ๏ธ ๐โ๏ธ ๐โ๏ธ ๐
โ๏ธ ๐
โ๏ธ ๐โ๏ธ ๐โ๏ธ ๐โ๏ธ ๐โ๏ธ ๐คฆโ๏ธ ๐คฆโ๏ธ ๐คทโ๏ธ ๐คทโ๏ธ ๐โ๏ธ ๐โ๏ธ ๐โ๏ธ ๐โ๏ธ ๐โ๏ธ ๐โ๏ธ ๐โ๏ธ ๐โ๏ธ ๐งโ๏ธ ๐งโ๏ธ ๐
๐คณ ๐ ๐บ ๐ฏโ๏ธ ๐ฏโ๏ธ ๐ด ๐ถโ๏ธ ๐ถโ๏ธ ๐โ๏ธ ๐โ๏ธ ๐ซ ๐ญ ๐ฌ ๐ ๐ฉโค๏ธ๐ฉ ๐จโค๏ธ๐จ ๐ ๐ฉโค๏ธ๐๐ฉ ๐จโค๏ธ๐๐จ ๐ช ๐จ๐ฉ๐ง ๐จ๐ฉ๐ง๐ฆ ๐จ๐ฉ๐ฆ๐ฆ ๐จ๐ฉ๐ง๐ง ๐ฉ๐ฉ๐ฆ ๐ฉ๐ฉ๐ง ๐ฉ๐ฉ๐ง๐ฆ ๐ฉ๐ฉ๐ฆ๐ฆ ๐ฉ๐ฉ๐ง๐ง ๐จ๐จ๐ฆ ๐จ๐จ๐ง ๐จ๐จ๐ง๐ฆ ๐จ๐จ๐ฆ๐ฆ ๐จ๐จ๐ง๐ง ๐ฉ๐ฆ ๐ฉ๐ง ๐ฉ๐ง๐ฆ ๐ฉ๐ฆ๐ฆ ๐ฉ๐ง๐ง ๐จ๐ฆ ๐จ๐ง ๐จ๐ง๐ฆ ๐จ๐ฆ๐ฆ ๐จ๐ง๐ง ๐คฒ ๐ ๐ ๐ ๐ค ๐ ๐ ๐ โ ๐ค ๐ค ๐ค โ๏ธ ๐ค ๐ค ๐ ๐ ๐ ๐ ๐ โ๏ธ โ ๐ค ๐ ๐ ๐ ๐ค ๐ช ๐ฆต ๐ฆถ ๐ โ๏ธ ๐ ๐ ๐ ๐ ๐ ๐
๐ ๐ ๐ฃ ๐ ๐ ๐ง ๐ฆด ๐ฆท ๐ฃ ๐ค ๐ฅ
// Clothing/Accessories
//๐งฅ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ก ๐ข ๐ ๐ ๐ฅพ ๐ฅฟ ๐งฆ ๐งค ๐งฃ ๐ฉ ๐งข ๐ ๐ โ ๐ ๐ ๐ ๐ ๐ผ ๐ ๐ ๐ถ ๐ฅฝ ๐ฅผ ๐ ๐งต ๐งถ
// Animals
//๐ถ ๐ฑ ๐ญ ๐น ๐ฐ ๐ฆ ๐ฆ ๐ป ๐ผ ๐ฆ ๐ฆก ๐จ ๐ฏ ๐ฆ ๐ฎ ๐ท ๐ฝ ๐ธ ๐ต ๐ ๐ ๐ ๐ ๐ ๐ง ๐ฆ ๐ค ๐ฃ ๐ฅ ๐ฆ ๐ฆข ๐ฆ
๐ฆ ๐ฆ ๐ฆ ๐ฆ ๐บ ๐ ๐ด ๐ฆ ๐ ๐ ๐ฆ ๐ ๐ ๐ ๐ ๐ฆ ๐ท ๐ธ ๐ฆ ๐ฆ ๐ฆ ๐ข ๐ ๐ฆ ๐ฆ ๐ฆ ๐ ๐ฆ ๐ฆ ๐ฆ ๐ก ๐ ๐ ๐ฌ ๐ณ ๐ ๐ฆ ๐ ๐
๐ ๐ฆ ๐ฆ ๐ ๐ฆ ๐ฆ ๐ช ๐ซ ๐ฆ ๐ฆ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ฆ ๐ ๐ฉ ๐ ๐ ๐ฆ ๐ ๐ ๐ ๐ ๐ฟ ๐ฆ ๐พ ๐ ๐ฒ ๐ต ๐ ๐ฒ ๐ณ ๐ด ๐ฑ ๐ฟ โ๏ธ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐พ ๐ ๐ท ๐น ๐ฅ ๐บ ๐ธ ๐ผ ๐ป ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ซ โญ๏ธ ๐ โจ โก๏ธ โ๏ธ ๐ฅ ๐ฅ ๐ช ๐ โ๏ธ ๐ค โ
๏ธ ๐ฅ โ๏ธ ๐ฆ ๐ง โ ๐ฉ ๐จ โ๏ธ โ๏ธ โ๏ธ ๐ฌ ๐จ ๐ง ๐ฆ โ๏ธ โ๏ธ ๐ ๐ซ
// Food/Drink
//๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ฅญ ๐ฅฅ ๐ฅ ๐
๐ ๐ฅ ๐ฅฆ ๐ฅ ๐ฅฌ ๐ถ ๐ฝ ๐ฅ ๐ฅ ๐ ๐ฅ ๐ ๐ฅ ๐ฅจ ๐ฅฏ ๐ง ๐ฅ ๐ณ ๐ฅ ๐ฅ ๐ฅฉ ๐ ๐ ๐ญ ๐ ๐ ๐ ๐ฅช ๐ฅ ๐ฎ ๐ฏ ๐ฅ ๐ฅ ๐ฅซ ๐ ๐ ๐ฒ ๐ ๐ฃ ๐ฑ ๐ฅ ๐ค ๐ ๐ ๐ ๐ฅ ๐ฅฎ ๐ฅ ๐ข ๐ก ๐ง ๐จ ๐ฆ ๐ฅง ๐ฐ ๐ ๐ฎ ๐ญ ๐ฌ ๐ซ ๐ฟ ๐ง ๐ฉ ๐ช ๐ฐ ๐ฅ ๐ฏ ๐ฅ ๐ผ โ๏ธ ๐ต ๐ฅค ๐ถ ๐บ ๐ป ๐ฅ ๐ท ๐ฅ ๐ธ ๐น ๐พ ๐ฅ ๐ด ๐ฝ ๐ฅฃ ๐ฅก ๐ฅข
// Activities/Sports
//โฝ๏ธ ๐ ๐ โพ๏ธ ๐ฅ ๐ ๐ ๐พ ๐ฅ ๐ฑ ๐ ๐ธ ๐ฅ
๐ ๐ ๐ฅ ๐ โณ๏ธ ๐น ๐ฃ ๐ฅ ๐ฅ ๐ฝ โธ ๐ฅ ๐ท ๐น ๐ฟ โท ๐ ๐๏ธโ๏ธ ๐๐ปโ๏ธ ๐๐ผโ๏ธ ๐๐ฝโ๏ธ ๐๐พโ๏ธ ๐๐ฟโ๏ธ ๐๏ธโ๏ธ ๐๐ปโ๏ธ ๐๐ผโ๏ธ ๐๐ฝโ๏ธ ๐๐พโ๏ธ ๐๐ฟโ๏ธ ๐คผโ๏ธ ๐คผโ๏ธ ๐คธโ๏ธ ๐คธ๐ปโ๏ธ ๐คธ๐ผโ๏ธ ๐คธ๐ฝโ๏ธ ๐คธ๐พโ๏ธ ๐คธ๐ฟโ๏ธ ๐คธโ๏ธ ๐คธ๐ปโ๏ธ ๐คธ๐ผโ๏ธ ๐คธ๐ฝโ๏ธ ๐คธ๐พโ๏ธ ๐คธ๐ฟโ๏ธ โน๏ธโ๏ธ โน๐ปโ๏ธ โน๐ผโ๏ธ โน๐ฝโ๏ธ โน๐พโ๏ธ โน๐ฟโ๏ธ โน๏ธโ๏ธ โน๐ปโ๏ธ โน๐ผโ๏ธ โน๐ฝโ๏ธ โน๐พโ๏ธ โน๐ฟโ๏ธ ๐คบ ๐คพโ๏ธ ๐คพ๐ปโ๏ธ ๐คพ๐ผโ๏ธ ๐คพ๐พโ๏ธ ๐คพ๐พโ๏ธ ๐คพ๐ฟโ๏ธ ๐คพโ๏ธ ๐คพ๐ปโ๏ธ ๐คพ๐ผโ๏ธ ๐คพ๐ฝโ๏ธ ๐คพ๐พโ๏ธ ๐คพ๐ฟโ๏ธ ๐๏ธโ๏ธ ๐๐ปโ๏ธ ๐๐ผโ๏ธ ๐๐ฝโ๏ธ ๐๐พโ๏ธ ๐๐ฟโ๏ธ ๐๏ธโ๏ธ ๐๐ปโ๏ธ ๐๐ผโ๏ธ ๐๐ฝโ๏ธ ๐๐พโ๏ธ ๐๐ฟโ๏ธ ๐ ๐๐ป ๐๐ผ ๐๐ฝ ๐๐พ ๐๐ฟ ๐งโ๏ธ ๐ง๐ปโ๏ธ ๐ง๐ผโ๏ธ ๐ง๐ฝโ๏ธ ๐ง๐พโ๏ธ ๐ง๐ฟโ๏ธ ๐งโ๏ธ ๐ง๐ปโ๏ธ ๐ง๐ผโ๏ธ ๐ง๐ฝโ๏ธ ๐ง๐พโ๏ธ ๐ง๐ฟโ๏ธ ๐โ๏ธ ๐๐ปโ๏ธ ๐๐ผโ๏ธ ๐๐ฝโ๏ธ ๐๐พโ๏ธ ๐๐ฟโ๏ธ ๐โ๏ธ ๐๐ปโ๏ธ ๐๐ผโ๏ธ ๐๐ฝโ๏ธ ๐๐พโ๏ธ ๐๐ฟโ๏ธ ๐โ๏ธ ๐๐ปโ๏ธ ๐๐ผโ๏ธ ๐๐ฝโ๏ธ ๐๐พโ๏ธ ๐๐ฟโ๏ธ ๐โ๏ธ ๐๐ปโ๏ธ ๐๐ผโ๏ธ ๐๐ฝโ๏ธ ๐๐พโ๏ธ ๐๐ฟโ๏ธ ๐คฝโ๏ธ ๐คฝ๐ปโ๏ธ ๐คฝ๐ผโ๏ธ ๐คฝ๐ฝโ๏ธ ๐คฝ๐พโ๏ธ ๐คฝ๐ฟโ๏ธ ๐คฝโ๏ธ ๐คฝ๐ปโ๏ธ ๐คฝ๐ผโ๏ธ ๐คฝ๐ฝโ๏ธ ๐คฝ๐พโ๏ธ ๐คฝ๐ฟโ๏ธ ๐ฃโ๏ธ ๐ฃ๐ปโ๏ธ ๐ฃ๐ผโ๏ธ ๐ฃ๐ฝโ๏ธ ๐ฃ๐พโ๏ธ ๐ฃ๐ฟโ๏ธ ๐ฃโ๏ธ ๐ฃ๐ปโ๏ธ ๐ฃ๐ผโ๏ธ ๐ฃ๐ฝโ๏ธ ๐ฃ๐พโ๏ธ ๐ฃ๐ฟโ๏ธ ๐งโ๏ธ ๐ง๐ปโ๏ธ ๐ง๐ผโ๏ธ ๐ง๐ฝโ๏ธ ๐ง๐พโ๏ธ ๐ง๐ฟโ๏ธ ๐งโ๏ธ ๐ง๐ปโ๏ธ ๐ง๐ผโ๏ธ ๐ง๐ฝโ๏ธ ๐ง๐พโ๏ธ ๐ง๐ฟโ๏ธ ๐ตโ๏ธ ๐ต๐ปโ๏ธ ๐ต๐ผโ๏ธ ๐ต๐ฝโ๏ธ ๐ต๐พโ๏ธ ๐ต๐ฟโ๏ธ ๐ตโ๏ธ ๐ต๐ปโ๏ธ ๐ต๐ผโ๏ธ ๐ต๐ฝโ๏ธ ๐ต๐พโ๏ธ ๐ต๐ฟโ๏ธ ๐ดโ๏ธ ๐ด๐ปโ๏ธ ๐ด๐ผโ๏ธ ๐ด๐ฝโ๏ธ ๐ด๐พโ๏ธ ๐ด๐ฟโ๏ธ ๐ดโ๏ธ ๐ด๐ปโ๏ธ ๐ด๐ผโ๏ธ ๐ด๐ฝโ๏ธ ๐ด๐พโ๏ธ ๐ด๐ฟโ๏ธ ๐ ๐ฅ ๐ฅ ๐ฅ ๐
๐ ๐ต ๐ ๐ซ ๐ ๐ช ๐คนโ๏ธ ๐คน๐ปโ๏ธ ๐คน๐ผโ๏ธ ๐คน๐ฝโ๏ธ ๐คน๐พโ๏ธ ๐คน๐ฟโ๏ธ ๐คนโ๏ธ ๐คน๐ปโ๏ธ ๐คน๐ผโ๏ธ ๐คน๐ฝโ๏ธ ๐คน๐พโ๏ธ ๐คน๐ฟโ๏ธ ๐ญ ๐จ ๐ฌ ๐ค ๐ง ๐ผ ๐น ๐ฅ ๐ท ๐บ ๐ธ ๐ป ๐ฒ ๐งฉ โ ๐ฏ ๐ณ ๐ฎ ๐ฐ
// Travel/Places
//๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ด ๐ฒ ๐ต ๐ ๐จ ๐ ๐ ๐ ๐ ๐ก ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐
๐ ๐ ๐ ๐ ๐ ๐ โ๏ธ ๐ซ ๐ฌ ๐ฉ ๐บ ๐ฐ ๐ ๐ธ ๐ ๐ถ โต๏ธ ๐ค ๐ฅ ๐ณ โด ๐ข โ๏ธ โฝ๏ธ ๐ง ๐ฆ ๐ฅ ๐ ๐บ ๐ฟ ๐ฝ ๐ผ ๐ฐ ๐ฏ ๐ ๐ก ๐ข ๐ โฒ๏ธ โฑ ๐ ๐ ๐ ๐ โฐ ๐ ๐ป ๐ โบ๏ธ ๐ ๐ก ๐ ๐ ๐ ๐ญ ๐ข ๐ฌ ๐ฃ ๐ค ๐ฅ ๐ฆ ๐จ ๐ช ๐ซ ๐ฉ ๐ ๐ โช๏ธ ๐ ๐ ๐ โฉ ๐ค ๐ฃ ๐พ ๐ ๐ ๐
๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐
// Objects
//โ๏ธ ๐ฑ ๐ฒ ๐ป โจ๏ธ ๐ฅ ๐จ ๐ฑ ๐ฒ ๐น ๐ ๐ฝ ๐พ ๐ฟ ๐ ๐ผ ๐ท ๐ธ ๐น ๐ฅ ๐ฝ ๐ ๐ โ๏ธ ๐ ๐ ๐บ ๐ป ๐ ๐ ๐ โฑ โฒ โฐ ๐ฐ โ๏ธ โณ ๐ก ๐ ๐ ๐ก ๐ฆ ๐ฏ ๐ ๐ข ๐ธ ๐ต ๐ด ๐ถ ๐ท ๐ฐ ๐ณ ๐งพ ๐ โ๏ธ ๐ง ๐จ โ ๐ โ ๐ฉ โ๏ธ โ ๐ซ ๐ฃ ๐ช ๐ก โ๏ธ ๐ก ๐ฌ โฐ๏ธ โฑ๏ธ ๐บ ๐งญ ๐งฑ ๐ฎ ๐งฟ ๐งธ ๐ฟ ๐ โ๏ธ ๐ญ ๐งฐ ๐งฒ ๐งช ๐งซ ๐งฌ ๐งฏ ๐ฌ ๐ณ ๐ ๐ ๐ก ๐ฝ ๐ฐ ๐ฟ ๐ ๐ ๐๐ป ๐๐ผ ๐๐ฝ ๐๐พ ๐๐ฟ ๐งด ๐งต ๐งถ ๐งท ๐งน ๐งบ ๐งป ๐งผ ๐งฝ ๐ ๐ ๐ ๐ช ๐ ๐ ๐ ๐ผ ๐ ๐งณ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐งจ ๐ ๐ฎ ๐ ๐งง โ๏ธ ๐ฉ ๐จ ๐ง ๐ ๐ฅ ๐ค ๐ฆ ๐ท ๐ช ๐ซ ๐ฌ ๐ญ ๐ฎ ๐ฏ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐
๐ ๐ ๐ณ ๐ ๐ ๐ ๐ ๐ ๐ ๐ฐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ โ๏ธ ๐ ๐ โ๏ธ ๐ ๐ ๐ โ๏ธ ๐ ๐ ๐ ๐ ๐ ๐
// Symbols
//โค๏ธ ๐งก ๐ ๐ ๐ ๐ ๐ค ๐ โฃ๏ธ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ โฎ๏ธ โ๏ธ โช๏ธ ๐ โธ๏ธ โก๏ธ ๐ฏ ๐ โฏ๏ธ โฆ๏ธ ๐ โ โ๏ธ โ๏ธ โ๏ธ โ๏ธ โ๏ธ โ๏ธ โ๏ธ โ๏ธ โ๏ธ โ๏ธ โ๏ธ โ๏ธ ๐ โ๏ธ ๐ โข๏ธ โฃ๏ธ ๐ด ๐ณ ๐ถ ๐๏ธ ๐ธ ๐บ ๐ท๏ธ โด๏ธ ๐ ๐ฎ ๐ ็ง๏ธ ็ฅ๏ธ ๐ด ๐ต ๐น ๐ฒ ๐
ฐ๏ธ ๐
ฑ๏ธ ๐ ๐ ๐
พ๏ธ ๐ โ โญ๏ธ ๐ โ๏ธ ๐ ๐ซ ๐ฏ ๐ข โจ๏ธ ๐ท ๐ฏ ๐ณ ๐ฑ ๐ ๐ต ๐ญ โ๏ธ โ โ โ โผ๏ธ โ๏ธ ๐
๐ ใฝ๏ธ โ ๏ธ ๐ธ ๐ฑ โ๏ธ ๐ฐ โป๏ธ โ
๐ฏ๏ธ ๐น โ๏ธ โณ๏ธ โ ๐ ๐ โ๏ธ ๐ ๐ค ๐ง ๐พ โฟ๏ธ ๐
ฟ๏ธ ๐ณ ๐๏ธ ๐ ๐ ๐ ๐
๐น ๐บ ๐ผ ๐ป ๐ฎ ๐ฆ ๐ถ ๐ ๐ฃ โน๏ธ ๐ค ๐ก ๐ ๐ ๐ ๐ ๐ ๐ ๐ 0๏ธโฃ 1๏ธโฃ 2๏ธโฃ 3๏ธโฃ 4๏ธโฃ 5๏ธโฃ 6๏ธโฃ 7๏ธโฃ 8๏ธโฃ 9๏ธโฃ ๐ ๐ข #๏ธโฃ *๏ธโฃ โ๏ธ โถ๏ธ โธ โฏ โน โบ โญ โฎ โฉ โช โซ โฌ โ๏ธ ๐ผ ๐ฝ โก๏ธ โฌ
๏ธ โฌ๏ธ โฌ๏ธ โ๏ธ โ๏ธ โ๏ธ โ๏ธ โ๏ธ โ๏ธ โช๏ธ โฉ๏ธ โคด๏ธ โคต๏ธ ๐ ๐ ๐ ๐ ๐ ๐ต ๐ถ โ โ โ โ๏ธ โพ ๐ฒ ๐ฑ โข๏ธ ยฉ๏ธ ยฎ๏ธ ๏น๏ธ โฐ โฟ ๐ ๐ ๐ ๐ ๐ โ๏ธ โ๏ธ ๐ โช๏ธ โซ๏ธ ๐ด ๐ต ๐บ ๐ป ๐ธ ๐น ๐ถ ๐ท ๐ณ ๐ฒ โช๏ธ โซ๏ธ โพ๏ธ โฝ๏ธ โผ๏ธ โป๏ธ โฌ๏ธ โฌ๏ธ ๐ ๐ ๐ ๐ ๐ ๐ ๐ฃ ๐ข ๐๐จ ๐ฌ ๐ญ ๐ฏ โ ๏ธ โฃ๏ธ โฅ๏ธ โฆ๏ธ ๐ ๐ด ๐๏ธ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ก ๐ข ๐ฃ ๐ค ๐ฅ ๐ฆ ๐ง
// Flags
//๐ณ๏ธ ๐ด ๐ ๐ฉ ๐ณ๏ธ๐ ๐ดโ ๏ธ ๐ฆ๐ซ ๐ฆ๐ฝ ๐ฆ๐ฑ ๐ฉ๐ฟ ๐ฆ๐ธ ๐ฆ๐ฉ ๐ฆ๐ด ๐ฆ๐ฎ ๐ฆ๐ถ ๐ฆ๐ฌ ๐ฆ๐ท ๐ฆ๐ฒ ๐ฆ๐ผ ๐ฆ๐บ ๐ฆ๐น ๐ฆ๐ฟ ๐ง๐ธ ๐ง๐ญ ๐ง๐ฉ ๐ง๐ง ๐ง๐พ ๐ง๐ช ๐ง๐ฟ ๐ง๐ฏ ๐ง๐ฒ ๐ง๐น ๐ง๐ด ๐ง๐ฆ ๐ง๐ผ ๐ง๐ท ๐ฎ๐ด ๐ป๐ฌ ๐ง๐ณ ๐ง๐ฌ ๐ง๐ซ ๐ง๐ฎ ๐ฐ๐ญ ๐จ๐ฒ ๐จ๐ฆ ๐ฎ๐จ ๐จ๐ป ๐ง๐ถ ๐ฐ๐พ ๐จ๐ซ ๐น๐ฉ ๐จ๐ฑ ๐จ๐ณ ๐จ๐ฝ ๐จ๐จ ๐จ๐ด ๐ฐ๐ฒ ๐จ๐ฌ ๐จ๐ฉ ๐จ๐ฐ ๐จ๐ท ๐จ๐ฎ ๐ญ๐ท ๐จ๐บ ๐จ๐ผ ๐จ๐พ ๐จ๐ฟ ๐ฉ๐ฐ ๐ฉ๐ฏ ๐ฉ๐ฒ ๐ฉ๐ด ๐ช๐จ ๐ช๐ฌ ๐ธ๐ป ๐ฌ๐ถ ๐ช๐ท ๐ช๐ช ๐ช๐น ๐ช๐บ ๐ซ๐ฐ ๐ซ๐ด ๐ซ๐ฏ ๐ซ๐ฎ ๐ซ๐ท ๐ฌ๐ซ ๐ต๐ซ ๐น๐ซ ๐ฌ๐ฆ ๐ฌ๐ฒ ๐ฌ๐ช ๐ฉ๐ช ๐ฌ๐ญ ๐ฌ๐ฎ ๐ฌ๐ท ๐ฌ๐ฑ ๐ฌ๐ฉ ๐ฌ๐ต ๐ฌ๐บ ๐ฌ๐น ๐ฌ๐ฌ ๐ฌ๐ณ ๐ฌ๐ผ ๐ฌ๐พ ๐ญ๐น ๐ญ๐ณ ๐ญ๐ฐ ๐ญ๐บ ๐ฎ๐ธ ๐ฎ๐ณ ๐ฎ๐ฉ ๐ฎ๐ท ๐ฎ๐ถ ๐ฎ๐ช ๐ฎ๐ฒ ๐ฎ๐ฑ ๐ฎ๐น ๐ฏ๐ฒ ๐ฏ๐ต ๐ ๐ฏ๐ช ๐ฏ๐ด ๐ฐ๐ฟ ๐ฐ๐ช ๐ฐ๐ฎ ๐ฝ๐ฐ ๐ฐ๐ผ ๐ฐ๐ฌ ๐ฑ๐ฆ ๐ฑ๐ป ๐ฑ๐ง ๐ฑ๐ธ ๐ฑ๐ท ๐ฑ๐พ ๐ฑ๐ฎ ๐ฑ๐น ๐ฑ๐บ ๐ฒ๐ด ๐ฒ๐ฐ ๐ฒ๐ฌ ๐ฒ๐ผ ๐ฒ๐พ ๐ฒ๐ป ๐ฒ๐ฑ ๐ฒ๐น ๐ฒ๐ญ ๐ฒ๐ถ ๐ฒ๐ท ๐ฒ๐บ ๐พ๐น ๐ฒ๐ฝ ๐ซ๐ฒ ๐ฒ๐ฉ ๐ฒ๐จ ๐ฒ๐ณ ๐ฒ๐ช ๐ฒ๐ธ ๐ฒ๐ฆ ๐ฒ๐ฟ ๐ฒ๐ฒ ๐ณ๐ฆ ๐ณ๐ท ๐ณ๐ต ๐ณ๐ฑ ๐ณ๐จ ๐ณ๐ฟ ๐ณ๐ฎ ๐ณ๐ช ๐ณ๐ฌ ๐ณ๐บ ๐ณ๐ซ ๐ฐ๐ต ๐ฒ๐ต ๐ณ๐ด ๐ด๐ฒ ๐ต๐ฐ ๐ต๐ผ ๐ต๐ธ ๐ต๐ฆ ๐ต๐ฌ ๐ต๐พ ๐ต๐ช ๐ต๐ญ ๐ต๐ณ ๐ต๐ฑ ๐ต๐น ๐ต๐ท ๐ถ๐ฆ ๐ท๐ช ๐ท๐ด ๐ท๐บ ๐ท๐ผ ๐ผ๐ธ ๐ธ๐ฒ ๐ธ๐ฆ ๐ธ๐ณ ๐ท๐ธ ๐ธ๐จ ๐ธ๐ฑ ๐ธ๐ฌ ๐ธ๐ฝ ๐ธ๐ฐ ๐ธ๐ฎ ๐ฌ๐ธ ๐ธ๐ง ๐ธ๐ด ๐ฟ๐ฆ ๐ฐ๐ท ๐ธ๐ธ ๐ช๐ธ ๐ฑ๐ฐ ๐ง๐ฑ ๐ธ๐ญ ๐ฐ๐ณ ๐ฑ๐จ ๐ต๐ฒ ๐ป๐จ ๐ธ๐ฉ ๐ธ๐ท ๐ธ๐ฟ ๐ธ๐ช ๐จ๐ญ ๐ธ๐พ ๐น๐ผ ๐น๐ฏ ๐น๐ฟ ๐น๐ญ ๐น๐ฑ ๐น๐ฌ ๐น๐ฐ ๐น๐ด ๐น๐น ๐น๐ณ ๐น๐ท ๐น๐ฒ ๐น๐จ ๐น๐ป ๐ป๐ฎ ๐บ๐ฌ ๐บ๐ฆ ๐ฆ๐ช ๐ฌ๐ง ๐ด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ ๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ ๐ด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ ๐บ๐ณ ๐บ๐ธ ๐บ๐พ ๐บ๐ฟ ๐ป๐บ ๐ป๐ฆ ๐ป๐ช ๐ป๐ณ ๐ผ๐ซ ๐ช๐ญ ๐พ๐ช ๐ฟ๐ฒ ๐ฟ๐ผ
// New
//๐ฅฑ ๐ค ๐ฆพ ๐ฆฟ ๐ฆป ๐ง ๐งโ๏ธ ๐งโ๏ธ ๐ง ๐งโ๏ธ ๐งโ๏ธ ๐ง ๐งโ๏ธ ๐งโ๏ธ ๐จ๐ฆฏ ๐ฉ๐ฆฏ ๐จ๐ฆผ ๐ฉ๐ฆผ ๐จ๐ฆฝ ๐ฉ๐ฆฝ ๐ฆง ๐ฆฎ ๐๐ฆบ ๐ฆฅ ๐ฆฆ ๐ฆจ ๐ฆฉ ๐ง ๐ง
๐ง ๐ง ๐ง ๐ฆช ๐ง ๐ง ๐ง ๐ ๐ฆฝ ๐ฆผ ๐บ ๐ช ๐ช ๐คฟ ๐ช ๐ช ๐ฆบ ๐ฅป ๐ฉฑ ๐ฉฒ ๐ฉณ ๐ฉฐ ๐ช ๐ช ๐ช ๐ฆฏ ๐ฉธ ๐ฉน ๐ฉบ ๐ช ๐ช ๐ค ๐ค ๐ ๐ก ๐ข ๐ฃ ๐ค ๐ฅ ๐ง ๐จ ๐ฉ ๐ฆ ๐ช ๐ซ
}
// KeyboardKey {
// id: hideKey
// anchors.bottom: keyboard.bottom
// anchors.left: keyboard.left
// text: "โฌ๏ธ"
// key: Qt.Key_unknown
// repeatOnHold: false
// onClick: {
// keyboard.hide()
// }
// }
// KeyboardKey {
// id: switchKey
// anchors.bottom: keyboard.bottom
// anchors.right: keyboard.right
// text: ["โบ๏ธ","๐ค"][page] || "ABC"
// key: Qt.Key_unknown
// repeatOnHold: false
// onClick: {
// page++;
// if(page < 0){
// page = 1;
// }else if(page > 1){
// page = 0;
// }
// }
// }
}