Project/ProjectFormsBrowser.py

changeset 501
5c615a85241a
parent 500
c3abc7895a01
child 536
6d8d39753c82
equal deleted inserted replaced
500:c3abc7895a01 501:5c615a85241a
30 30
31 class ProjectFormsBrowser(ProjectBaseBrowser): 31 class ProjectFormsBrowser(ProjectBaseBrowser):
32 """ 32 """
33 A class used to display the forms part of the project. 33 A class used to display the forms part of the project.
34 34
35 @signal appendStderr(string) emitted after something was received from 35 @signal appendStderr(str) emitted after something was received from
36 a QProcess on stderr 36 a QProcess on stderr
37 @signal sourceFile(string) emitted to open a forms file in an editor 37 @signal sourceFile(str) emitted to open a forms file in an editor
38 @signal uipreview(string) emitted to preview a forms file 38 @signal uipreview(str) emitted to preview a forms file
39 @signal trpreview(string list) emitted to preview form files in the 39 @signal trpreview(list of str) emitted to preview form files in the
40 translations previewer 40 translations previewer
41 @signal closeSourceWindow(string) emitted after a file has been removed/deleted 41 @signal closeSourceWindow(str) emitted after a file has been removed/deleted
42 from the project 42 from the project
43 @signal showMenu(string, QMenu) emitted when a menu is about to be shown. The name 43 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name
44 of the menu and a reference to the menu are given. 44 of the menu and a reference to the menu are given.
45 @signal menusAboutToBeCreated emitted when the context menus are about to 45 @signal menusAboutToBeCreated() emitted when the context menus are about to
46 be created. This is the right moment to add or remove hook methods. 46 be created. This is the right moment to add or remove hook methods.
47 """ 47 """
48 appendStderr = pyqtSignal(str) 48 appendStderr = pyqtSignal(str)
49 sourceFile = pyqtSignal(str) 49 sourceFile = pyqtSignal(str)
50 uipreview = pyqtSignal(str) 50 uipreview = pyqtSignal(str)

eric ide

mercurial