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