58 </table> |
58 </table> |
59 <h3>Methods</h3> |
59 <h3>Methods</h3> |
60 <table> |
60 <table> |
61 <tr> |
61 <tr> |
62 <td><a href="#StartDialog.__init__">StartDialog</a></td> |
62 <td><a href="#StartDialog.__init__">StartDialog</a></td> |
63 <td>Constructor</td> |
63 <td>Constructor</td> |
64 </tr><tr> |
64 </tr><tr> |
65 <td><a href="#StartDialog.__clearHistories">__clearHistories</a></td> |
65 <td><a href="#StartDialog.__clearHistories">__clearHistories</a></td> |
66 <td>Private slot to clear the combo boxes lists and record a flag to clear the lists.</td> |
66 <td>Private slot to clear the combo boxes lists and record a flag to clear the lists.</td> |
67 </tr><tr> |
67 </tr><tr> |
68 <td><a href="#StartDialog.getCoverageData">getCoverageData</a></td> |
68 <td><a href="#StartDialog.getCoverageData">getCoverageData</a></td> |
69 <td>Public method to retrieve the coverage related data entered into this dialog.</td> |
69 <td>Public method to retrieve the coverage related data entered into this dialog.</td> |
70 </tr><tr> |
70 </tr><tr> |
71 <td><a href="#StartDialog.getData">getData</a></td> |
71 <td><a href="#StartDialog.getData">getData</a></td> |
72 <td>Public method to retrieve the data entered into this dialog.</td> |
72 <td>Public method to retrieve the data entered into this dialog.</td> |
73 </tr><tr> |
73 </tr><tr> |
74 <td><a href="#StartDialog.getDebugData">getDebugData</a></td> |
74 <td><a href="#StartDialog.getDebugData">getDebugData</a></td> |
75 <td>Public method to retrieve the debug related data entered into this dialog.</td> |
75 <td>Public method to retrieve the debug related data entered into this dialog.</td> |
76 </tr><tr> |
76 </tr><tr> |
77 <td><a href="#StartDialog.getProfilingData">getProfilingData</a></td> |
77 <td><a href="#StartDialog.getProfilingData">getProfilingData</a></td> |
78 <td>Public method to retrieve the profiling related data entered into this dialog.</td> |
78 <td>Public method to retrieve the profiling related data entered into this dialog.</td> |
79 </tr><tr> |
79 </tr><tr> |
80 <td><a href="#StartDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td> |
80 <td><a href="#StartDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td> |
81 <td>Private slot called by a button of the button box clicked.</td> |
81 <td>Private slot called by a button of the button box clicked.</td> |
82 </tr><tr> |
82 </tr><tr> |
83 <td><a href="#StartDialog.on_dirButton_clicked">on_dirButton_clicked</a></td> |
83 <td><a href="#StartDialog.on_dirButton_clicked">on_dirButton_clicked</a></td> |
84 <td>Private method used to open a directory selection dialog.</td> |
84 <td>Private method used to open a directory selection dialog.</td> |
85 </tr><tr> |
85 </tr><tr> |
86 <td><a href="#StartDialog.on_modFuncCombo_editTextChanged">on_modFuncCombo_editTextChanged</a></td> |
86 <td><a href="#StartDialog.on_modFuncCombo_editTextChanged">on_modFuncCombo_editTextChanged</a></td> |
87 <td>Private slot to enable/disable the OK button.</td> |
87 <td>Private slot to enable/disable the OK button.</td> |
88 </tr> |
88 </tr> |
89 </table> |
89 </table> |
90 <a NAME="StartDialog.__init__" ID="StartDialog.__init__"></a> |
90 <a NAME="StartDialog.__init__" ID="StartDialog.__init__"></a> |
91 <h4>StartDialog (Constructor)</h4> |
91 <h4>StartDialog (Constructor)</h4> |
92 <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>) |
92 <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>) |
93 <p> |
93 <p> |
94 Constructor |
94 Constructor |
95 </p><dl> |
95 </p><dl> |
96 <dt><i>caption</i></dt> |
96 <dt><i>caption</i></dt> |
97 <dd> |
97 <dd> |
98 the caption to be displayed (string) |
98 the caption to be displayed (string) |
99 </dd><dt><i>argvList</i></dt> |
99 </dd><dt><i>argvList</i></dt> |
100 <dd> |
100 <dd> |
101 history list of commandline arguments (list of strings) |
101 history list of commandline arguments (list of strings) |
102 </dd><dt><i>wdList</i></dt> |
102 </dd><dt><i>wdList</i></dt> |
103 <dd> |
103 <dd> |
104 history list of working directories (list of strings) |
104 history list of working directories (list of strings) |
105 </dd><dt><i>envList</i></dt> |
105 </dd><dt><i>envList</i></dt> |
106 <dd> |
106 <dd> |
107 history list of environment settings (list of strings) |
107 history list of environment settings (list of strings) |
108 </dd><dt><i>exceptions</i></dt> |
108 </dd><dt><i>exceptions</i></dt> |
109 <dd> |
109 <dd> |
110 exception reporting flag (boolean) |
110 exception reporting flag (boolean) |
111 </dd><dt><i>parent</i></dt> |
111 </dd><dt><i>parent</i></dt> |
112 <dd> |
112 <dd> |
113 parent widget of this dialog (QWidget) |
113 parent widget of this dialog (QWidget) |
114 </dd><dt><i>type</i></dt> |
114 </dd><dt><i>type</i></dt> |
115 <dd> |
115 <dd> |
116 type of the start dialog |
116 type of the start dialog |
117 <ul> |
117 <ul> |
118 <li>0 = start debug dialog</li> |
118 <li>0 = start debug dialog</li> |
119 <li>1 = start run dialog</li> |
119 <li>1 = start run dialog</li> |
120 <li>2 = start coverage dialog</li> |
120 <li>2 = start coverage dialog</li> |
121 <li>3 = start profile dialog</li> |
121 <li>3 = start profile dialog</li> |
122 </ul> |
122 </ul> |
123 </dd><dt><i>modfuncList=</i></dt> |
123 </dd><dt><i>modfuncList=</i></dt> |
124 <dd> |
124 <dd> |
125 history list of module functions (list of strings) |
125 history list of module functions (list of strings) |
126 </dd><dt><i>tracePython=</i></dt> |
126 </dd><dt><i>tracePython=</i></dt> |
127 <dd> |
127 <dd> |
128 flag indicating if the Python library should |
128 flag indicating if the Python library should |
129 be traced as well (boolean) |
129 be traced as well (boolean) |
130 </dd><dt><i>autoClearShell=</i></dt> |
130 </dd><dt><i>autoClearShell=</i></dt> |
131 <dd> |
131 <dd> |
132 flag indicating, that the interpreter window should |
132 flag indicating, that the interpreter window should |
133 be cleared automatically (boolean) |
133 be cleared automatically (boolean) |
134 </dd><dt><i>autoContinue=</i></dt> |
134 </dd><dt><i>autoContinue=</i></dt> |
135 <dd> |
135 <dd> |
136 flag indicating, that the debugger should not stop at |
136 flag indicating, that the debugger should not stop at |
137 the first executable line (boolean) |
137 the first executable line (boolean) |
138 </dd><dt><i>autoFork=</i></dt> |
138 </dd><dt><i>autoFork=</i></dt> |
139 <dd> |
139 <dd> |
140 flag indicating the automatic fork mode (boolean) |
140 flag indicating the automatic fork mode (boolean) |
141 </dd><dt><i>forkChild=</i></dt> |
141 </dd><dt><i>forkChild=</i></dt> |
142 <dd> |
142 <dd> |
143 flag indicating to debug the child after forking (boolean) |
143 flag indicating to debug the child after forking (boolean) |
144 </dd> |
144 </dd> |
145 </dl><a NAME="StartDialog.__clearHistories" ID="StartDialog.__clearHistories"></a> |
145 </dl><a NAME="StartDialog.__clearHistories" ID="StartDialog.__clearHistories"></a> |
146 <h4>StartDialog.__clearHistories</h4> |
146 <h4>StartDialog.__clearHistories</h4> |
147 <b>__clearHistories</b>(<i></i>) |
147 <b>__clearHistories</b>(<i></i>) |
148 <p> |
148 <p> |
149 Private slot to clear the combo boxes lists and record a flag to |
149 Private slot to clear the combo boxes lists and record a flag to |
150 clear the lists. |
150 clear the lists. |
151 </p><a NAME="StartDialog.getCoverageData" ID="StartDialog.getCoverageData"></a> |
151 </p><a NAME="StartDialog.getCoverageData" ID="StartDialog.getCoverageData"></a> |
152 <h4>StartDialog.getCoverageData</h4> |
152 <h4>StartDialog.getCoverageData</h4> |
153 <b>getCoverageData</b>(<i></i>) |
153 <b>getCoverageData</b>(<i></i>) |
154 <p> |
154 <p> |
155 Public method to retrieve the coverage related data entered into this dialog. |
155 Public method to retrieve the coverage related data entered into this dialog. |
156 </p><dl> |
156 </p><dl> |
157 <dt>Returns:</dt> |
157 <dt>Returns:</dt> |
158 <dd> |
158 <dd> |
159 flag indicating erasure of coverage info (boolean) |
159 flag indicating erasure of coverage info (boolean) |
160 </dd> |
160 </dd> |
161 </dl><a NAME="StartDialog.getData" ID="StartDialog.getData"></a> |
161 </dl><a NAME="StartDialog.getData" ID="StartDialog.getData"></a> |
162 <h4>StartDialog.getData</h4> |
162 <h4>StartDialog.getData</h4> |
163 <b>getData</b>(<i></i>) |
163 <b>getData</b>(<i></i>) |
164 <p> |
164 <p> |
165 Public method to retrieve the data entered into this dialog. |
165 Public method to retrieve the data entered into this dialog. |
166 </p><dl> |
166 </p><dl> |
167 <dt>Returns:</dt> |
167 <dt>Returns:</dt> |
168 <dd> |
168 <dd> |
169 a tuple of argv (string), workdir (string), environment (string), |
169 a tuple of argv (string), workdir (string), environment (string), |
170 exceptions flag (boolean), clear interpreter flag (boolean), |
170 exceptions flag (boolean), clear interpreter flag (boolean), |
171 clear histories flag (boolean) and run in console flag (boolean) |
171 clear histories flag (boolean) and run in console flag (boolean) |
172 </dd> |
172 </dd> |
173 </dl><a NAME="StartDialog.getDebugData" ID="StartDialog.getDebugData"></a> |
173 </dl><a NAME="StartDialog.getDebugData" ID="StartDialog.getDebugData"></a> |
174 <h4>StartDialog.getDebugData</h4> |
174 <h4>StartDialog.getDebugData</h4> |
175 <b>getDebugData</b>(<i></i>) |
175 <b>getDebugData</b>(<i></i>) |
176 <p> |
176 <p> |
177 Public method to retrieve the debug related data entered into this dialog. |
177 Public method to retrieve the debug related data entered into this dialog. |
178 </p><dl> |
178 </p><dl> |
179 <dt>Returns:</dt> |
179 <dt>Returns:</dt> |
180 <dd> |
180 <dd> |
181 a tuple of a flag indicating, if the Python library should be traced |
181 a tuple of a flag indicating, if the Python library should be traced |
182 as well, a flag indicating, that the debugger should not stop at the |
182 as well, a flag indicating, that the debugger should not stop at the |
183 first executable line (boolean), a flag indicating, that the debugger |
183 first executable line (boolean), a flag indicating, that the debugger |
184 should fork automatically (boolean) and a flag indicating, that the |
184 should fork automatically (boolean) and a flag indicating, that the |
185 debugger should debug the child process after forking automatically (boolean) |
185 debugger should debug the child process after forking automatically (boolean) |
186 </dd> |
186 </dd> |
187 </dl><a NAME="StartDialog.getProfilingData" ID="StartDialog.getProfilingData"></a> |
187 </dl><a NAME="StartDialog.getProfilingData" ID="StartDialog.getProfilingData"></a> |
188 <h4>StartDialog.getProfilingData</h4> |
188 <h4>StartDialog.getProfilingData</h4> |
189 <b>getProfilingData</b>(<i></i>) |
189 <b>getProfilingData</b>(<i></i>) |
190 <p> |
190 <p> |
191 Public method to retrieve the profiling related data entered into this dialog. |
191 Public method to retrieve the profiling related data entered into this dialog. |
192 </p><dl> |
192 </p><dl> |
193 <dt>Returns:</dt> |
193 <dt>Returns:</dt> |
194 <dd> |
194 <dd> |
195 flag indicating erasure of profiling info (boolean) |
195 flag indicating erasure of profiling info (boolean) |
196 </dd> |
196 </dd> |
197 </dl><a NAME="StartDialog.on_buttonBox_clicked" ID="StartDialog.on_buttonBox_clicked"></a> |
197 </dl><a NAME="StartDialog.on_buttonBox_clicked" ID="StartDialog.on_buttonBox_clicked"></a> |
198 <h4>StartDialog.on_buttonBox_clicked</h4> |
198 <h4>StartDialog.on_buttonBox_clicked</h4> |
199 <b>on_buttonBox_clicked</b>(<i>button</i>) |
199 <b>on_buttonBox_clicked</b>(<i>button</i>) |
200 <p> |
200 <p> |
201 Private slot called by a button of the button box clicked. |
201 Private slot called by a button of the button box clicked. |
202 </p><dl> |
202 </p><dl> |
203 <dt><i>button</i></dt> |
203 <dt><i>button</i></dt> |
204 <dd> |
204 <dd> |
205 button that was clicked (QAbstractButton) |
205 button that was clicked (QAbstractButton) |
206 </dd> |
206 </dd> |
207 </dl><a NAME="StartDialog.on_dirButton_clicked" ID="StartDialog.on_dirButton_clicked"></a> |
207 </dl><a NAME="StartDialog.on_dirButton_clicked" ID="StartDialog.on_dirButton_clicked"></a> |
208 <h4>StartDialog.on_dirButton_clicked</h4> |
208 <h4>StartDialog.on_dirButton_clicked</h4> |
209 <b>on_dirButton_clicked</b>(<i></i>) |
209 <b>on_dirButton_clicked</b>(<i></i>) |
210 <p> |
210 <p> |
211 Private method used to open a directory selection dialog. |
211 Private method used to open a directory selection dialog. |
212 </p><a NAME="StartDialog.on_modFuncCombo_editTextChanged" ID="StartDialog.on_modFuncCombo_editTextChanged"></a> |
212 </p><a NAME="StartDialog.on_modFuncCombo_editTextChanged" ID="StartDialog.on_modFuncCombo_editTextChanged"></a> |
213 <h4>StartDialog.on_modFuncCombo_editTextChanged</h4> |
213 <h4>StartDialog.on_modFuncCombo_editTextChanged</h4> |
214 <b>on_modFuncCombo_editTextChanged</b>(<i></i>) |
214 <b>on_modFuncCombo_editTextChanged</b>(<i></i>) |
215 <p> |
215 <p> |
216 Private slot to enable/disable the OK button. |
216 Private slot to enable/disable the OK button. |
217 </p> |
217 </p> |
218 <div align="right"><a href="#top">Up</a></div> |
218 <div align="right"><a href="#top">Up</a></div> |
219 <hr /> |
219 <hr /> |
220 </body></html> |
220 </body></html> |