35 |
35 |
36 class ProjectSourcesBrowser(ProjectBaseBrowser): |
36 class ProjectSourcesBrowser(ProjectBaseBrowser): |
37 """ |
37 """ |
38 A class used to display the Sources part of the project. |
38 A class used to display the Sources part of the project. |
39 |
39 |
40 @signal closeSourceWindow(string) emitted after a file has been removed/deleted |
40 @signal closeSourceWindow(str) emitted after a file has been removed/deleted |
41 from the project |
41 from the project |
42 @signal showMenu(string, QMenu) emitted when a menu is about to be shown. The name |
42 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name |
43 of the menu and a reference to the menu are given. |
43 of the menu and a reference to the menu are given. |
44 """ |
44 """ |
45 closeSourceWindow = pyqtSignal(str) |
45 closeSourceWindow = pyqtSignal(str) |
46 showMenu = pyqtSignal(str, QMenu) |
46 showMenu = pyqtSignal(str, QMenu) |
47 sourceFile = pyqtSignal((str, ), (str, int), (str, int, str)) |
47 sourceFile = pyqtSignal((str, ), (str, int), (str, int, str)) |