26 |
26 |
27 class ProjectResourcesBrowser(ProjectBaseBrowser): |
27 class ProjectResourcesBrowser(ProjectBaseBrowser): |
28 """ |
28 """ |
29 A class used to display the resources part of the project. |
29 A class used to display the resources part of the project. |
30 |
30 |
31 @signal appendStderr(string) emitted after something was received from |
31 @signal appendStderr(str) emitted after something was received from |
32 a QProcess on stderr |
32 a QProcess on stderr |
33 @signal sourceFile(string) emitted to open a resources file in an editor |
33 @signal sourceFile(str) emitted to open a resources file in an editor |
34 @signal closeSourceWindow(string) emitted after a file has been removed/deleted |
34 @signal closeSourceWindow(str) emitted after a file has been removed/deleted |
35 from the project |
35 from the project |
36 @signal showMenu(string, QMenu) emitted when a menu is about to be shown. The name |
36 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name |
37 of the menu and a reference to the menu are given. |
37 of the menu and a reference to the menu are given. |
38 """ |
38 """ |
39 appendStderr = pyqtSignal(str) |
39 appendStderr = pyqtSignal(str) |
40 sourceFile = pyqtSignal(str) |
40 sourceFile = pyqtSignal(str) |
41 closeSourceWindow = pyqtSignal(str) |
41 closeSourceWindow = pyqtSignal(str) |