Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / src / quick / items / qquickevents_p_p.h
1 // Commit: ac5c099cc3c5b8c7eec7a49fdeb8a21037230350
2 /****************************************************************************
3 **
4 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 **
39 ** $QT_END_LICENSE$
40 **
41 ****************************************************************************/
42
43 #ifndef QQUICKEVENTS_P_P_H
44 #define QQUICKEVENTS_P_P_H
45
46 //
47 //  W A R N I N G
48 //  -------------
49 //
50 // This file is not part of the Qt API.  It exists purely as an
51 // implementation detail.  This header file may change from version to
52 // version without notice, or even be removed.
53 //
54 // We mean it.
55 //
56
57 #include <QtQuick/qtquickglobal.h>
58 #include <qdeclarative.h>
59
60 #include <QtCore/qobject.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_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 QT_END_NAMESPACE
141
142 QML_DECLARE_TYPE(QQuickKeyEvent)
143 QML_DECLARE_TYPE(QQuickMouseEvent)
144
145 #endif // QQUICKEVENTS_P_P_H