UI/Browser.py

branch
5_1_x
changeset 950
1138e347c653
parent 882
34b86be88bf0
child 1510
e75ecf2bd9dd
equal deleted inserted replaced
947:d3ba26384cf8 950:1138e347c653
34 the selected file. 34 the selected file.
35 35
36 @signal sourceFile(str, int = 0, str = "") emitted to open a Python file at a line 36 @signal sourceFile(str, int = 0, str = "") emitted to open a Python file at a line
37 @signal designerFile(str) emitted to open a Qt-Designer file 37 @signal designerFile(str) emitted to open a Qt-Designer file
38 @signal linguistFile(str) emitted to open a Qt-Linguist (*.ts) file 38 @signal linguistFile(str) emitted to open a Qt-Linguist (*.ts) file
39 @signal trpreview(list of str) emitted to preview a Qt-Linguist (*.qm) file 39 @signal trpreview(list of str, bool = False) emitted to preview a Qt-Linguist
40 (*.qm) file
40 @signal projectFile(str) emitted to open an eric4/5 project file 41 @signal projectFile(str) emitted to open an eric4/5 project file
41 @signal multiProjectFile(str) emitted to open an eric4/5 multi project file 42 @signal multiProjectFile(str) emitted to open an eric4/5 multi project file
42 @signal pixmapFile(str) emitted to open a pixmap file 43 @signal pixmapFile(str) emitted to open a pixmap file
43 @signal pixmapEditFile(str) emitted to edit a pixmap file 44 @signal pixmapEditFile(str) emitted to edit a pixmap file
44 @signal svgFile(str) emitted to open a SVG file 45 @signal svgFile(str) emitted to open a SVG file
45 @signal unittestOpen(str) emitted to open a Python file for a unittest 46 @signal unittestOpen(str) emitted to open a Python file for a unittest
46 """ 47 """
47 sourceFile = pyqtSignal((str, ), (str, int), (str, int, str)) 48 sourceFile = pyqtSignal((str, ), (str, int), (str, int, str))
48 designerFile = pyqtSignal(str) 49 designerFile = pyqtSignal(str)
49 linguistFile = pyqtSignal(str) 50 linguistFile = pyqtSignal(str)
50 trpreview = pyqtSignal(list) 51 trpreview = pyqtSignal((list, ), (list, bool))
51 projectFile = pyqtSignal(str) 52 projectFile = pyqtSignal(str)
52 multiProjectFile = pyqtSignal(str) 53 multiProjectFile = pyqtSignal(str)
53 pixmapFile = pyqtSignal(str) 54 pixmapFile = pyqtSignal(str)
54 pixmapEditFile = pyqtSignal(str) 55 pixmapEditFile = pyqtSignal(str)
55 svgFile = pyqtSignal(str) 56 svgFile = pyqtSignal(str)

eric ide

mercurial