UI/FindFileNameDialog.py

changeset 501
5c615a85241a
parent 500
c3abc7895a01
child 564
b3d966393ba9
equal deleted inserted replaced
500:c3abc7895a01 501:5c615a85241a
26 26
27 The occurrences found are displayed in a QTreeWidget showing the 27 The occurrences found are displayed in a QTreeWidget showing the
28 filename and the pathname. The file will be opened upon a double click 28 filename and the pathname. The file will be opened upon a double click
29 onto the respective entry of the list. 29 onto the respective entry of the list.
30 30
31 @signal sourceFile(string) emitted to open a file in the editor 31 @signal sourceFile(str) emitted to open a file in the editor
32 @signal designerFile(string) emitted to open a Qt-Designer file 32 @signal designerFile(str) emitted to open a Qt-Designer file
33 """ 33 """
34 sourceFile = pyqtSignal(str) 34 sourceFile = pyqtSignal(str)
35 designerFile = pyqtSignal(str) 35 designerFile = pyqtSignal(str)
36 36
37 def __init__(self, project, parent = None): 37 def __init__(self, project, parent = None):

eric ide

mercurial