Project/ProjectTranslationsBrowser.py

changeset 949
f888270da22e
parent 945
8cd4d08fa9f6
child 1003
b81a77ac656a
equal deleted inserted replaced
948:fe7b94ed01ec 949:f888270da22e
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

eric ide

mercurial