diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-06-12 13:32:20 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-06-12 13:32:20 (GMT) |
commit | 5f287af53d146e76a11f23c889d9591d9c0b7b65 (patch) | |
tree | 08c2b9ae8260358a8d03621856d7d03fbda776dc /src/scripttools/debugging/qscriptdebuggercommand_p.h | |
parent | c9bddb70cb4804672cedb23dbfb3ca13724f0e68 (diff) | |
download | Qt-5f287af53d146e76a11f23c889d9591d9c0b7b65.zip Qt-5f287af53d146e76a11f23c889d9591d9c0b7b65.tar.gz Qt-5f287af53d146e76a11f23c889d9591d9c0b7b65.tar.bz2 |
make debugger's tooltip handling asynchronous
Needed for remote debugging.
Diffstat (limited to 'src/scripttools/debugging/qscriptdebuggercommand_p.h')
-rw-r--r-- | src/scripttools/debugging/qscriptdebuggercommand_p.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/scripttools/debugging/qscriptdebuggercommand_p.h b/src/scripttools/debugging/qscriptdebuggercommand_p.h index 260e3ec..6cfdec5 100644 --- a/src/scripttools/debugging/qscriptdebuggercommand_p.h +++ b/src/scripttools/debugging/qscriptdebuggercommand_p.h @@ -106,6 +106,7 @@ public: GetActivationObject, GetScopeChain, ContextsCheckpoint, + GetPropertyExpressionValue, NewScriptObjectSnapshot, ScriptObjectSnapshotCapture, @@ -229,6 +230,8 @@ public: static QScriptDebuggerCommand getActivationObjectCommand(int contextIndex); static QScriptDebuggerCommand getScopeChainCommand(int contextIndex); static QScriptDebuggerCommand contextsCheckpoint(); + static QScriptDebuggerCommand getPropertyExpressionValue(int contextIndex, int lineNumber, + const QStringList &path); static QScriptDebuggerCommand newScriptObjectSnapshotCommand(); static QScriptDebuggerCommand scriptObjectSnapshotCaptureCommand(int id, const QScriptDebuggerValue &object); |