42 @signal trpreview(list of str, bool = False) emitted to preview translations in the |
42 @signal trpreview(list of str, bool = False) emitted to preview translations in the |
43 translations previewer |
43 translations previewer |
44 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name |
44 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name |
45 of the menu and a reference to the menu are given. |
45 of the menu and a reference to the menu are given. |
46 """ |
46 """ |
47 sourceFile = pyqtSignal(str) |
|
48 linguistFile = pyqtSignal(str) |
|
49 appendStdout = pyqtSignal(str) |
47 appendStdout = pyqtSignal(str) |
50 appendStderr = pyqtSignal(str) |
48 appendStderr = pyqtSignal(str) |
51 closeSourceWindow = pyqtSignal(str) |
|
52 trpreview = pyqtSignal((list, ), (list, bool)) |
|
53 showMenu = pyqtSignal(str, QMenu) |
49 showMenu = pyqtSignal(str, QMenu) |
54 |
50 |
55 def __init__(self, project, parent=None): |
51 def __init__(self, project, parent=None): |
56 """ |
52 """ |
57 Constructor |
53 Constructor |