Add page up and page down to move through the voice browser by 10%.

This commit is contained in:
Storm Dragon 2025-06-16 01:08:05 -04:00
parent 43871cea3c
commit d81d563bb6
4 changed files with 74 additions and 1 deletions

View File

@ -0,0 +1,22 @@
#!/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 down 10% in v menu')
def run(self):
self.env['runtime']['vmenuManager'].pageDown()
text = self.env['runtime']['vmenuManager'].getCurrentEntry()
self.env['runtime']['outputManager'].presentText(text, interrupt=True)
def setCallback(self, callback):
pass

View File

@ -0,0 +1,22 @@
#!/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

View File

@ -138,6 +138,9 @@ class vmenuManager():
self.env['bindings'][str([1, ['KEY_X']])] = 'SEARCH_X' self.env['bindings'][str([1, ['KEY_X']])] = 'SEARCH_X'
self.env['bindings'][str([1, ['KEY_Y']])] = 'SEARCH_Y' self.env['bindings'][str([1, ['KEY_Y']])] = 'SEARCH_Y'
self.env['bindings'][str([1, ['KEY_Z']])] = 'SEARCH_Z' self.env['bindings'][str([1, ['KEY_Z']])] = 'SEARCH_Z'
# page navigation
self.env['bindings'][str([1, ['KEY_PAGEUP']])] = 'PAGE_UP_VMENU'
self.env['bindings'][str([1, ['KEY_PAGEDOWN']])] = 'PAGE_DOWN_VMENU'
except Exception as e: except Exception as e:
print(e) print(e)
else: else:
@ -226,6 +229,32 @@ class vmenuManager():
else: else:
self.currIndex[len(self.currIndex) - 1] -= 1 self.currIndex[len(self.currIndex) - 1] -= 1
return True return True
def pageUp(self):
if self.currIndex == None:
return False
menuSize = len(self.getNestedByPath(self.menuDict, self.currIndex[:-1]))
if menuSize <= 1:
return False
jumpSize = max(1, int(menuSize * 0.1)) # 10% of menu size, minimum 1
newIndex = self.currIndex[len(self.currIndex) - 1] - jumpSize
if newIndex < 0:
newIndex = 0
self.currIndex[len(self.currIndex) - 1] = newIndex
return True
def pageDown(self):
if self.currIndex == None:
return False
menuSize = len(self.getNestedByPath(self.menuDict, self.currIndex[:-1]))
if menuSize <= 1:
return False
jumpSize = max(1, int(menuSize * 0.1)) # 10% of menu size, minimum 1
newIndex = self.currIndex[len(self.currIndex) - 1] + jumpSize
if newIndex >= menuSize:
newIndex = menuSize - 1
self.currIndex[len(self.currIndex) - 1] = newIndex
return True
def getCurrentEntry(self): def getCurrentEntry(self):
return self.getKeysByPath(self.menuDict, self.currIndex)[self.currIndex[-1]] return self.getKeysByPath(self.menuDict, self.currIndex)[self.currIndex[-1]]

View File

@ -4,5 +4,5 @@
# Fenrir TTY screen reader # Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers. # By Chrys, Storm Dragon, and contributers.
version = "2025.06.15" version = "2025.06.16"
codeName = "testing" codeName = "testing"