diff options
author | Joel Nordell <joel.nordell@chloridepower.com> | 2009-06-17 10:48:53 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-06-17 10:48:53 (GMT) |
commit | e97b1187391e16208a2da0e4c7f9e6daa540aa93 (patch) | |
tree | 479306f67f4b66ac1ea926ad1755ae32de8613b1 /src/scripttools/debugging/qscriptenginedebugger.cpp | |
parent | 3a55f0eab402a72a0f98fdfe5505614fed5d19ed (diff) | |
download | Qt-e97b1187391e16208a2da0e4c7f9e6daa540aa93.zip Qt-e97b1187391e16208a2da0e4c7f9e6daa540aa93.tar.gz Qt-e97b1187391e16208a2da0e4c7f9e6daa540aa93.tar.bz2 |
add a state() function to QScriptEngineDebugger for determining whether the debu
gger is suspended or not
Merge-request: 555
Reviewed-by: Kent Hansen <khansen@trolltech.com>
Diffstat (limited to 'src/scripttools/debugging/qscriptenginedebugger.cpp')
-rw-r--r-- | src/scripttools/debugging/qscriptenginedebugger.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/scripttools/debugging/qscriptenginedebugger.cpp b/src/scripttools/debugging/qscriptenginedebugger.cpp index 948a01a..ae58c89 100644 --- a/src/scripttools/debugging/qscriptenginedebugger.cpp +++ b/src/scripttools/debugging/qscriptenginedebugger.cpp @@ -226,6 +226,15 @@ public: \value GoToLineAction Shows the "Go to Line" dialog. */ +/*! + \enum QScriptEngineDebugger::DebuggerState + + This enum specifies the current state of the debugger. + + \value RunningState The debugger is running. (Script evaluation is allowed.) + \value SuspendedState The debugger has suspended script evaluation. +*/ + class QScriptEngineDebuggerPrivate : public QObjectPrivate { @@ -387,6 +396,18 @@ void QScriptEngineDebugger::detach() } /*! + Returns the current state of the debugger. + + \sa evaluationResumed() + \sa evaluationSuspended() +*/ +QScriptEngineDebugger::DebuggerState QScriptEngineDebugger::state() const +{ + Q_D(const QScriptEngineDebugger); + return (d->debugger && d->debugger->isInteractive() ? SuspendedState : RunningState); +} + +/*! Returns a pointer to the instance of the specified standard \a widget. The widgets available are defined by the DebuggerWidget |