add initial quick menu support
This commit is contained in:
parent
17c2045e46
commit
514b5368b4
@ -0,0 +1,26 @@
|
|||||||
|
#!/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Fenrir TTY screen reader
|
||||||
|
# By Chrys, Storm Dragon, and contributers.
|
||||||
|
|
||||||
|
from fenrirscreenreader.core import debug
|
||||||
|
|
||||||
|
class command():
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
||||||
|
def initialize(self, environment):
|
||||||
|
self.env = environment
|
||||||
|
def shutdown(self):
|
||||||
|
pass
|
||||||
|
def getDescription(self):
|
||||||
|
return _('get current quick menu entry')
|
||||||
|
def run(self):
|
||||||
|
menu = ''
|
||||||
|
value = ''
|
||||||
|
menu = self.env['runtime']['quickMenuManager'].getCurrentEntry()
|
||||||
|
if menu != '':
|
||||||
|
value = self.env['runtime']['quickMenuManager'].getCurrentValue()
|
||||||
|
self.env['runtime']['outputManager'].presentText(menu + ' ' + value, interrupt=True)
|
||||||
|
def setCallback(self, callback):
|
||||||
|
pass
|
@ -0,0 +1,22 @@
|
|||||||
|
#!/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Fenrir TTY screen reader
|
||||||
|
# By Chrys, Storm Dragon, and contributers.
|
||||||
|
|
||||||
|
from fenrirscreenreader.core import debug
|
||||||
|
|
||||||
|
class command():
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
||||||
|
def initialize(self, environment):
|
||||||
|
self.env = environment
|
||||||
|
def shutdown(self):
|
||||||
|
pass
|
||||||
|
def getDescription(self):
|
||||||
|
return _('get current quick menu value')
|
||||||
|
def run(self):
|
||||||
|
value = self.env['runtime']['quickMenuManager'].getCurrentValue()
|
||||||
|
self.env['runtime']['outputManager'].presentText(value, interrupt=True)
|
||||||
|
def setCallback(self, callback):
|
||||||
|
pass
|
@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Fenrir TTY screen reader
|
||||||
|
# By Chrys, Storm Dragon, and contributers.
|
||||||
|
|
||||||
|
from fenrirscreenreader.core import debug
|
||||||
|
|
||||||
|
class command():
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
||||||
|
def initialize(self, environment):
|
||||||
|
self.env = environment
|
||||||
|
def shutdown(self):
|
||||||
|
pass
|
||||||
|
def getDescription(self):
|
||||||
|
return _('get next quick menu entry')
|
||||||
|
def run(self):
|
||||||
|
menu = ''
|
||||||
|
value = ''
|
||||||
|
if self.env['runtime']['quickMenuManager'].nextEntry():
|
||||||
|
menu = self.env['runtime']['quickMenuManager'].getCurrentEntry()
|
||||||
|
if menu != '':
|
||||||
|
value = self.env['runtime']['quickMenuManager'].getCurrentValue()
|
||||||
|
self.env['runtime']['outputManager'].presentText(menu + ' ' + value, interrupt=True)
|
||||||
|
else:
|
||||||
|
self.env['runtime']['outputManager'].presentText(_('Quick menu not available'), interrupt=True)
|
||||||
|
def setCallback(self, callback):
|
||||||
|
pass
|
@ -0,0 +1,25 @@
|
|||||||
|
#!/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Fenrir TTY screen reader
|
||||||
|
# By Chrys, Storm Dragon, and contributers.
|
||||||
|
|
||||||
|
from fenrirscreenreader.core import debug
|
||||||
|
|
||||||
|
class command():
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
||||||
|
def initialize(self, environment):
|
||||||
|
self.env = environment
|
||||||
|
def shutdown(self):
|
||||||
|
pass
|
||||||
|
def getDescription(self):
|
||||||
|
return _('get next quick menu value')
|
||||||
|
def run(self):
|
||||||
|
if self.env['runtime']['quickMenuManager'].nextValue():
|
||||||
|
value = self.env['runtime']['quickMenuManager'].getCurrentValue()
|
||||||
|
self.env['runtime']['outputManager'].presentText(value, interrupt=True)
|
||||||
|
def setCallback(self, callback):
|
||||||
|
pass
|
||||||
|
def setCallback(self, callback):
|
||||||
|
pass
|
@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Fenrir TTY screen reader
|
||||||
|
# By Chrys, Storm Dragon, and contributers.
|
||||||
|
|
||||||
|
from fenrirscreenreader.core import debug
|
||||||
|
|
||||||
|
class command():
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
||||||
|
def initialize(self, environment):
|
||||||
|
self.env = environment
|
||||||
|
def shutdown(self):
|
||||||
|
pass
|
||||||
|
def getDescription(self):
|
||||||
|
return _('get previous quick menu entry')
|
||||||
|
def run(self):
|
||||||
|
menu = ''
|
||||||
|
value = ''
|
||||||
|
if self.env['runtime']['quickMenuManager'].prevEntry():
|
||||||
|
menu = self.env['runtime']['quickMenuManager'].getCurrentEntry()
|
||||||
|
if menu != '':
|
||||||
|
value = self.env['runtime']['quickMenuManager'].getCurrentValue()
|
||||||
|
self.env['runtime']['outputManager'].presentText(menu + ' ' + value, interrupt=True)
|
||||||
|
else:
|
||||||
|
self.env['runtime']['outputManager'].presentText(_('Quick menu not available'), interrupt=True)
|
||||||
|
def setCallback(self, callback):
|
||||||
|
pass
|
@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Fenrir TTY screen reader
|
||||||
|
# By Chrys, Storm Dragon, and contributers.
|
||||||
|
|
||||||
|
from fenrirscreenreader.core import debug
|
||||||
|
|
||||||
|
class command():
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
||||||
|
def initialize(self, environment):
|
||||||
|
self.env = environment
|
||||||
|
def shutdown(self):
|
||||||
|
pass
|
||||||
|
def getDescription(self):
|
||||||
|
return _('get previous quick menu value')
|
||||||
|
def run(self):
|
||||||
|
if self.env['runtime']['quickMenuManager'].prevValue():
|
||||||
|
value = self.env['runtime']['quickMenuManager'].getCurrentValue()
|
||||||
|
self.env['runtime']['outputManager'].presentText(value, interrupt=True)
|
||||||
|
def setCallback(self, callback):
|
||||||
|
pass
|
Loading…
Reference in New Issue
Block a user