2018-03-21 06:10:28 -04:00
|
|
|
#!/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Fenrir TTY screen reader
|
|
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
|
|
|
|
from fenrirscreenreader.core import debug
|
|
|
|
|
|
|
|
class screenDriver():
|
|
|
|
def __init__(self):
|
|
|
|
self._isInitialized = False
|
|
|
|
self.bgColorNames = {0: _('black'), 1: _('blue'), 2: _('green'), 3: _('cyan'), 4: _('red'), 5: _('Magenta'), 6: _('brown/yellow'), 7: _('white')}
|
|
|
|
self.fgColorNames = {0: _('Black'), 1: _('Blue'), 2: _('Green'), 3: _('Cyan'), 4: _('Red'), 5: _('Magenta'), 6: _('brown/yellow'), 7: _('Light gray'), 8: _('Dark gray'), 9: _('Light blue'), 10: ('Light green'), 11: _('Light cyan'), 12: _('Light red'), 13: _('Light magenta'), 14: _('Light yellow'), 15: _('White')}
|
|
|
|
def initialize(self, environment):
|
|
|
|
self.env = environment
|
|
|
|
self._isInitialized = True
|
|
|
|
def shutdown(self):
|
|
|
|
self._isInitialized = False
|
|
|
|
def getCurrScreen(self):
|
|
|
|
pass
|
2018-05-24 05:01:15 -04:00
|
|
|
def injectTextToScreen(self, text, screen = None):
|
|
|
|
pass
|
2018-03-21 06:10:28 -04:00
|
|
|
def getCurrApplication(self):
|
|
|
|
pass
|
|
|
|
def getSessionInformation(self):
|
2018-05-24 05:01:15 -04:00
|
|
|
pass
|