Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qv4debugclient_p.h
Go to the documentation of this file.
1// Copyright (C) 2018 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QV4DEBUGCLIENT_P_H
5#define QV4DEBUGCLIENT_P_H
6
8#include <QtCore/qjsonvalue.h>
9
10//
11// W A R N I N G
12// -------------
13//
14// This file is not part of the Qt API. It exists purely as an
15// implementation detail. This header file may change from version to
16// version without notice, or even be removed.
17//
18// We mean it.
19//
20
22
25{
26 Q_OBJECT
27 Q_DECLARE_PRIVATE(QV4DebugClient)
28
29public:
37
39 {
42 };
43
49
51
52 void connect();
53 void disconnect();
54
55 void interrupt();
56 void continueDebugging(StepAction stepAction);
57 void evaluate(const QString &expr, int frame = -1, int context = -1);
58 void lookup(const QList<int> &handles, bool includeSource = false);
59 void backtrace(int fromFrame = -1, int toFrame = -1, bool bottom = false);
60 void frame(int number = -1);
61 void scope(int number = -1, int frameNumber = -1);
62 void scripts(int types = 4, const QList<int> &ids = QList<int>(), bool includeSource = false);
63 void setBreakpoint(const QString &target, int line = -1, int column = -1, bool enabled = true,
64 const QString &condition = QString(), int ignoreCount = -1);
65 void clearBreakpoint(int breakpoint);
66 void changeBreakpoint(int breakpoint, bool enabled);
67 void setExceptionBreak(Exception type, bool enabled = false);
68 void version();
69
70 Response response() const;
71
72protected:
73 void messageReceived(const QByteArray &data) override;
74
76 void connected();
78 void result();
79 void failure();
80 void stopped();
81};
82
83QT_END_NAMESPACE
84
85#endif // QV4DEBUGCLIENT_P_H
QQmlDebugConnection * connection() const
void sendMessage(const QByteArray &command, const QJsonObject &args=QJsonObject())
QByteArray packMessage(const QByteArray &type, const QJsonObject &object)
void onStateChanged(QQmlDebugClient::State state)
void scripts(int types=4, const QList< int > &ids=QList< int >(), bool includeSource=false)
void frame(int number=-1)
void changeBreakpoint(int breakpoint, bool enabled)
QV4DebugClient(QQmlDebugConnection *connection)
void messageReceived(const QByteArray &data) override
void evaluate(const QString &expr, int frame=-1, int context=-1)
void setBreakpoint(const QString &target, int line=-1, int column=-1, bool enabled=true, const QString &condition=QString(), int ignoreCount=-1)
void interrupted()
void lookup(const QList< int > &handles, bool includeSource=false)
void continueDebugging(StepAction stepAction)
void scope(int number=-1, int frameNumber=-1)
void setExceptionBreak(Exception type, bool enabled=false)
Response response() const
void backtrace(int fromFrame=-1, int toFrame=-1, bool bottom=false)
void clearBreakpoint(int breakpoint)
const char * SCOPE
const char * SETEXCEPTIONBREAK
const char * LINE
const char * ALL
const char * CLEARBREAKPOINT
const char * FLAGS
const char * SCRIPTREGEXP
const char * SEQ
const char * TYPES
const char * TYPE
const char * COMMAND
const char * EVENT
const char * HANDLES
const char * TOLINE
const char * REQUEST
const char * SCRIPT
const char * IGNORECOUNT
QT_BEGIN_NAMESPACE const char * V8REQUEST
const char * NEXT
const char * INTERRUPT
const char * NUMBER
const char * EVALUATE
const char * BOTTOM
const char * BREAKPOINT
const char * GARBAGECOLLECTOR
const char * FILTER
const char * STEPCOUNT
const char * OUT
const char * DISCONNECT
const char * CONDITION
const char * CONTINEDEBUGGING
const char * CHANGEBREAKPOINT
const char * GLOBAL
const char * FRAME
const char * SOURCE
const char * UNCAUGHT
const char * TARGET
const char * SCOPES
const char * INCLUDESOURCE
const char * STEPACTION
const char * SCRIPTS
const char * BACKTRACE
const char * ENABLED
#define VARIANTMAPINIT
const char * LOOKUP
const char * VERSION
const char * IN
const char * SETBREAKPOINT
const char * CONNECT
const char * FROMLINE
const char * TOFRAME
const char * FRAMENUMBER
const char * FROMFRAME
const char * CONTEXT
const char * ARGUMENTS
const char * IDS
const char * V8MESSAGE
const char * DISABLEBREAK
const char * COLUMN
const char * EXPRESSION