47 @signal sourceFile(str) emitted to open the given file. |
47 @signal sourceFile(str) emitted to open the given file. |
48 @signal sourceFile(str, int) emitted to open the given file at the given line. |
48 @signal sourceFile(str, int) emitted to open the given file at the given line. |
49 @signal sourceFile(str, int, str) emitted to open the given file as the given type |
49 @signal sourceFile(str, int, str) emitted to open the given file as the given type |
50 at the given line. |
50 at the given line. |
51 """ |
51 """ |
52 closeSourceWindow = pyqtSignal(str) |
|
53 showMenu = pyqtSignal(str, QMenu) |
52 showMenu = pyqtSignal(str, QMenu) |
54 sourceFile = pyqtSignal((str, ), (str, int), (str, int, str)) |
|
55 |
53 |
56 def __init__(self, project, parent=None): |
54 def __init__(self, project, parent=None): |
57 """ |
55 """ |
58 Constructor |
56 Constructor |
59 |
57 |