-
Notifications
You must be signed in to change notification settings - Fork 2
/
constants.py
25 lines (23 loc) · 2.05 KB
/
constants.py
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
class KEYBOARD:
KEYS1=[
{'esc':['esc',1,1],'f1':['F1',1,1],'f2':['F2',1,1],'f3':['F3',1,1],'f4':['F4',1,1],'f5':['F5',1,1],'f6':['F6',1,1],'f7':['F7',1,1],'f8':['F8',1,1],'f9':['F9',1,1],'f10':['F10',1,1],'f11':['F11',1,1],'f12':['F12',1,1],'delete':['Del',1,1]},
{'`':['`',1,1],'1':['1',1,1],'2':['2',1,1],'3':['3',1,1],'4':['4',1,1],'5':['5',1,1],'6':['6',1,1],'7':['7',1,1],'8':['8',1,1],'9':['9',1,1],'0':['0',1,1],'-':['-',1,1],'=':['=',1,1],'backspace':['←',1,1]},
{'tab':['tab',1.25,1],'q':['q',1,1],'w':['w',1,1],'e':['e',1,1],'r':['r',1,1],'t':['t',1,1],'y':['y',1,1],'u':['u',1,1],'i':['i',1,1],'o':['o',1,1],'p':['p',1,1],'[':['[',1,1],']':[']',1,1],'\\':['\\',0.75,1]},
{'caps':['caps',1.5,1],'a':['a',1,1],'s':['s',1,1],'d':['d',1,1],'f':['f',1,1],'g':['g',1,1],'h':['h',1,1],'j':['j',1,1],'k':['k',1,1],'l':['l',1,1],';':[';',1,1],'\'':['\'',1,1],'enter':['enter',1.5,1]},
{'lshift':['shift',2,1],'z':['z',1,1],'x':['x',1,1],'c':['c',1,1],'v':['v',1,1],'b':['b',1,1],'n':['n',1,1],'m':['m',1,1],',':[',',1,1],'.':['.',1,1],'/':['/',1,1],'rshift':['shift',2,1]},
{'lctrl':['ctrl',1.5,1],'lsuper':['win',1,1],'lalt':['alt',1.5,1],'space':['space',5,1],'app':['menu',1.25,1],'ralt':['alt',1.5,1],'rsuper':['win',1,1],'rctrl':['ctrl',1.25,1]}]
KEYS2=[
{'printscreen':['Print\nScr',1,1],'scrolllock':['Scr\nLock',1,1],'pausebreak':['Pause\nBreak',1,1]},
{'insert':['Ins',1,1],'home':['Home',1,1],'pageup':['PgUp',1,1]},
{'delete':['Del',1,1],'end':['End',1,1],'pagedown':['PgDn',1,1]},
{},
{'up':['↑',1,1,1]},
{'left':['←',1,1],'down':['↓',1,1],'right':['→',1,1]},
]
KEYS3=[{},
{'numlock':['Num\nLock',1,1],'numpad/':['/',1,1],'numpad*':['*',1,1],'numpad-':['-',1,1]},
{'numpad7':['7',1,1],'numpad8':['8',1,1],'numpad9':['9',1,1],'numpad+':['+',1,2]},
{'numpad4':['4',1,1],'numpad5':['5',1,1],'numpad6':['6',1,1]},
{'numpad1':['1',1,1],'numpad2':['2',1,1],'numpad3':['3',1,1],'numpadenter':['Enter',1,2]},
{'numpad0':['0',2,1],'numpad.':['.',1,1]},
]