17 |
17 |
18 # TODO: sanitize all file names with FileSystemUtilities.plainFileName() |
18 # TODO: sanitize all file names with FileSystemUtilities.plainFileName() |
19 class EricServerDebuggerInterface(QObject): |
19 class EricServerDebuggerInterface(QObject): |
20 """ |
20 """ |
21 Class implementing the file system interface to the eric-ide server. |
21 Class implementing the file system interface to the eric-ide server. |
|
22 |
|
23 @signal debugClientResponse(response:str) emitted to relay a response of |
|
24 the remote debug client |
|
25 @signal debugClientDisconnected(debuggerId:str) emitted when a remote debug |
|
26 client did disconnect from the eric-ide server |
|
27 @signal lastClientExited() emitted to indicate that the last debug client of |
|
28 the eric-ide server exited |
22 """ |
29 """ |
23 |
30 |
24 debugClientResponse = pyqtSignal(str) |
31 debugClientResponse = pyqtSignal(str) |
25 debugClientDisconnected = pyqtSignal(str) |
32 debugClientDisconnected = pyqtSignal(str) |
26 lastClientExited = pyqtSignal() |
33 lastClientExited = pyqtSignal() |