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