source: trunk/src/scripttools/debugging/qscriptdebuggerevent_p.h@ 160

Last change on this file since 160 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 5.3 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** Contact: Qt Software Information ([email protected])
5**
6** This file is part of the QtSCriptTools module of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial Usage
10** Licensees holding valid Qt Commercial licenses may use this file in
11** accordance with the Qt Commercial License Agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Nokia.
14**
15** GNU Lesser General Public License Usage
16** Alternatively, this file may be used under the terms of the GNU Lesser
17** General Public License version 2.1 as published by the Free Software
18** Foundation and appearing in the file LICENSE.LGPL included in the
19** packaging of this file. Please review the following information to
20** ensure the GNU Lesser General Public License version 2.1 requirements
21** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22**
23** In addition, as a special exception, Nokia gives you certain
24** additional rights. These rights are described in the Nokia Qt LGPL
25** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26** package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you are unsure which license is appropriate for your use, please
37** contact the sales department at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#ifndef QSCRIPTDEBUGGEREVENT_P_H
43#define QSCRIPTDEBUGGEREVENT_P_H
44
45//
46// W A R N I N G
47// -------------
48//
49// This file is not part of the Qt API. It exists purely as an
50// implementation detail. This header file may change from version to
51// version without notice, or even be removed.
52//
53// We mean it.
54//
55
56#include <QtCore/qobjectdefs.h>
57#include <QtCore/qcoreevent.h>
58#include <QtCore/qhash.h>
59#include <QtCore/qvariant.h>
60
61QT_BEGIN_NAMESPACE
62
63class QDataStream;
64class QScriptDebuggerValue;
65
66class QScriptDebuggerEventPrivate;
67class Q_AUTOTEST_EXPORT QScriptDebuggerEvent
68{
69public:
70 friend Q_AUTOTEST_EXPORT QDataStream &operator<<(QDataStream &, const QScriptDebuggerEvent &);
71 friend Q_AUTOTEST_EXPORT QDataStream &operator>>(QDataStream &, QScriptDebuggerEvent &);
72
73 enum Type {
74 None,
75 Interrupted,
76 SteppingFinished,
77 LocationReached,
78 Breakpoint,
79 Exception,
80 Trace,
81 InlineEvalFinished,
82 DebuggerInvocationRequest,
83 ForcedReturn,
84 UserEvent = 1000,
85 MaxUserEvent = 32767
86 };
87
88 enum Attribute {
89 ScriptID,
90 FileName,
91 BreakpointID,
92 LineNumber,
93 ColumnNumber,
94 Value,
95 Message,
96 IsNestedEvaluate,
97 HasExceptionHandler,
98 UserAttribute = 1000,
99 MaxUserAttribute = 32767
100 };
101
102 QScriptDebuggerEvent();
103 QScriptDebuggerEvent(Type type);
104 QScriptDebuggerEvent(Type type, qint64 scriptId, int lineNumber, int columnNumber);
105 QScriptDebuggerEvent(const QScriptDebuggerEvent &other);
106 ~QScriptDebuggerEvent();
107
108 Type type() const;
109
110 QVariant attribute(Attribute attribute,
111 const QVariant &defaultValue = QVariant()) const;
112 void setAttribute(Attribute attribute, const QVariant &value);
113 QHash<Attribute, QVariant> attributes() const;
114
115 qint64 scriptId() const;
116 void setScriptId(qint64 id);
117 QString fileName() const;
118 void setFileName(const QString &fileName);
119 int lineNumber() const;
120 void setLineNumber(int lineNumber);
121 int columnNumber() const;
122 void setColumnNumber(int columnNumber);
123 int breakpointId() const;
124 void setBreakpointId(int id);
125 QString message() const;
126 void setMessage(const QString &message);
127 QScriptDebuggerValue scriptValue() const;
128 void setScriptValue(const QScriptDebuggerValue &value);
129 void setNestedEvaluate(bool nested);
130 bool isNestedEvaluate() const;
131 void setHasExceptionHandler(bool hasHandler);
132 bool hasExceptionHandler() const;
133
134 QScriptDebuggerEvent &operator=(const QScriptDebuggerEvent &other);
135
136 bool operator==(const QScriptDebuggerEvent &other) const;
137 bool operator!=(const QScriptDebuggerEvent &other) const;
138
139private:
140 QScriptDebuggerEventPrivate *d_ptr;
141
142 Q_DECLARE_PRIVATE(QScriptDebuggerEvent)
143};
144
145Q_AUTOTEST_EXPORT QDataStream &operator<<(QDataStream &, const QScriptDebuggerEvent &);
146Q_AUTOTEST_EXPORT QDataStream &operator>>(QDataStream &, QScriptDebuggerEvent &);
147
148// helper class that's used to transport a debugger event through the Qt event loop
149class QScriptDebuggerEventEvent : public QEvent
150{
151public:
152 QScriptDebuggerEventEvent(const QScriptDebuggerEvent &event)
153 : QEvent(QEvent::Type(QEvent::User+1)), m_event(event) {}
154 ~QScriptDebuggerEventEvent() {}
155 const QScriptDebuggerEvent &event() const
156 { return m_event; }
157private:
158 QScriptDebuggerEvent m_event;
159};
160
161QT_END_NAMESPACE
162
163#endif
Note: See TracBrowser for help on using the repository browser.