Propagate synthesized mouse events in parallel with touch.
[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(bool accepted READ isAccepted WRITE setAccepted)
74
75 public:
76     QQuickKeyEvent(QEvent::Type type, int key, Qt::KeyboardModifiers modifiers, const QString &text=QString(), bool autorep=false, ushort count=1)
77         : event(type, key, modifiers, text, autorep, count) { event.setAccepted(false); }
78     QQuickKeyEvent(const QKeyEvent &ke)
79         : event(ke) { event.setAccepted(false); }
80
81     int key() const { return event.key(); }
82     QString text() const { return event.text(); }
83     int modifiers() const { return event.modifiers(); }
84     bool isAutoRepeat() const { return event.isAutoRepeat(); }
85     int count() const { return event.count(); }
86
87     bool isAccepted() { return event.isAccepted(); }
88     void setAccepted(bool accepted) { event.setAccepted(accepted); }
89
90 private:
91     QKeyEvent event;
92 };
93
94 // used in QtLocation
95 class Q_QUICK_PRIVATE_EXPORT QQuickMouseEvent : public QObject
96 {
97     Q_OBJECT
98     Q_PROPERTY(qreal x READ x)
99     Q_PROPERTY(qreal y READ y)
100     Q_PROPERTY(int button READ button)
101     Q_PROPERTY(int buttons READ buttons)
102     Q_PROPERTY(int modifiers READ modifiers)
103     Q_PROPERTY(bool wasHeld READ wasHeld)
104     Q_PROPERTY(bool isClick READ isClick)
105     Q_PROPERTY(bool accepted READ isAccepted WRITE setAccepted)
106
107 public:
108     QQuickMouseEvent(qreal x, qreal y, Qt::MouseButton button, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers
109                   , bool isClick=false, bool wasHeld=false)
110         : _x(x), _y(y), _button(button), _buttons(buttons), _modifiers(modifiers)
111           , _wasHeld(wasHeld), _isClick(isClick), _accepted(true) {}
112
113     qreal x() const { return _x; }
114     qreal y() const { return _y; }
115     int button() const { return _button; }
116     int buttons() const { return _buttons; }
117     int modifiers() const { return _modifiers; }
118     bool wasHeld() const { return _wasHeld; }
119     bool isClick() const { return _isClick; }
120
121     // only for internal usage
122     void setX(qreal x) { _x = x; }
123     void setY(qreal y) { _y = y; }
124     void setPosition(const QPointF &point) { _x = point.x(); _y = point.y(); }
125
126     bool isAccepted() { return _accepted; }
127     void setAccepted(bool accepted) { _accepted = accepted; }
128
129 private:
130     qreal _x;
131     qreal _y;
132     Qt::MouseButton _button;
133     Qt::MouseButtons _buttons;
134     Qt::KeyboardModifiers _modifiers;
135     bool _wasHeld;
136     bool _isClick;
137     bool _accepted;
138 };
139
140 class QQuickWheelEvent : public QObject
141 {
142     Q_OBJECT
143     Q_PROPERTY(qreal x READ x)
144     Q_PROPERTY(qreal y READ y)
145     Q_PROPERTY(QPoint angleDelta READ angleDelta)
146     Q_PROPERTY(QPoint pixelDelta READ pixelDelta)
147     Q_PROPERTY(int buttons READ buttons)
148     Q_PROPERTY(int modifiers READ modifiers)
149     Q_PROPERTY(bool accepted READ isAccepted WRITE setAccepted)
150
151 public:
152     QQuickWheelEvent(qreal x, qreal y, const QPoint& angleDelta, const QPoint& pixelDelta,
153                      Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers)
154         : _x(x), _y(y), _angleDelta(angleDelta), _pixelDelta(pixelDelta), _buttons(buttons),
155           _modifiers(modifiers), _accepted(true) {}
156
157     qreal x() const { return _x; }
158     qreal y() const { return _y; }
159     QPoint angleDelta() const { return _angleDelta; }
160     QPoint pixelDelta() const { return _pixelDelta; }
161     int buttons() const { return _buttons; }
162     int modifiers() const { return _modifiers; }
163
164     bool isAccepted() { return _accepted; }
165     void setAccepted(bool accepted) { _accepted = accepted; }
166
167 private:
168     qreal _x;
169     qreal _y;
170     QPoint _angleDelta;
171     QPoint _pixelDelta;
172     Qt::MouseButtons _buttons;
173     Qt::KeyboardModifiers _modifiers;
174     bool _accepted;
175 };
176
177 QT_END_NAMESPACE
178
179 QML_DECLARE_TYPE(QQuickKeyEvent)
180 QML_DECLARE_TYPE(QQuickMouseEvent)
181 QML_DECLARE_TYPE(QQuickWheelEvent)
182
183 #endif // QQUICKEVENTS_P_P_H