TODO
This commit is contained in:
parent
f1364444d3
commit
12f1e88c4e
2
TODO
2
TODO
@ -12,7 +12,7 @@ ToDos in Priority order:
|
|||||||
forwart nonshortcuts to system [x]
|
forwart nonshortcuts to system [x]
|
||||||
make grabbing configuarble [-]
|
make grabbing configuarble [-]
|
||||||
possiblity to forewart shortcut [proxyshortcut] [x]
|
possiblity to forewart shortcut [proxyshortcut] [x]
|
||||||
possiblity to forewart shortcut [pressing twice while timeout] []
|
possiblity to forewart shortcut (or use them as shortcut) [pressing twice while timeout] []
|
||||||
cleanup inputManager [-]
|
cleanup inputManager [-]
|
||||||
split input driver out of the handler
|
split input driver out of the handler
|
||||||
|
|
||||||
|
@ -5,6 +5,9 @@ import time
|
|||||||
# used as shared memory between commands
|
# used as shared memory between commands
|
||||||
# use this in your own commands
|
# use this in your own commands
|
||||||
commandBuffer = {
|
commandBuffer = {
|
||||||
|
'genericList':[],
|
||||||
|
'genericListSource':'',
|
||||||
|
'genericListSelection': 0,
|
||||||
'clipboard':[],
|
'clipboard':[],
|
||||||
'currClipboard': 0,
|
'currClipboard': 0,
|
||||||
'Marks':{'1':None, '2':None, '3':None}
|
'Marks':{'1':None, '2':None, '3':None}
|
||||||
|
@ -5,10 +5,15 @@ input = {
|
|||||||
'currInput': {},
|
'currInput': {},
|
||||||
'prevInput': {},
|
'prevInput': {},
|
||||||
'currEvent': None,
|
'currEvent': None,
|
||||||
'firstEvent': {},
|
'firstEvent': None
|
||||||
|
'firstEvent': None,
|
||||||
'currShortcutString': '',
|
'currShortcutString': '',
|
||||||
'consumeKey': False,
|
'consumeKey': False,
|
||||||
'fenrirKey': ['82'],
|
'fenrirKey': ['82'],
|
||||||
'keyForeward': False,
|
'keyForeward': False,
|
||||||
'lastInputTime':time.time(),
|
'lastInputTime':time.time(),
|
||||||
|
'oldNumLock': True,
|
||||||
|
'newNumLock':True,
|
||||||
|
'oldCapsLock':False,
|
||||||
|
'newCapsLock':False
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user