29 |
29 |
30 class ProjectInterfacesBrowser(ProjectBaseBrowser): |
30 class ProjectInterfacesBrowser(ProjectBaseBrowser): |
31 """ |
31 """ |
32 A class used to display the interfaces (IDL) part of the project. |
32 A class used to display the interfaces (IDL) part of the project. |
33 |
33 |
34 @signal sourceFile(string, int = 0) emitted to open a file |
34 @signal sourceFile(str, int = 0) emitted to open a file |
35 @signal closeSourceWindow(string) emitted after a file has been removed/deleted |
35 @signal closeSourceWindow(str) emitted after a file has been removed/deleted |
36 from the project |
36 from the project |
37 @signal appendStdout(string) emitted after something was received from |
37 @signal appendStdout(str) emitted after something was received from |
38 a QProcess on stdout |
38 a QProcess on stdout |
39 @signal appendStderr(string) emitted after something was received from |
39 @signal appendStderr(str) emitted after something was received from |
40 a QProcess on stderr |
40 a QProcess on stderr |
41 @signal showMenu(string, QMenu) emitted when a menu is about to be shown. The name |
41 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name |
42 of the menu and a reference to the menu are given. |
42 of the menu and a reference to the menu are given. |
43 """ |
43 """ |
44 closeSourceWindow = pyqtSignal(str) |
44 closeSourceWindow = pyqtSignal(str) |
45 appendStdout = pyqtSignal(str) |
45 appendStdout = pyqtSignal(str) |
46 appendStderr = pyqtSignal(str) |
46 appendStderr = pyqtSignal(str) |