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