40 @signal appendStderr(str) emitted after something was received from |
40 @signal appendStderr(str) emitted after something was received from |
41 a QProcess on stderr |
41 a QProcess on stderr |
42 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name |
42 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name |
43 of the menu and a reference to the menu are given. |
43 of the menu and a reference to the menu are given. |
44 """ |
44 """ |
45 closeSourceWindow = pyqtSignal(str) |
|
46 appendStdout = pyqtSignal(str) |
45 appendStdout = pyqtSignal(str) |
47 appendStderr = pyqtSignal(str) |
46 appendStderr = pyqtSignal(str) |
48 showMenu = pyqtSignal(str, QMenu) |
47 showMenu = pyqtSignal(str, QMenu) |
49 sourceFile = pyqtSignal((str, ), (str, int)) |
|
50 |
48 |
51 def __init__(self, project, parent = None): |
49 def __init__(self, project, parent = None): |
52 """ |
50 """ |
53 Constructor |
51 Constructor |
54 |
52 |