even more bits
This commit is contained in:
parent
70fc93f311
commit
5564ae780c
@ -1,26 +0,0 @@
|
|||||||
#!/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
|
|
||||||
self.keyMakro = [[1,'KEY_LEFTSHIFT'],[1,'KEY_LEFTCTRL'],[1,'KEY_N'],[0.05,'SLEEP'],[0,'KEY_N'],[0,'KEY_LEFTCTRL'],[0,'KEY_LEFTSHIFT']]
|
|
||||||
self.byteMakro = b''
|
|
||||||
def shutdown(self):
|
|
||||||
pass
|
|
||||||
def getDescription(self):
|
|
||||||
return 'No description found'
|
|
||||||
def run(self):
|
|
||||||
if self.env['runtime']['inputManager'].getShortcutType() in ['KEY']:
|
|
||||||
self.env['runtime']['inputManager'].sendKeys(self.keyMakro)
|
|
||||||
if self.env['runtime']['inputManager'].getShortcutType() in ['BYTE']:
|
|
||||||
self.env['runtime']['byteManager'].sendBytes(self.byteMakro)
|
|
||||||
def setCallback(self, callback):
|
|
||||||
pass
|
|
@ -8,12 +8,14 @@ from fenrirscreenreader.core import debug
|
|||||||
|
|
||||||
class command():
|
class command():
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
# example:
|
pass
|
||||||
# self.keyMakro = [[1,'KEY_CONTROL'],[300,'SLEEP'],[1,'KEY_O'],[10,'SLEEP'],[0,'KEY_O'], [10,'SLEEP'],[0,'KEY_CONTROL']]
|
|
||||||
self.keyMakro = []
|
|
||||||
self.byteMakro = []
|
|
||||||
def initialize(self, environment):
|
def initialize(self, environment):
|
||||||
self.env = environment
|
self.env = environment
|
||||||
|
# examples:
|
||||||
|
# self.keyMakro = [[1,'KEY_LEFTCTRL'],[1,'KEY_O'],[0.05,'SLEEP'],[0,'KEY_O'],[0,'KEY_LEFTCTRL']]
|
||||||
|
# self.keyMakro = [[1,'KEY_LEFTSHIFT'],[1,'KEY_LEFTCTRL'],[1,'KEY_N'],[0.05,'SLEEP'],[0,'KEY_N'],[0,'KEY_LEFTCTRL'],[0,'KEY_LEFTSHIFT']]
|
||||||
|
self.keyMakro = []
|
||||||
|
self.byteMakro = []
|
||||||
def shutdown(self):
|
def shutdown(self):
|
||||||
pass
|
pass
|
||||||
def getDescription(self):
|
def getDescription(self):
|
||||||
@ -21,7 +23,7 @@ class command():
|
|||||||
def run(self):
|
def run(self):
|
||||||
if self.env['runtime']['inputManager'].getShortcutType() in ['KEY']:
|
if self.env['runtime']['inputManager'].getShortcutType() in ['KEY']:
|
||||||
self.env['runtime']['inputManager'].sendKeys(self.keyMakro)
|
self.env['runtime']['inputManager'].sendKeys(self.keyMakro)
|
||||||
if self.env['runtime']['inputManager'].getShortcutType() in ['BYTE']:
|
elif self.env['runtime']['inputManager'].getShortcutType() in ['BYTE']:
|
||||||
self.env['runtime']['byteManager'].sendBytes(self.byteMakro)
|
self.env['runtime']['byteManager'].sendBytes(self.byteMakro)
|
||||||
def setCallback(self, callback):
|
def setCallback(self, callback):
|
||||||
pass
|
pass
|
||||||
|
Loading…
Reference in New Issue
Block a user