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