fenrir/src/fenrir-package/commands/onScreenChanged/70000-speak_incomming.py
2016-07-17 14:25:59 +02:00

22 lines
1008 B
Python

#!/bin/python
class command():
def __init__(self):
pass
def run(self, environment):
print(environment['runtime']['settingsManager'].getSettingAsBool(environment, 'keyboard', 'charEcho') )
if not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'keyboard', 'charEcho') and\
len(environment['screenData']['newDelta']) <= 2 and \
environment['screenData']['newCursor'] != environment['screenData']['oldCursor']:
print('dri')
return environment
if environment['screenData']['newDelta'] == environment['screenData']['oldDelta'] and \
environment['screenData']['newTTY'] == environment['screenData']['oldTTY']:
return environment
environment['runtime']['outputManager'].presentText(environment, environment['screenData']['newDelta'],False)
return environment
def setCallback(self, callback):
pass
def shutdown(self):
pass