10305:3fe0ba548fe5 | 10306:904f4c7da759 |
---|---|
20 | 20 |
21 <table> | 21 <table> |
22 | 22 |
23 <tr> | 23 <tr> |
24 <td><a href="#StartDialog">StartDialog</a></td> | 24 <td><a href="#StartDialog">StartDialog</a></td> |
25 <td>Class implementing the Start Program dialog.</td> | 25 <td>Class implementing the Start dialog.</td> |
26 </tr> | |
27 <tr> | |
28 <td><a href="#StartDialogMode">StartDialogMode</a></td> | |
29 <td>Class defining the various modes of the start dialog.</td> | |
26 </tr> | 30 </tr> |
27 </table> | 31 </table> |
28 <h3>Functions</h3> | 32 <h3>Functions</h3> |
29 | 33 |
30 <table> | 34 <table> |
34 <hr /> | 38 <hr /> |
35 <a NAME="StartDialog" ID="StartDialog"></a> | 39 <a NAME="StartDialog" ID="StartDialog"></a> |
36 <h2>StartDialog</h2> | 40 <h2>StartDialog</h2> |
37 | 41 |
38 <p> | 42 <p> |
39 Class implementing the Start Program dialog. | 43 Class implementing the Start dialog. |
40 </p> | 44 </p> |
41 <p> | 45 <p> |
42 It implements a dialog that is used to start an | 46 It implements a dialog that is used to start an |
43 application for debugging. It asks the user to enter | 47 application for debugging. It asks the user to enter |
44 the commandline parameters, the working directory and | 48 the commandline parameters, the working directory and |
45 whether exception reporting should be disabled. | 49 whether exception reporting should be disabled. |
46 </p> | 50 </p> |
47 <h3>Derived from</h3> | 51 <h3>Derived from</h3> |
48 QDialog | 52 QDialog, Ui_StartDialog |
49 <h3>Class Attributes</h3> | 53 <h3>Class Attributes</h3> |
50 | 54 |
51 <table> | 55 <table> |
52 <tr><td>None</td></tr> | 56 <tr><td>None</td></tr> |
53 </table> | 57 </table> |
119 <tr><td>None</td></tr> | 123 <tr><td>None</td></tr> |
120 </table> | 124 </table> |
121 | 125 |
122 <a NAME="StartDialog.__init__" ID="StartDialog.__init__"></a> | 126 <a NAME="StartDialog.__init__" ID="StartDialog.__init__"></a> |
123 <h4>StartDialog (Constructor)</h4> | 127 <h4>StartDialog (Constructor)</h4> |
124 <b>StartDialog</b>(<i>caption, lastUsedVenvName, argvList, wdList, envList, exceptions, unhandledExceptions, parent=None, dialogType=0, modfuncList=None, tracePython=False, autoClearShell=True, autoContinue=True, enableMultiprocess=False, multiprocessNoDebugHistory=None, configOverride=None, forProject=False, scriptName="", scriptsList=None, </i>) | 128 <b>StartDialog</b>(<i>caption, lastUsedVenvName, argvList, wdList, envList, exceptions, unhandledExceptions, parent=None, dialogMode=StartDialogMode.Debug, modfuncList=None, tracePython=False, autoClearShell=True, autoContinue=True, enableMultiprocess=False, multiprocessNoDebugHistory=None, configOverride=None, forProject=False, scriptName="", scriptsList=None, </i>) |
125 | 129 |
126 <p> | 130 <p> |
127 Constructor | 131 Constructor |
128 </p> | 132 </p> |
129 <dl> | 133 <dl> |
159 </dd> | 163 </dd> |
160 <dt><i>parent</i> (QWidget)</dt> | 164 <dt><i>parent</i> (QWidget)</dt> |
161 <dd> | 165 <dd> |
162 parent widget of this dialog | 166 parent widget of this dialog |
163 </dd> | 167 </dd> |
164 <dt><i>dialogType</i> (int (0 to 3))</dt> | 168 <dt><i>dialogMode</i> (StartDialogMode)</dt> |
165 <dd> | 169 <dd> |
166 type of the start dialog | 170 mode of the start dialog |
167 <ul> | 171 <ul> |
168 <li>0 = start debug dialog</li> | 172 <li>StartDialogMode.Debug = start debug dialog</li> |
169 <li>1 = start run dialog</li> | 173 <li>StartDialogMode.Run = start run dialog</li> |
170 <li>2 = start coverage dialog</li> | 174 <li>StartDialogMode.Coverage = start coverage dialog</li> |
171 <li>3 = start profile dialog</li> | 175 <li>StartDialogMode.Profile = start profile dialog</li> |
172 </ul> | 176 </ul> |
173 </dd> | 177 </dd> |
174 <dt><i>modfuncList</i> (list of str)</dt> | 178 <dt><i>modfuncList</i> (list of str)</dt> |
175 <dd> | 179 <dd> |
176 history list of module functions | 180 history list of module functions |
420 <p> | 424 <p> |
421 Private slot to enable/disable the OK button. | 425 Private slot to enable/disable the OK button. |
422 </p> | 426 </p> |
423 <div align="right"><a href="#top">Up</a></div> | 427 <div align="right"><a href="#top">Up</a></div> |
424 <hr /> | 428 <hr /> |
429 <hr /> | |
430 <a NAME="StartDialogMode" ID="StartDialogMode"></a> | |
431 <h2>StartDialogMode</h2> | |
432 | |
433 <p> | |
434 Class defining the various modes of the start dialog. | |
435 </p> | |
436 <h3>Derived from</h3> | |
437 enum.Enum | |
438 <h3>Class Attributes</h3> | |
439 | |
440 <table> | |
441 <tr><td>Coverage</td></tr><tr><td>Debug</td></tr><tr><td>Profile</td></tr><tr><td>Run</td></tr> | |
442 </table> | |
443 <h3>Class Methods</h3> | |
444 | |
445 <table> | |
446 <tr><td>None</td></tr> | |
447 </table> | |
448 <h3>Methods</h3> | |
449 | |
450 <table> | |
451 <tr><td>None</td></tr> | |
452 </table> | |
453 <h3>Static Methods</h3> | |
454 | |
455 <table> | |
456 <tr><td>None</td></tr> | |
457 </table> | |
458 | |
459 <div align="right"><a href="#top">Up</a></div> | |
460 <hr /> | |
425 </body></html> | 461 </body></html> |