22 |
22 |
23 class ProjectOthersBrowser(ProjectBaseBrowser): |
23 class ProjectOthersBrowser(ProjectBaseBrowser): |
24 """ |
24 """ |
25 A class used to display the parts of the project, that don't fit the other categories. |
25 A class used to display the parts of the project, that don't fit the other categories. |
26 |
26 |
27 @signal sourceFile(string) emitted to open a file |
27 @signal sourceFile(str) emitted to open a file |
28 @signal pixmapFile(string) emitted to open a pixmap file |
28 @signal pixmapFile(str) emitted to open a pixmap file |
29 @signal pixmapEditFile(string) emitted to edit a pixmap file |
29 @signal pixmapEditFile(str) emitted to edit a pixmap file |
30 @signal svgFile(string) emitted to open a SVG file |
30 @signal svgFile(str) emitted to open a SVG file |
31 @signal closeSourceWindow(string) emitted after a file has been removed/deleted |
31 @signal closeSourceWindow(str) emitted after a file has been removed/deleted |
32 from the project |
32 from the project |
33 @signal showMenu(string, QMenu) emitted when a menu is about to be shown. The name |
33 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name |
34 of the menu and a reference to the menu are given. |
34 of the menu and a reference to the menu are given. |
35 """ |
35 """ |
36 sourceFile = pyqtSignal(str) |
36 sourceFile = pyqtSignal(str) |
37 pixmapFile = pyqtSignal(str) |
37 pixmapFile = pyqtSignal(str) |
38 pixmapEditFile = pyqtSignal(str) |
38 pixmapEditFile = pyqtSignal(str) |