eric6.Debugger.StartDialog
Module implementing the Start Program dialog.
Global Attributes
Classes
StartDialog |
Class implementing the Start Program dialog. |
Functions
StartDialog
Class implementing the Start Program dialog.
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.
Derived from
QDialog
Class Attributes
Class Methods
Methods
Static Methods
StartDialog (Constructor)
StartDialog(caption, lastUsedVenvName, argvList, wdList, envList, exceptions, parent=None, dialogType=0, modfuncList=None, tracePython=False, autoClearShell=True, autoContinue=True, autoFork=False, forkChild=False)
Constructor
- caption (str)
-
the caption to be displayed
- lastUsedVenvName (str)
-
name of the most recently used virtual
environment
- argvList (list of str)
-
history list of command line arguments
- wdList (list of str)
-
history list of working directories
- envList (list of str)
-
history list of environment parameter settings
- exceptions (bool)
-
exception reporting flag
- parent (QWidget)
-
parent widget of this dialog
- dialogType (int (0 to 3))
-
type of the start dialog
- 0 = start debug dialog
- 1 = start run dialog
- 2 = start coverage dialog
- 3 = start profile dialog
- modfuncList= (list of str)
-
history list of module functions
- tracePython= (bool)
-
flag indicating if the Python library should
be traced as well
- autoClearShell= (bool)
-
flag indicating, that the interpreter window
should be cleared automatically
- autoContinue= (bool)
-
flag indicating, that the debugger should not
stop at the first executable line
- autoFork= (bool)
-
flag indicating the automatic fork mode
- forkChild= (bool)
-
flag indicating to debug the child after forking
StartDialog.__clearHistories
__clearHistories()
Private slot to clear the combo boxes lists and record a flag to
clear the lists.
StartDialog.__editHistory
__editHistory()
Private slot to edit a history list.
StartDialog.clearHistories
clearHistories()
Public method to test, if histories shall be cleared.
- Returns:
-
flag indicating histories shall be cleared
- Return Type:
-
bool
StartDialog.getCoverageData
getCoverageData()
Public method to retrieve the coverage related data entered into this
dialog.
- Returns:
-
flag indicating erasure of coverage info (boolean)
StartDialog.getData
getData()
Public method to retrieve the data entered into this dialog.
- Returns:
-
a tuple of interpreter (string), argv (string), workdir
(string), environment (string), exceptions flag (boolean),
clear interpreter flag (boolean) and run in console flag (boolean)
StartDialog.getDebugData
getDebugData()
Public method to retrieve the debug related data entered into this
dialog.
- Returns:
-
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)
StartDialog.getHistories
getHistories()
Public method to get the lists of histories.
- Returns:
-
tuple containing the histories of command line arguments,
working directories, environment settings and interpreters
- Return Type:
-
tuple of four list of str
StartDialog.getProfilingData
getProfilingData()
Public method to retrieve the profiling related data entered into this
dialog.
- Returns:
-
flag indicating erasure of profiling info (boolean)
StartDialog.getRunData
getRunData()
Public method to retrieve the debug related data entered into this
dialog.
- Returns:
-
a tuple of 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)
StartDialog.historiesModified
historiesModified()
Public method to test for modified histories.
- Returns:
-
flag indicating modified histories
- Return Type:
-
bool
StartDialog.on_buttonBox_clicked
on_buttonBox_clicked(button)
Private slot called by a button of the button box clicked.
- button
-
button that was clicked (QAbstractButton)
StartDialog.on_modFuncCombo_editTextChanged
on_modFuncCombo_editTextChanged()
Private slot to enable/disable the OK button.