36 |
36 |
37 @signal clientStack(stack) emitted at breaking after a reported exception |
37 @signal clientStack(stack) emitted at breaking after a reported exception |
38 @signal compileForms() emitted if changed project forms should be compiled |
38 @signal compileForms() emitted if changed project forms should be compiled |
39 @signal compileResources() emitted if changed project resources should be |
39 @signal compileResources() emitted if changed project resources should be |
40 compiled |
40 compiled |
|
41 @signal executeMake() emitted if a project specific make run should be |
|
42 performed |
41 @signal debuggingStarted(filename) emitted when a debugging session was |
43 @signal debuggingStarted(filename) emitted when a debugging session was |
42 started |
44 started |
43 @signal resetUI() emitted to reset the UI |
45 @signal resetUI() emitted to reset the UI |
44 @signal exceptionInterrupt() emitted after the execution was interrupted |
46 @signal exceptionInterrupt() emitted after the execution was interrupted |
45 by an exception and acknowledged by the user |
47 by an exception and acknowledged by the user |
1538 """ |
1540 """ |
1539 if Preferences.getProject("AutoCompileForms"): |
1541 if Preferences.getProject("AutoCompileForms"): |
1540 self.compileForms.emit() |
1542 self.compileForms.emit() |
1541 if Preferences.getProject("AutoCompileResources"): |
1543 if Preferences.getProject("AutoCompileResources"): |
1542 self.compileResources.emit() |
1544 self.compileResources.emit() |
|
1545 if Preferences.getProject("AutoExecuteMake"): |
|
1546 self.executeMake.emit() |
1543 QApplication.processEvents() |
1547 QApplication.processEvents() |
1544 |
1548 |
1545 def __coverageScript(self): |
1549 def __coverageScript(self): |
1546 """ |
1550 """ |
1547 Private slot to handle the coverage of script action. |
1551 Private slot to handle the coverage of script action. |