comparison semiconginev2/old/platform/linux/symkey_map.nim @ 1218:56781cc0fc7c compiletime-tests

did: renamge main package
author sam <sam@basx.dev>
date Wed, 17 Jul 2024 21:01:37 +0700
parents semicongine/old/platform/linux/symkey_map.nim@a3eb305bcac2
children
comparison
equal deleted inserted replaced
1217:f819a874058f 1218:56781cc0fc7c
1 import std/tables
2 export tables
3
4 import ../../thirdparty/x11/x
5
6
7 import ../../events
8
9 # got values (keycodes) from xev
10 const KeyTypeMap* = {
11 9: Escape, 67: F1, 68: F2, 69: F3, 70: F4, 71: F5, 72: F6, 73: F7, 74: F8,
12 75: F9, 76: F10, 95: F11, 96: F12,
13 49: NumberRowExtra1, 10: `1`, 11: `2`, 12: `3`, 13: `4`, 14: `5`, 15: `6`,
14 16: `7`, 17: `8`, 18: `9`, 19: `0`, 20: NumberRowExtra2, 21: NumberRowExtra3,
15 24: Q, 25: W, 26: E, 27: R, 28: T, 29: Y, 30: U, 31: I, 32: O, 33: P, 38: A,
16 39: S, 40: D, 41: Key.F, 42: G, 43: H, 44: J, 45: K, 46: L, 52: Z, 53: X,
17 54: C, 55: V, 56: B, 57: N, 58: M,
18
19 23: Tab, 66: CapsLock, 50: ShiftL, 62: ShiftR, 37: CtrlL, 105: CtrlR,
20 133: SuperL, 134: SuperR,
21 64: AltL, 108: AltR,
22 65: Space, 36: Enter, 22: Backspace,
23 34: LetterRow1Extra1, 35: LetterRow1Extra2,
24 47: LetterRow2Extra1, 48: LetterRow2Extra2, 51: LetterRow2Extra3,
25 59: LetterRow3Extra1, 60: LetterRow3Extra2, 61: LetterRow3Extra3,
26 111: Up, 116: Down, 113: Left, 114: Right,
27 112: PageUp, 117: PageDown, 110: Home, 115: End, 118: Insert, 119: Delete,
28 107: PrintScreen, 78: ScrollLock, 127: Pause,
29 }.toTable
30
31 const MouseButtonTypeMap* = {
32 Button1: MouseButton.Mouse1,
33 Button2: MouseButton.Mouse2,
34 Button3: MouseButton.Mouse3,
35 }.toTable