31 @signal closeSourceWindow(str) 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(str, 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) |
|
37 pixmapFile = pyqtSignal(str) |
|
38 pixmapEditFile = pyqtSignal(str) |
|
39 svgFile = pyqtSignal(str) |
|
40 closeSourceWindow = pyqtSignal(str) |
|
41 showMenu = pyqtSignal(str, QMenu) |
36 showMenu = pyqtSignal(str, QMenu) |
42 |
37 |
43 def __init__(self, project, parent=None): |
38 def __init__(self, project, parent=None): |
44 """ |
39 """ |
45 Constructor |
40 Constructor |