22 lines
624 B
Python
22 lines
624 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
|
|
class command():
|
|
def __init__(self):
|
|
pass
|
|
def initialize(self, environment):
|
|
self.env = environment
|
|
def shutdown(self):
|
|
pass
|
|
def getDescription(self):
|
|
return _('jump up 10% in v menu')
|
|
def run(self):
|
|
self.env['runtime']['vmenuManager'].pageUp()
|
|
text = self.env['runtime']['vmenuManager'].getCurrentEntry()
|
|
self.env['runtime']['outputManager'].presentText(text, interrupt=True)
|
|
def setCallback(self, callback):
|
|
pass |