32 @signal closeSourceWindow(str) emitted after a file has been removed/deleted |
32 @signal closeSourceWindow(str) emitted after a file has been removed/deleted |
33 from the project |
33 from the project |
34 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name |
34 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name |
35 of the menu and a reference to the menu are given. |
35 of the menu and a reference to the menu are given. |
36 """ |
36 """ |
37 sourceFile = pyqtSignal(str) |
|
38 pixmapFile = pyqtSignal(str) |
|
39 pixmapEditFile = pyqtSignal(str) |
|
40 svgFile = pyqtSignal(str) |
|
41 closeSourceWindow = pyqtSignal(str) |
|
42 showMenu = pyqtSignal(str, QMenu) |
37 showMenu = pyqtSignal(str, QMenu) |
43 |
38 |
44 def __init__(self, project, parent=None): |
39 def __init__(self, project, parent=None): |
45 """ |
40 """ |
46 Constructor |
41 Constructor |