38 |
38 |
39 Via the context menu that |
39 Via the context menu that |
40 is displayed by a right click the user can select various actions on |
40 is displayed by a right click the user can select various actions on |
41 the selected file. |
41 the selected file. |
42 |
42 |
43 @signal sourceFile(str, int = 0, str = "") emitted to open a Python file |
43 @signal sourceFile(filename) emitted to open a Python file at a line (str) |
44 at a line |
44 @signal sourceFile(filename, lineno) emitted to open a Python file at a |
45 @signal sourceFile(str, list) emitted to open a Python file giving a list |
45 line (str, int) |
46 of lines |
46 @signal sourceFile(filename, lineno, type) emitted to open a Python file |
47 @signal designerFile(str) emitted to open a Qt-Designer file |
47 at a line giving an explicit file type (str, int, str) |
48 @signal linguistFile(str) emitted to open a Qt-Linguist (*.ts) file |
48 @signal sourceFile(filename, linenos) emitted to open a Python file giving |
49 @signal trpreview(list of str, bool = False) emitted to preview a |
49 a list of lines(str, list) |
50 Qt-Linguist (*.qm) file |
50 @signal designerFile(filename) emitted to open a Qt-Designer file (str) |
51 @signal projectFile(str) emitted to open an eric4/5 project file |
51 @signal linguistFile(filename) emitted to open a Qt-Linguist (*.ts) |
52 @signal multiProjectFile(str) emitted to open an eric4/5 multi project file |
52 file (str) |
53 @signal pixmapFile(str) emitted to open a pixmap file |
53 @signal trpreview(filenames) emitted to preview Qt-Linguist (*.qm) |
54 @signal pixmapEditFile(str) emitted to edit a pixmap file |
54 files (list of str) |
55 @signal svgFile(str) emitted to open a SVG file |
55 @signal trpreview(filenames, ignore) emitted to preview Qt-Linguist (*.qm) |
56 @signal binaryFile(str) emitted to open a file as binary |
56 files indicating whether non-existent files shall be ignored |
57 @signal unittestOpen(str) emitted to open a Python file for a unittest |
57 (list of str, bool) |
|
58 @signal projectFile(filename) emitted to open an eric project file (str) |
|
59 @signal multiProjectFile(filename) emitted to open an eric multi project |
|
60 file (str) |
|
61 @signal pixmapFile(filename) emitted to open a pixmap file (str) |
|
62 @signal pixmapEditFile(filename) emitted to edit a pixmap file (str) |
|
63 @signal svgFile(filename) emitted to open a SVG file (str) |
|
64 @signal binaryFile(filename) emitted to open a file as binary (str) |
|
65 @signal unittestOpen(filename) emitted to open a Python file for a |
|
66 unit test (str) |
58 """ |
67 """ |
59 sourceFile = pyqtSignal((str, ), (str, int), (str, list), (str, int, str)) |
68 sourceFile = pyqtSignal((str, ), (str, int), (str, list), (str, int, str)) |
60 designerFile = pyqtSignal(str) |
69 designerFile = pyqtSignal(str) |
61 linguistFile = pyqtSignal(str) |
70 linguistFile = pyqtSignal(str) |
62 trpreview = pyqtSignal((list, ), (list, bool)) |
71 trpreview = pyqtSignal((list, ), (list, bool)) |