Update to 5.0.0-beta1
[profile/ivi/qtdeclarative.git] / src / quick / items / qquickevents_p_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtQml module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QQUICKEVENTS_P_P_H
43 #define QQUICKEVENTS_P_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 <private/qtquickglobal_p.h>
57 #include <qqml.h>
58
59 #include <QtCore/qobject.h>
60 #include <QtGui/qvector2d.h>
61 #include <QtGui/qevent.h>
62
63 QT_BEGIN_NAMESPACE
64
65 class QQuickKeyEvent : public QObject
66 {
67     Q_OBJECT
68     Q_PROPERTY(int key READ key)
69     Q_PROPERTY(QString text READ text)
70     Q_PROPERTY(int modifiers READ modifiers)
71     Q_PROPERTY(bool isAutoRepeat READ isAutoRepeat)
72     Q_PROPERTY(int count READ count)
73     Q_PROPERTY(quint32 nativeScanCode READ nativeScanCode)
74     Q_PROPERTY(bool accepted READ isAccepted WRITE setAccepted)
75
76 public:
77     QQuickKeyEvent(QEvent::Type type, int key, Qt::KeyboardModifiers modifiers, const QString &text=QString(), bool autorep=false, ushort count=1)
78         : event(type, key, modifiers, text, autorep, count) { event.setAccepted(false); }
79     QQuickKeyEvent(const QKeyEvent &ke)
80         : event(ke) { event.setAccepted(false); }
81
82     int key() const { return event.key(); }
83     QString text() const { return event.text(); }
84     int modifiers() const { return event.modifiers(); }
85     bool isAutoRepeat() const { return event.isAutoRepeat(); }
86     int count() const { return event.count(); }
87     quint32 nativeScanCode() const { return event.nativeScanCode(); }
88
89     bool isAccepted() { return event.isAccepted(); }
90     void setAccepted(bool accepted) { event.setAccepted(accepted); }
91
92 private:
93     QKeyEvent event;
94 };
95
96 // used in QtLocation
97 class Q_QUICK_PRIVATE_EXPORT QQuickMouseEvent : public QObject
98 {
99     Q_OBJECT
100     Q_PROPERTY(qreal x READ x)
101     Q_PROPERTY(qreal y READ y)
102     Q_PROPERTY(int button READ button)
103     Q_PROPERTY(int buttons READ buttons)
104     Q_PROPERTY(int modifiers READ modifiers)
105     Q_PROPERTY(bool wasHeld READ wasHeld)
106     Q_PROPERTY(bool isClick READ isClick)
107     Q_PROPERTY(bool accepted READ isAccepted WRITE setAccepted)
108
109 public:
110     QQuickMouseEvent(qreal x, qreal y, Qt::MouseButton button, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers
111                   , bool isClick=false, bool wasHeld=false)
112         : _x(x), _y(y), _button(button), _buttons(buttons), _modifiers(modifiers)
113           , _wasHeld(wasHeld), _isClick(isClick), _accepted(true) {}
114
115     qreal x() const { return _x; }
116     qreal y() const { return _y; }
117     int button() const { return _button; }
118     int buttons() const { return _buttons; }
119     int modifiers() const { return _modifiers; }
120     bool wasHeld() const { return _wasHeld; }
121     bool isClick() const { return _isClick; }
122
123     // only for internal usage
124     void setX(qreal x) { _x = x; }
125     void setY(qreal y) { _y = y; }
126     void setPosition(const QPointF &point) { _x = point.x(); _y = point.y(); }
127
128     bool isAccepted() { return _accepted; }
129     void setAccepted(bool accepted) { _accepted = accepted; }
130
131 private:
132     qreal _x;
133     qreal _y;
134     Qt::MouseButton _button;
135     Qt::MouseButtons _buttons;
136     Qt::KeyboardModifiers _modifiers;
137     bool _wasHeld;
138     bool _isClick;
139     bool _accepted;
140 };
141
142 class QQuickWheelEvent : public QObject
143 {
144     Q_OBJECT
145     Q_PROPERTY(qreal x READ x)
146     Q_PROPERTY(qreal y READ y)
147     Q_PROPERTY(QPoint angleDelta READ angleDelta)
148     Q_PROPERTY(QPoint pixelDelta READ pixelDelta)
149     Q_PROPERTY(int buttons READ buttons)
150     Q_PROPERTY(int modifiers READ modifiers)
151     Q_PROPERTY(bool accepted READ isAccepted WRITE setAccepted)
152
153 public:
154     QQuickWheelEvent(qreal x, qreal y, const QPoint& angleDelta, const QPoint& pixelDelta,
155                      Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers)
156         : _x(x), _y(y), _angleDelta(angleDelta), _pixelDelta(pixelDelta), _buttons(buttons),
157           _modifiers(modifiers), _accepted(true) {}
158
159     qreal x() const { return _x; }
160     qreal y() const { return _y; }
161     QPoint angleDelta() const { return _angleDelta; }
162     QPoint pixelDelta() const { return _pixelDelta; }
163     int buttons() const { return _buttons; }
164     int modifiers() const { return _modifiers; }
165
166     bool isAccepted() { return _accepted; }
167     void setAccepted(bool accepted) { _accepted = accepted; }
168
169 private:
170     qreal _x;
171     qreal _y;
172     QPoint _angleDelta;
173     QPoint _pixelDelta;
174     Qt::MouseButtons _buttons;
175     Qt::KeyboardModifiers _modifiers;
176     bool _accepted;
177 };
178
179 QT_END_NAMESPACE
180
181 QML_DECLARE_TYPE(QQuickKeyEvent)
182 QML_DECLARE_TYPE(QQuickMouseEvent)
183 QML_DECLARE_TYPE(QQuickWheelEvent)
184
185 #endif // QQUICKEVENTS_P_P_H