Project/ProjectResourcesBrowser.py

changeset 501
5c615a85241a
parent 500
c3abc7895a01
child 536
6d8d39753c82
equal deleted inserted replaced
500:c3abc7895a01 501:5c615a85241a
26 26
27 class ProjectResourcesBrowser(ProjectBaseBrowser): 27 class ProjectResourcesBrowser(ProjectBaseBrowser):
28 """ 28 """
29 A class used to display the resources part of the project. 29 A class used to display the resources part of the project.
30 30
31 @signal appendStderr(string) emitted after something was received from 31 @signal appendStderr(str) emitted after something was received from
32 a QProcess on stderr 32 a QProcess on stderr
33 @signal sourceFile(string) emitted to open a resources file in an editor 33 @signal sourceFile(str) emitted to open a resources file in an editor
34 @signal closeSourceWindow(string) emitted after a file has been removed/deleted 34 @signal closeSourceWindow(str) emitted after a file has been removed/deleted
35 from the project 35 from the project
36 @signal showMenu(string, QMenu) emitted when a menu is about to be shown. The name 36 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name
37 of the menu and a reference to the menu are given. 37 of the menu and a reference to the menu are given.
38 """ 38 """
39 appendStderr = pyqtSignal(str) 39 appendStderr = pyqtSignal(str)
40 sourceFile = pyqtSignal(str) 40 sourceFile = pyqtSignal(str)
41 closeSourceWindow = pyqtSignal(str) 41 closeSourceWindow = pyqtSignal(str)

eric ide

mercurial