37 """ |
37 """ |
38 A class used to display the resources part of the project. |
38 A class used to display the resources part of the project. |
39 |
39 |
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 sourceFile(str) emitted to open a resources file in an editor |
|
43 @signal closeSourceWindow(str) emitted after a file has been |
|
44 removed/deleted from the project |
|
45 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. |
42 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. |
46 The name of the menu and a reference to the menu are given. |
43 The name of the menu and a reference to the menu are given. |
47 """ |
44 """ |
48 appendStderr = pyqtSignal(str) |
45 appendStderr = pyqtSignal(str) |
49 showMenu = pyqtSignal(str, QMenu) |
46 showMenu = pyqtSignal(str, QMenu) |