16 |
16 |
17 @signal executeAsyncFinished() emitted to indicate the end of an |
17 @signal executeAsyncFinished() emitted to indicate the end of an |
18 asynchronously executed list of commands (e.g. a script) |
18 asynchronously executed list of commands (e.g. a script) |
19 @signal dataReceived(data) emitted to send data received via the connection |
19 @signal dataReceived(data) emitted to send data received via the connection |
20 for further processing |
20 for further processing |
|
21 @signal osdInfo(str) emitted when some OSD data was received from the device |
21 """ |
22 """ |
22 |
23 |
23 executeAsyncFinished = pyqtSignal() |
24 executeAsyncFinished = pyqtSignal() |
24 dataReceived = pyqtSignal(bytes) |
25 dataReceived = pyqtSignal(bytes) |
|
26 osdInfo = pyqtSignal(str) |
25 |
27 |
26 PasteModePrompt = b"=== " |
28 PasteModePrompt = b"=== " |
27 TracebackMarker = b"Traceback (most recent call last):" |
29 TracebackMarker = b"Traceback (most recent call last):" |
28 |
30 |
29 def __init__(self, parent=None): |
31 def __init__(self, parent=None): |