mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2026-03-06 17:37:33 +01:00
Avance
This commit is contained in:
35
srcantiguo/output.py
Normal file
35
srcantiguo/output.py
Normal file
@@ -0,0 +1,35 @@
|
||||
# *- coding: utf-8 -*-
|
||||
import logging as original_logging
|
||||
logging = original_logging.getLogger('core.output')
|
||||
|
||||
from accessible_output2 import outputs
|
||||
import sys
|
||||
|
||||
speaker = None
|
||||
|
||||
def speak(text, interrupt=0, speech=True, braille=True):
|
||||
global speaker
|
||||
if not speaker:
|
||||
setup()
|
||||
if speech:
|
||||
speaker.speak(text, interrupt)
|
||||
if braille:
|
||||
speaker.braille(text)
|
||||
|
||||
def setup ():
|
||||
global speaker
|
||||
logging.debug("Initializing output subsystem.")
|
||||
try:
|
||||
# speaker = speech.Speaker(speech.outputs.Sapi5())
|
||||
# else:
|
||||
speaker = outputs.auto.Auto()
|
||||
except:
|
||||
return logging.exception("Output: Error during initialization.")
|
||||
|
||||
def copy(text):
|
||||
import win32clipboard
|
||||
#Copies text to the clipboard.
|
||||
win32clipboard.OpenClipboard()
|
||||
win32clipboard.EmptyClipboard()
|
||||
win32clipboard.SetClipboardText(text, win32clipboard.CF_UNICODETEXT)
|
||||
win32clipboard.CloseClipboard()
|
||||
Reference in New Issue
Block a user