| 1 | /**************************************************************************** |
| 2 | ** |
| 3 | ** Copyright (C) 2018 The Qt Company Ltd. |
| 4 | ** Contact: https://www.qt.io/licensing/ |
| 5 | ** |
| 6 | ** This file is part of the QtSCriptTools module of the Qt Toolkit. |
| 7 | ** |
| 8 | ** $QT_BEGIN_LICENSE:LGPL$ |
| 9 | ** Commercial License Usage |
| 10 | ** Licensees holding valid commercial Qt licenses may use this file in |
| 11 | ** accordance with the commercial license agreement provided with the |
| 12 | ** Software or, alternatively, in accordance with the terms contained in |
| 13 | ** a written agreement between you and The Qt Company. For licensing terms |
| 14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
| 15 | ** information use the contact form at https://www.qt.io/contact-us. |
| 16 | ** |
| 17 | ** GNU Lesser General Public License Usage |
| 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
| 19 | ** General Public License version 3 as published by the Free Software |
| 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
| 21 | ** packaging of this file. Please review the following information to |
| 22 | ** ensure the GNU Lesser General Public License version 3 requirements |
| 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
| 24 | ** |
| 25 | ** GNU General Public License Usage |
| 26 | ** Alternatively, this file may be used under the terms of the GNU |
| 27 | ** General Public License version 2.0 or (at your option) the GNU General |
| 28 | ** Public license version 3 or any later version approved by the KDE Free |
| 29 | ** Qt Foundation. The licenses are as published by the Free Software |
| 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
| 31 | ** included in the packaging of this file. Please review the following |
| 32 | ** information to ensure the GNU General Public License requirements will |
| 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
| 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
| 35 | ** |
| 36 | ** $QT_END_LICENSE$ |
| 37 | ** |
| 38 | ****************************************************************************/ |
| 39 | |
| 40 | #ifndef QSCRIPTDEBUGGERRESPONSE_P_H |
| 41 | #define QSCRIPTDEBUGGERRESPONSE_P_H |
| 42 | |
| 43 | // |
| 44 | // W A R N I N G |
| 45 | // ------------- |
| 46 | // |
| 47 | // This file is not part of the Qt API. It exists purely as an |
| 48 | // implementation detail. This header file may change from version to |
| 49 | // version without notice, or even be removed. |
| 50 | // |
| 51 | // We mean it. |
| 52 | // |
| 53 | |
| 54 | #include <QtCore/qobjectdefs.h> |
| 55 | #include <QtCore/qscopedpointer.h> |
| 56 | #include <QtCore/qmap.h> |
| 57 | #include <QtCore/qvariant.h> |
| 58 | |
| 59 | #include "qscriptbreakpointdata_p.h" |
| 60 | #include "qscriptscriptdata_p.h" |
| 61 | #include "qscriptdebuggervalue_p.h" |
| 62 | #include "qscriptdebuggervalueproperty_p.h" |
| 63 | |
| 64 | QT_BEGIN_NAMESPACE |
| 65 | |
| 66 | class QDataStream; |
| 67 | class QScriptContextInfo; |
| 68 | |
| 69 | class QScriptDebuggerResponsePrivate; |
| 70 | class Q_AUTOTEST_EXPORT QScriptDebuggerResponse |
| 71 | { |
| 72 | public: |
| 73 | friend Q_AUTOTEST_EXPORT QDataStream &operator<<(QDataStream &, const QScriptDebuggerResponse &); |
| 74 | friend Q_AUTOTEST_EXPORT QDataStream &operator>>(QDataStream &, QScriptDebuggerResponse &); |
| 75 | |
| 76 | enum Error { |
| 77 | NoError, |
| 78 | InvalidContextIndex, |
| 79 | InvalidArgumentIndex, |
| 80 | InvalidScriptID, |
| 81 | InvalidBreakpointID, |
| 82 | UserError = 1000, |
| 83 | MaxUserError = 32767 |
| 84 | }; |
| 85 | |
| 86 | QScriptDebuggerResponse(); |
| 87 | QScriptDebuggerResponse(const QScriptDebuggerResponse &other); |
| 88 | ~QScriptDebuggerResponse(); |
| 89 | |
| 90 | Error error() const; |
| 91 | void setError(Error error); |
| 92 | |
| 93 | QVariant result() const; |
| 94 | void setResult(const QVariant &value); |
| 95 | |
| 96 | void setResult(int value); |
| 97 | void setResult(const QString &value); |
| 98 | void setResult(const QScriptBreakpointData &data); |
| 99 | void setResult(const QScriptBreakpointMap &breakpoints); |
| 100 | void setResult(const QScriptScriptMap &scripts); |
| 101 | void setResult(const QScriptScriptData &data); |
| 102 | void setResult(const QScriptDebuggerValue &value); |
| 103 | void setResult(const QScriptDebuggerValueList &value); |
| 104 | void setResult(const QScriptDebuggerValuePropertyList &props); |
| 105 | void setResult(const QScriptContextInfo &info); |
| 106 | |
| 107 | int resultAsInt() const; |
| 108 | qint64 resultAsLongLong() const; |
| 109 | QString resultAsString() const; |
| 110 | QScriptBreakpointData resultAsBreakpointData() const; |
| 111 | QScriptBreakpointMap resultAsBreakpoints() const; |
| 112 | QScriptScriptMap resultAsScripts() const; |
| 113 | QScriptScriptData resultAsScriptData() const; |
| 114 | QScriptDebuggerValue resultAsScriptValue() const; |
| 115 | QScriptDebuggerValueList resultAsScriptValueList() const; |
| 116 | QScriptDebuggerValuePropertyList resultAsScriptValuePropertyList() const; |
| 117 | QScriptContextInfo resultAsContextInfo() const; |
| 118 | |
| 119 | bool async() const; |
| 120 | void setAsync(bool async); |
| 121 | |
| 122 | QScriptDebuggerResponse &operator=(const QScriptDebuggerResponse &other); |
| 123 | |
| 124 | bool operator==(const QScriptDebuggerResponse &other) const; |
| 125 | bool operator!=(const QScriptDebuggerResponse &other) const; |
| 126 | |
| 127 | private: |
| 128 | QScopedPointer<QScriptDebuggerResponsePrivate> d_ptr; |
| 129 | |
| 130 | Q_DECLARE_PRIVATE(QScriptDebuggerResponse) |
| 131 | }; |
| 132 | |
| 133 | Q_AUTOTEST_EXPORT QDataStream &operator<<(QDataStream &, const QScriptDebuggerResponse &); |
| 134 | Q_AUTOTEST_EXPORT QDataStream &operator>>(QDataStream &, QScriptDebuggerResponse &); |
| 135 | |
| 136 | QT_END_NAMESPACE |
| 137 | |
| 138 | #endif |
| 139 | |