1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
|
/*
Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
Copyright (C) 2006 Zack Rusin <zack@kde.org>
Copyright (C) 2011 Research In Motion Limited.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "WebEventConversion.h"
#include "PlatformGestureEvent.h"
#include "PlatformMouseEvent.h"
#include "PlatformTouchEvent.h"
#include "PlatformTouchPoint.h"
#include "PlatformWheelEvent.h"
#include <QTouchEvent>
#include <QWheelEvent>
#include <wtf/CurrentTime.h>
namespace WebCore {
static void mouseEventModifiersFromQtKeyboardModifiers(Qt::KeyboardModifiers keyboardModifiers, unsigned& modifiers)
{
modifiers = 0;
if (keyboardModifiers & Qt::ShiftModifier)
modifiers |= PlatformEvent::ShiftKey;
if (keyboardModifiers & Qt::ControlModifier)
modifiers |= PlatformEvent::CtrlKey;
if (keyboardModifiers & Qt::AltModifier)
modifiers |= PlatformEvent::AltKey;
if (keyboardModifiers & Qt::MetaModifier)
modifiers |= PlatformEvent::MetaKey;
}
static void mouseEventTypeAndMouseButtonFromQEvent(const QEvent* event, PlatformEvent::Type& mouseEventType, MouseButton& mouseButton)
{
switch (event->type()) {
case QEvent::MouseButtonDblClick:
case QEvent::MouseButtonPress:
mouseEventType = PlatformEvent::MousePressed;
break;
case QEvent::MouseButtonRelease:
mouseEventType = PlatformEvent::MouseReleased;
break;
case QEvent::MouseMove:
mouseEventType = PlatformEvent::MouseMoved;
break;
default:
ASSERT_NOT_REACHED();
mouseEventType = PlatformEvent::MouseMoved;
break;
}
Qt::MouseButtons mouseButtons;
const QMouseEvent* mouseEvent = static_cast<const QMouseEvent*>(event);
mouseButtons = mouseEventType == PlatformEvent::MouseMoved ? mouseEvent->buttons() : mouseEvent->button();
if (mouseButtons & Qt::LeftButton)
mouseButton = LeftButton;
else if (mouseButtons & Qt::RightButton)
mouseButton = RightButton;
else if (mouseButtons & Qt::MidButton)
mouseButton = MiddleButton;
else
mouseButton = NoButton;
}
class WebKitPlatformMouseEvent : public PlatformMouseEvent {
public:
WebKitPlatformMouseEvent(QInputEvent*, int clickCount);
};
WebKitPlatformMouseEvent::WebKitPlatformMouseEvent(QInputEvent* event, int clickCount)
{
m_timestamp = WTF::currentTime();
bool isContextMenuEvent = false;
#ifndef QT_NO_CONTEXTMENU
if (event->type() == QEvent::ContextMenu) {
isContextMenuEvent = true;
m_type = PlatformEvent::MousePressed;
QContextMenuEvent* ce = static_cast<QContextMenuEvent*>(event);
m_position = IntPoint(ce->pos());
m_globalPosition = IntPoint(ce->globalPos());
m_button = RightButton;
}
#endif
if (!isContextMenuEvent) {
PlatformEvent::Type type;
mouseEventTypeAndMouseButtonFromQEvent(event, type, m_button);
QMouseEvent* mouseEvent = static_cast<QMouseEvent*>(event);
m_type = type;
m_position = IntPoint(mouseEvent->pos());
m_globalPosition = IntPoint(mouseEvent->globalPos());
}
m_clickCount = clickCount;
mouseEventModifiersFromQtKeyboardModifiers(event->modifiers(), m_modifiers);
}
PlatformMouseEvent convertMouseEvent(QInputEvent* event, int clickCount)
{
return WebKitPlatformMouseEvent(event, clickCount);
}
class WebKitPlatformWheelEvent : public PlatformWheelEvent {
public:
WebKitPlatformWheelEvent(QWheelEvent*, int wheelScrollLines);
private:
void applyDelta(int delta, Qt::Orientation, int wheelScrollLines);
};
void WebKitPlatformWheelEvent::applyDelta(int delta, Qt::Orientation orientation, int wheelScrollLines)
{
if (orientation == Qt::Horizontal) {
m_deltaX = delta;
m_deltaY = 0;
} else {
m_deltaX = 0;
m_deltaY = delta;
}
m_wheelTicksX = m_deltaX / 120.0f;
m_wheelTicksY = m_deltaY / 120.0f;
// Since we request the scroll delta by the pixel, convert the wheel delta to pixel delta using the standard scroll step.
// Use the same single scroll step as QTextEdit (in QTextEditPrivate::init [h,v]bar->setSingleStep)
static const float cDefaultQtScrollStep = 20.f;
m_deltaX = m_wheelTicksX * wheelScrollLines * cDefaultQtScrollStep;
m_deltaY = m_wheelTicksY * wheelScrollLines * cDefaultQtScrollStep;
}
WebKitPlatformWheelEvent::WebKitPlatformWheelEvent(QWheelEvent* e, int wheelScrollLines)
{
m_timestamp = WTF::currentTime();
mouseEventModifiersFromQtKeyboardModifiers(e->modifiers(), m_modifiers);
m_position = e->pos();
m_globalPosition = e->globalPos();
m_granularity = ScrollByPixelWheelEvent;
m_directionInvertedFromDevice = false;
applyDelta(e->delta(), e->orientation(), wheelScrollLines);
}
#if ENABLE(TOUCH_EVENTS)
class WebKitPlatformTouchEvent : public PlatformTouchEvent {
public:
WebKitPlatformTouchEvent(QTouchEvent*);
};
class WebKitPlatformTouchPoint : public PlatformTouchPoint {
public:
WebKitPlatformTouchPoint(const QTouchEvent::TouchPoint&, State);
};
WebKitPlatformTouchEvent::WebKitPlatformTouchEvent(QTouchEvent* event)
{
switch (event->type()) {
case QEvent::TouchBegin:
m_type = PlatformEvent::TouchStart;
break;
case QEvent::TouchUpdate:
m_type = PlatformEvent::TouchMove;
break;
case QEvent::TouchEnd:
m_type = PlatformEvent::TouchEnd;
break;
case QEvent::TouchCancel:
m_type = PlatformEvent::TouchCancel;
break;
}
const QList<QTouchEvent::TouchPoint>& points = event->touchPoints();
for (int i = 0; i < points.count(); ++i) {
PlatformTouchPoint::State state = PlatformTouchPoint::TouchStateEnd;
switch (points.at(i).state()) {
case Qt::TouchPointReleased:
state = PlatformTouchPoint::TouchReleased;
break;
case Qt::TouchPointMoved:
state = PlatformTouchPoint::TouchMoved;
break;
case Qt::TouchPointPressed:
state = PlatformTouchPoint::TouchPressed;
break;
case Qt::TouchPointStationary:
state = PlatformTouchPoint::TouchStationary;
break;
}
// Qt does not have a Qt::TouchPointCancelled point state, so if we receive a touch cancel event,
// simply cancel all touch points here.
if (m_type == PlatformEvent::TouchCancel)
state = PlatformTouchPoint::TouchCancelled;
m_touchPoints.append(WebKitPlatformTouchPoint(points.at(i), state));
}
mouseEventModifiersFromQtKeyboardModifiers(event->modifiers(), m_modifiers);
m_timestamp = WTF::currentTime();
}
WebKitPlatformTouchPoint::WebKitPlatformTouchPoint(const QTouchEvent::TouchPoint& point, State state)
{
// The QTouchEvent::TouchPoint API states that ids will be >= 0.
m_id = point.id();
m_state = state;
m_screenPos = point.screenPos().toPoint();
m_pos = point.pos().toPoint();
// Qt reports touch point size as rectangles, but we will pretend it is an oval.
QRect touchRect = point.rect().toAlignedRect();
if (touchRect.isValid()) {
m_radiusX = point.rect().width() / 2;
m_radiusY = point.rect().height() / 2;
} else {
// http://www.w3.org/TR/2011/WD-touch-events-20110505: 1 if no value is known.
m_radiusX = 1;
m_radiusY = 1;
}
m_force = point.pressure();
// FIXME: Support m_rotationAngle if QTouchEvent at some point supports it.
}
#endif
#if ENABLE(QT_GESTURE_EVENTS)
class WebKitPlatformGestureEvent : public PlatformGestureEvent {
public:
WebKitPlatformGestureEvent(QGestureEventFacade*);
};
static inline PlatformEvent::Type toPlatformEventType(Qt::GestureType type)
{
switch (type) {
case Qt::TapGesture:
return PlatformEvent::GestureTap;
case Qt::TapAndHoldGesture:
return PlatformEvent::GestureLongPress;
default:
ASSERT_NOT_REACHED();
return PlatformEvent::NoType;
}
}
WebKitPlatformGestureEvent::WebKitPlatformGestureEvent(QGestureEventFacade* event)
{
m_type = toPlatformEventType(event->type);
m_globalPosition = event->globalPos;
m_position = event->pos;
m_timestamp = WTF::currentTime();
}
#endif
PlatformWheelEvent convertWheelEvent(QWheelEvent* event, int wheelScrollLines)
{
return WebKitPlatformWheelEvent(event, wheelScrollLines);
}
#if ENABLE(TOUCH_EVENTS)
PlatformTouchEvent convertTouchEvent(QTouchEvent* event)
{
return WebKitPlatformTouchEvent(event);
}
#endif
#if ENABLE(QT_GESTURE_EVENTS)
PlatformGestureEvent convertGesture(QGestureEventFacade* event)
{
return WebKitPlatformGestureEvent(event);
}
#endif
}
|