UI/FindFileDialog.py

changeset 501
5c615a85241a
parent 500
c3abc7895a01
child 537
72b32daeb8d6
equal deleted inserted replaced
500:c3abc7895a01 501:5c615a85241a
26 26
27 The occurrences found are displayed in a QTreeWidget showing the filename, the 27 The occurrences found are displayed in a QTreeWidget showing the filename, the
28 linenumber and the found text. The file will be opened upon a double click onto 28 linenumber and the found text. The file will be opened upon a double click onto
29 the respective entry of the list. 29 the respective entry of the list.
30 30
31 @signal sourceFile(string, int, string, (int, int)) emitted to open a 31 @signal sourceFile(str, int, str, int, int) emitted to open a source file at a line
32 source file at a line 32 @signal designerFile(str) emitted to open a Qt-Designer file
33 @signal designerFile(string) emitted to open a Qt-Designer file
34 """ 33 """
35 sourceFile = pyqtSignal(str, int, str, int, int) 34 sourceFile = pyqtSignal(str, int, str, int, int)
36 designerFile = pyqtSignal(str) 35 designerFile = pyqtSignal(str)
37 36
38 lineRole = Qt.UserRole + 1 37 lineRole = Qt.UserRole + 1

eric ide

mercurial