diff -r 81326a94fdca -r 37f0444c3479 Documentation/Source/eric5.Debugger.StartDialog.html --- a/Documentation/Source/eric5.Debugger.StartDialog.html Thu Jan 14 17:27:31 2010 +0000 +++ b/Documentation/Source/eric5.Debugger.StartDialog.html Thu Jan 14 18:35:52 2010 +0000 @@ -22,7 +22,7 @@ <body><a NAME="top" ID="top"></a> <h1>eric5.Debugger.StartDialog</h1> <p> -Module implementing the Start Program dialog. +Module implementing the Start Program dialog. </p> <h3>Global Attributes</h3> <table> @@ -32,7 +32,7 @@ <table> <tr> <td><a href="#StartDialog">StartDialog</a></td> -<td>Class implementing the Start Program dialog.</td> +<td>Class implementing the Start Program dialog.</td> </tr> </table> <h3>Functions</h3> @@ -43,12 +43,12 @@ <a NAME="StartDialog" ID="StartDialog"></a> <h2>StartDialog</h2> <p> - Class implementing the Start Program dialog. + Class implementing the Start Program dialog. </p><p> - It implements a dialog that is used to start an - application for debugging. It asks the user to enter - the commandline parameters, the working directory and - whether exception reporting should be disabled. + It implements a dialog that is used to start an + application for debugging. It asks the user to enter + the commandline parameters, the working directory and + whether exception reporting should be disabled. </p> <h3>Derived from</h3> QDialog @@ -60,160 +60,160 @@ <table> <tr> <td><a href="#StartDialog.__init__">StartDialog</a></td> -<td>Constructor</td> +<td>Constructor</td> </tr><tr> <td><a href="#StartDialog.__clearHistories">__clearHistories</a></td> -<td>Private slot to clear the combo boxes lists and record a flag to clear the lists.</td> +<td>Private slot to clear the combo boxes lists and record a flag to clear the lists.</td> </tr><tr> <td><a href="#StartDialog.getCoverageData">getCoverageData</a></td> -<td>Public method to retrieve the coverage related data entered into this dialog.</td> +<td>Public method to retrieve the coverage related data entered into this dialog.</td> </tr><tr> <td><a href="#StartDialog.getData">getData</a></td> -<td>Public method to retrieve the data entered into this dialog.</td> +<td>Public method to retrieve the data entered into this dialog.</td> </tr><tr> <td><a href="#StartDialog.getDebugData">getDebugData</a></td> -<td>Public method to retrieve the debug related data entered into this dialog.</td> +<td>Public method to retrieve the debug related data entered into this dialog.</td> </tr><tr> <td><a href="#StartDialog.getProfilingData">getProfilingData</a></td> -<td>Public method to retrieve the profiling related data entered into this dialog.</td> +<td>Public method to retrieve the profiling related data entered into this dialog.</td> </tr><tr> <td><a href="#StartDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td> -<td>Private slot called by a button of the button box clicked.</td> +<td>Private slot called by a button of the button box clicked.</td> </tr><tr> <td><a href="#StartDialog.on_dirButton_clicked">on_dirButton_clicked</a></td> -<td>Private method used to open a directory selection dialog.</td> +<td>Private method used to open a directory selection dialog.</td> </tr><tr> <td><a href="#StartDialog.on_modFuncCombo_editTextChanged">on_modFuncCombo_editTextChanged</a></td> -<td>Private slot to enable/disable the OK button.</td> +<td>Private slot to enable/disable the OK button.</td> </tr> </table> <a NAME="StartDialog.__init__" ID="StartDialog.__init__"></a> <h4>StartDialog (Constructor)</h4> <b>StartDialog</b>(<i>caption, argvList, wdList, envList, exceptions, parent = None, type = 0, modfuncList = None, tracePython = False, autoClearShell = True, autoContinue = True, autoFork = False, forkChild = False</i>) <p> - Constructor + Constructor </p><dl> <dt><i>caption</i></dt> <dd> -the caption to be displayed (string) +the caption to be displayed (string) </dd><dt><i>argvList</i></dt> <dd> -history list of commandline arguments (list of strings) +history list of commandline arguments (list of strings) </dd><dt><i>wdList</i></dt> <dd> -history list of working directories (list of strings) +history list of working directories (list of strings) </dd><dt><i>envList</i></dt> <dd> -history list of environment settings (list of strings) +history list of environment settings (list of strings) </dd><dt><i>exceptions</i></dt> <dd> -exception reporting flag (boolean) +exception reporting flag (boolean) </dd><dt><i>parent</i></dt> <dd> -parent widget of this dialog (QWidget) +parent widget of this dialog (QWidget) </dd><dt><i>type</i></dt> <dd> -type of the start dialog - <ul> - <li>0 = start debug dialog</li> - <li>1 = start run dialog</li> - <li>2 = start coverage dialog</li> - <li>3 = start profile dialog</li> - </ul> +type of the start dialog + <ul> + <li>0 = start debug dialog</li> + <li>1 = start run dialog</li> + <li>2 = start coverage dialog</li> + <li>3 = start profile dialog</li> + </ul> </dd><dt><i>modfuncList=</i></dt> <dd> -history list of module functions (list of strings) +history list of module functions (list of strings) </dd><dt><i>tracePython=</i></dt> <dd> -flag indicating if the Python library should - be traced as well (boolean) +flag indicating if the Python library should + be traced as well (boolean) </dd><dt><i>autoClearShell=</i></dt> <dd> -flag indicating, that the interpreter window should - be cleared automatically (boolean) +flag indicating, that the interpreter window should + be cleared automatically (boolean) </dd><dt><i>autoContinue=</i></dt> <dd> -flag indicating, that the debugger should not stop at - the first executable line (boolean) +flag indicating, that the debugger should not stop at + the first executable line (boolean) </dd><dt><i>autoFork=</i></dt> <dd> -flag indicating the automatic fork mode (boolean) +flag indicating the automatic fork mode (boolean) </dd><dt><i>forkChild=</i></dt> <dd> -flag indicating to debug the child after forking (boolean) +flag indicating to debug the child after forking (boolean) </dd> </dl><a NAME="StartDialog.__clearHistories" ID="StartDialog.__clearHistories"></a> <h4>StartDialog.__clearHistories</h4> <b>__clearHistories</b>(<i></i>) <p> - Private slot to clear the combo boxes lists and record a flag to - clear the lists. + Private slot to clear the combo boxes lists and record a flag to + clear the lists. </p><a NAME="StartDialog.getCoverageData" ID="StartDialog.getCoverageData"></a> <h4>StartDialog.getCoverageData</h4> <b>getCoverageData</b>(<i></i>) <p> - Public method to retrieve the coverage related data entered into this dialog. + Public method to retrieve the coverage related data entered into this dialog. </p><dl> <dt>Returns:</dt> <dd> -flag indicating erasure of coverage info (boolean) +flag indicating erasure of coverage info (boolean) </dd> </dl><a NAME="StartDialog.getData" ID="StartDialog.getData"></a> <h4>StartDialog.getData</h4> <b>getData</b>(<i></i>) <p> - Public method to retrieve the data entered into this dialog. + Public method to retrieve the data entered into this dialog. </p><dl> <dt>Returns:</dt> <dd> -a tuple of argv (string), workdir (string), environment (string), - exceptions flag (boolean), clear interpreter flag (boolean), - clear histories flag (boolean) and run in console flag (boolean) +a tuple of argv (string), workdir (string), environment (string), + exceptions flag (boolean), clear interpreter flag (boolean), + clear histories flag (boolean) and run in console flag (boolean) </dd> </dl><a NAME="StartDialog.getDebugData" ID="StartDialog.getDebugData"></a> <h4>StartDialog.getDebugData</h4> <b>getDebugData</b>(<i></i>) <p> - Public method to retrieve the debug related data entered into this dialog. + Public method to retrieve the debug related data entered into this dialog. </p><dl> <dt>Returns:</dt> <dd> -a tuple of a flag indicating, if the Python library should be traced - as well, a flag indicating, that the debugger should not stop at the - first executable line (boolean), a flag indicating, that the debugger - should fork automatically (boolean) and a flag indicating, that the - debugger should debug the child process after forking automatically (boolean) +a tuple of a flag indicating, if the Python library should be traced + as well, a flag indicating, that the debugger should not stop at the + first executable line (boolean), a flag indicating, that the debugger + should fork automatically (boolean) and a flag indicating, that the + debugger should debug the child process after forking automatically (boolean) </dd> </dl><a NAME="StartDialog.getProfilingData" ID="StartDialog.getProfilingData"></a> <h4>StartDialog.getProfilingData</h4> <b>getProfilingData</b>(<i></i>) <p> - Public method to retrieve the profiling related data entered into this dialog. + Public method to retrieve the profiling related data entered into this dialog. </p><dl> <dt>Returns:</dt> <dd> -flag indicating erasure of profiling info (boolean) +flag indicating erasure of profiling info (boolean) </dd> </dl><a NAME="StartDialog.on_buttonBox_clicked" ID="StartDialog.on_buttonBox_clicked"></a> <h4>StartDialog.on_buttonBox_clicked</h4> <b>on_buttonBox_clicked</b>(<i>button</i>) <p> - Private slot called by a button of the button box clicked. + Private slot called by a button of the button box clicked. </p><dl> <dt><i>button</i></dt> <dd> -button that was clicked (QAbstractButton) +button that was clicked (QAbstractButton) </dd> </dl><a NAME="StartDialog.on_dirButton_clicked" ID="StartDialog.on_dirButton_clicked"></a> <h4>StartDialog.on_dirButton_clicked</h4> <b>on_dirButton_clicked</b>(<i></i>) <p> - Private method used to open a directory selection dialog. + Private method used to open a directory selection dialog. </p><a NAME="StartDialog.on_modFuncCombo_editTextChanged" ID="StartDialog.on_modFuncCombo_editTextChanged"></a> <h4>StartDialog.on_modFuncCombo_editTextChanged</h4> <b>on_modFuncCombo_editTextChanged</b>(<i></i>) <p> - Private slot to enable/disable the OK button. + Private slot to enable/disable the OK button. </p> <div align="right"><a href="#top">Up</a></div> <hr />