eric7/Documentation/Source/eric7.Debugger.DebugUI.html

branch
eric7
changeset 8533
7265a143f5c0
parent 8372
e0227a7c850e
child 8596
d64760b2da50
equal deleted inserted replaced
8532:a392af4b87e8 8533:7265a143f5c0
217 <tr> 217 <tr>
218 <td><a href="#DebugUI.__debugScript">__debugScript</a></td> 218 <td><a href="#DebugUI.__debugScript">__debugScript</a></td>
219 <td>Private slot to handle the debug script action.</td> 219 <td>Private slot to handle the debug script action.</td>
220 </tr> 220 </tr>
221 <tr> 221 <tr>
222 <td><a href="#DebugUI.__doCoverage">__doCoverage</a></td>
223 <td>Private method to handle the coverage actions.</td>
224 </tr>
225 <tr>
226 <td><a href="#DebugUI.__doDebug">__doDebug</a></td>
227 <td>Private method to handle the debug actions.</td>
228 </tr>
229 <tr>
230 <td><a href="#DebugUI.__doProfile">__doProfile</a></td>
231 <td>Private method to handle the profile actions.</td>
232 </tr>
233 <tr>
234 <td><a href="#DebugUI.__doRestart">__doRestart</a></td> 222 <td><a href="#DebugUI.__doRestart">__doRestart</a></td>
235 <td>Private slot to handle the restart action to restart the last debugged file.</td> 223 <td>Private slot to handle the restart action to restart the last debugged file.</td>
236 </tr> 224 </tr>
237 <tr> 225 <tr>
238 <td><a href="#DebugUI.__doRun">__doRun</a></td>
239 <td>Private method to handle the run actions.</td>
240 </tr>
241 <tr>
242 <td><a href="#DebugUI.__editBreakpoint">__editBreakpoint</a></td> 226 <td><a href="#DebugUI.__editBreakpoint">__editBreakpoint</a></td>
243 <td>Private slot to handle the 'Edit breakpoint' action.</td> 227 <td>Private slot to handle the 'Edit breakpoint' action.</td>
244 </tr> 228 </tr>
245 <tr> 229 <tr>
246 <td><a href="#DebugUI.__editorOpened">__editorOpened</a></td> 230 <td><a href="#DebugUI.__editorOpened">__editorOpened</a></td>
361 <tr> 345 <tr>
362 <td><a href="#DebugUI.clearHistories">clearHistories</a></td> 346 <td><a href="#DebugUI.clearHistories">clearHistories</a></td>
363 <td>Public method to clear the various debug histories.</td> 347 <td>Public method to clear the various debug histories.</td>
364 </tr> 348 </tr>
365 <tr> 349 <tr>
350 <td><a href="#DebugUI.doCoverage">doCoverage</a></td>
351 <td>Public method to handle the coverage actions.</td>
352 </tr>
353 <tr>
354 <td><a href="#DebugUI.doDebug">doDebug</a></td>
355 <td>Public method to handle the debug actions.</td>
356 </tr>
357 <tr>
358 <td><a href="#DebugUI.doProfile">doProfile</a></td>
359 <td>Public method to handle the profile actions.</td>
360 </tr>
361 <tr>
362 <td><a href="#DebugUI.doRun">doRun</a></td>
363 <td>Public method to handle the run actions.</td>
364 </tr>
365 <tr>
366 <td><a href="#DebugUI.getActions">getActions</a></td> 366 <td><a href="#DebugUI.getActions">getActions</a></td>
367 <td>Public method to get a list of all actions.</td> 367 <td>Public method to get a list of all actions.</td>
368 </tr> 368 </tr>
369 <tr> 369 <tr>
370 <td><a href="#DebugUI.getSelectedDebuggerId">getSelectedDebuggerId</a></td> 370 <td><a href="#DebugUI.getSelectedDebuggerId">getSelectedDebuggerId</a></td>
423 <td>Public slot to initialize the exception reporting flag.</td> 423 <td>Public slot to initialize the exception reporting flag.</td>
424 </tr> 424 </tr>
425 <tr> 425 <tr>
426 <td><a href="#DebugUI.setMultiprocessNoDebugHistory">setMultiprocessNoDebugHistory</a></td> 426 <td><a href="#DebugUI.setMultiprocessNoDebugHistory">setMultiprocessNoDebugHistory</a></td>
427 <td>Public slot to initialize the no debug list history.</td> 427 <td>Public slot to initialize the no debug list history.</td>
428 </tr>
429 <tr>
430 <td><a href="#DebugUI.setScriptsHistory">setScriptsHistory</a></td>
431 <td>Public slot to initialize the scripts history.</td>
428 </tr> 432 </tr>
429 <tr> 433 <tr>
430 <td><a href="#DebugUI.setTracePython">setTracePython</a></td> 434 <td><a href="#DebugUI.setTracePython">setTracePython</a></td>
431 <td>Public slot to initialize the trace Python flag.</td> 435 <td>Public slot to initialize the trace Python flag.</td>
432 </tr> 436 </tr>
900 <b>__debugScript</b>(<i></i>) 904 <b>__debugScript</b>(<i></i>)
901 905
902 <p> 906 <p>
903 Private slot to handle the debug script action. 907 Private slot to handle the debug script action.
904 </p> 908 </p>
905 <a NAME="DebugUI.__doCoverage" ID="DebugUI.__doCoverage"></a>
906 <h4>DebugUI.__doCoverage</h4>
907 <b>__doCoverage</b>(<i>runProject</i>)
908
909 <p>
910 Private method to handle the coverage actions.
911 </p>
912 <dl>
913
914 <dt><i>runProject</i></dt>
915 <dd>
916 flag indicating coverage of the current project
917 (True) or script (false)
918 </dd>
919 </dl>
920 <a NAME="DebugUI.__doDebug" ID="DebugUI.__doDebug"></a>
921 <h4>DebugUI.__doDebug</h4>
922 <b>__doDebug</b>(<i>debugProject</i>)
923
924 <p>
925 Private method to handle the debug actions.
926 </p>
927 <dl>
928
929 <dt><i>debugProject</i></dt>
930 <dd>
931 flag indicating debugging the current project
932 (True) or script (False)
933 </dd>
934 </dl>
935 <a NAME="DebugUI.__doProfile" ID="DebugUI.__doProfile"></a>
936 <h4>DebugUI.__doProfile</h4>
937 <b>__doProfile</b>(<i>runProject</i>)
938
939 <p>
940 Private method to handle the profile actions.
941 </p>
942 <dl>
943
944 <dt><i>runProject</i></dt>
945 <dd>
946 flag indicating profiling of the current project
947 (True) or script (False)
948 </dd>
949 </dl>
950 <a NAME="DebugUI.__doRestart" ID="DebugUI.__doRestart"></a> 909 <a NAME="DebugUI.__doRestart" ID="DebugUI.__doRestart"></a>
951 <h4>DebugUI.__doRestart</h4> 910 <h4>DebugUI.__doRestart</h4>
952 <b>__doRestart</b>(<i></i>) 911 <b>__doRestart</b>(<i></i>)
953 912
954 <p> 913 <p>
955 Private slot to handle the restart action to restart the last 914 Private slot to handle the restart action to restart the last
956 debugged file. 915 debugged file.
957 </p> 916 </p>
958 <a NAME="DebugUI.__doRun" ID="DebugUI.__doRun"></a>
959 <h4>DebugUI.__doRun</h4>
960 <b>__doRun</b>(<i>runProject</i>)
961
962 <p>
963 Private method to handle the run actions.
964 </p>
965 <dl>
966
967 <dt><i>runProject</i></dt>
968 <dd>
969 flag indicating running the current project (True)
970 or script (False)
971 </dd>
972 </dl>
973 <a NAME="DebugUI.__editBreakpoint" ID="DebugUI.__editBreakpoint"></a> 917 <a NAME="DebugUI.__editBreakpoint" ID="DebugUI.__editBreakpoint"></a>
974 <h4>DebugUI.__editBreakpoint</h4> 918 <h4>DebugUI.__editBreakpoint</h4>
975 <b>__editBreakpoint</b>(<i></i>) 919 <b>__editBreakpoint</b>(<i></i>)
976 920
977 <p> 921 <p>
1296 <b>clearHistories</b>(<i></i>) 1240 <b>clearHistories</b>(<i></i>)
1297 1241
1298 <p> 1242 <p>
1299 Public method to clear the various debug histories. 1243 Public method to clear the various debug histories.
1300 </p> 1244 </p>
1245 <a NAME="DebugUI.doCoverage" ID="DebugUI.doCoverage"></a>
1246 <h4>DebugUI.doCoverage</h4>
1247 <b>doCoverage</b>(<i>runProject, script=""</i>)
1248
1249 <p>
1250 Public method to handle the coverage actions.
1251 </p>
1252 <dl>
1253
1254 <dt><i>runProject</i> (bool)</dt>
1255 <dd>
1256 flag indicating coverage of the current project
1257 (True) or script (false)
1258 </dd>
1259 <dt><i>script</i> (str)</dt>
1260 <dd>
1261 name of a script (optional)
1262 </dd>
1263 </dl>
1264 <a NAME="DebugUI.doDebug" ID="DebugUI.doDebug"></a>
1265 <h4>DebugUI.doDebug</h4>
1266 <b>doDebug</b>(<i>debugProject, script=""</i>)
1267
1268 <p>
1269 Public method to handle the debug actions.
1270 </p>
1271 <dl>
1272
1273 <dt><i>debugProject</i> (bool)</dt>
1274 <dd>
1275 flag indicating debugging the current project
1276 (True) or script (False)
1277 </dd>
1278 <dt><i>script</i> (str)</dt>
1279 <dd>
1280 name of a script (optional)
1281 </dd>
1282 </dl>
1283 <a NAME="DebugUI.doProfile" ID="DebugUI.doProfile"></a>
1284 <h4>DebugUI.doProfile</h4>
1285 <b>doProfile</b>(<i>runProject, script=""</i>)
1286
1287 <p>
1288 Public method to handle the profile actions.
1289 </p>
1290 <dl>
1291
1292 <dt><i>runProject</i> (bool)</dt>
1293 <dd>
1294 flag indicating profiling of the current project
1295 (True) or script (False)
1296 </dd>
1297 <dt><i>script</i> (str)</dt>
1298 <dd>
1299 name of a script (optional)
1300 </dd>
1301 </dl>
1302 <a NAME="DebugUI.doRun" ID="DebugUI.doRun"></a>
1303 <h4>DebugUI.doRun</h4>
1304 <b>doRun</b>(<i>runProject, script=""</i>)
1305
1306 <p>
1307 Public method to handle the run actions.
1308 </p>
1309 <dl>
1310
1311 <dt><i>runProject</i> (bool)</dt>
1312 <dd>
1313 flag indicating running the current project (True)
1314 or script (False)
1315 </dd>
1316 <dt><i>script</i> (str)</dt>
1317 <dd>
1318 name of a script (optional)
1319 </dd>
1320 </dl>
1301 <a NAME="DebugUI.getActions" ID="DebugUI.getActions"></a> 1321 <a NAME="DebugUI.getActions" ID="DebugUI.getActions"></a>
1302 <h4>DebugUI.getActions</h4> 1322 <h4>DebugUI.getActions</h4>
1303 <b>getActions</b>(<i></i>) 1323 <b>getActions</b>(<i></i>)
1304 1324
1305 <p> 1325 <p>
1555 <dt><i>history</i> (list of str)</dt> 1575 <dt><i>history</i> (list of str)</dt>
1556 <dd> 1576 <dd>
1557 list of history entries to be set 1577 list of history entries to be set
1558 </dd> 1578 </dd>
1559 </dl> 1579 </dl>
1580 <a NAME="DebugUI.setScriptsHistory" ID="DebugUI.setScriptsHistory"></a>
1581 <h4>DebugUI.setScriptsHistory</h4>
1582 <b>setScriptsHistory</b>(<i>scriptName, clearHistories=False, history=None</i>)
1583
1584 <p>
1585 Public slot to initialize the scripts history.
1586 </p>
1587 <dl>
1588
1589 <dt><i>scriptName</i> (str)</dt>
1590 <dd>
1591 script name
1592 </dd>
1593 <dt><i>clearHistories</i> (bool (optional))</dt>
1594 <dd>
1595 flag indicating, that the list should
1596 be cleared (defaults to False)
1597 </dd>
1598 <dt><i>history</i> (list of str (optional))</dt>
1599 <dd>
1600 list of history entries to be set (defaults to None)
1601 </dd>
1602 </dl>
1560 <a NAME="DebugUI.setTracePython" ID="DebugUI.setTracePython"></a> 1603 <a NAME="DebugUI.setTracePython" ID="DebugUI.setTracePython"></a>
1561 <h4>DebugUI.setTracePython</h4> 1604 <h4>DebugUI.setTracePython</h4>
1562 <b>setTracePython</b>(<i>tracePython</i>) 1605 <b>setTracePython</b>(<i>tracePython</i>)
1563 1606
1564 <p> 1607 <p>

eric ide

mercurial