add prototype commands for announce capslock, scrolllock and numlock
This commit is contained in:
parent
f637ec5122
commit
aa5d438ab4
27
src/fenrir-package/commands/onInput/80300-scrolllock.py
Normal file
27
src/fenrir-package/commands/onInput/80300-scrolllock.py
Normal file
@ -0,0 +1,27 @@
|
||||
#!/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
pass
|
||||
def initialize(self, environment):
|
||||
self.env = environment
|
||||
def shutdown(self):
|
||||
pass
|
||||
def getDescription(self):
|
||||
return 'No description found'
|
||||
def run(self):
|
||||
if self.env['input']['oldScrollLock'] == self.env['input']['newScrollLock']:
|
||||
return
|
||||
if self.env['input']['newScrollLock']:
|
||||
self.env['runtime']['outputManager'].presentText("Scrolllock on", interrupt=False)
|
||||
else:
|
||||
self.env['runtime']['outputManager'].presentText("Scrolllock off", interrupt=False)
|
||||
|
||||
def setCallback(self, callback):
|
||||
pass
|
27
src/fenrir-package/commands/onInput/80500-numlock.py
Normal file
27
src/fenrir-package/commands/onInput/80500-numlock.py
Normal file
@ -0,0 +1,27 @@
|
||||
#!/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
pass
|
||||
def initialize(self, environment):
|
||||
self.env = environment
|
||||
def shutdown(self):
|
||||
pass
|
||||
def getDescription(self):
|
||||
return 'No description found'
|
||||
def run(self):
|
||||
if self.env['input']['oldNumLock'] == self.env['input']['newNumLock']:
|
||||
return
|
||||
if self.env['input']['newNumLock']:
|
||||
self.env['runtime']['outputManager'].presentText("Numlock on", interrupt=False)
|
||||
else:
|
||||
self.env['runtime']['outputManager'].presentText("Numlock off", interrupt=False)
|
||||
|
||||
def setCallback(self, callback):
|
||||
pass
|
Loading…
Reference in New Issue
Block a user