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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
|
/*
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 <QApplication>
#include <QGesture>
#include <QGestureEvent>
#include <QGraphicsSceneMouseEvent>
#include <QTouchEvent>
#include <QWheelEvent>
#include <QWidget>
#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)
{
enum { MouseEvent, GraphicsSceneMouseEvent } frameworkMouseEventType;
switch (event->type()) {
case QEvent::MouseButtonDblClick:
case QEvent::MouseButtonPress:
frameworkMouseEventType = MouseEvent;
mouseEventType = PlatformEvent::MousePressed;
break;
case QEvent::MouseButtonRelease:
frameworkMouseEventType = MouseEvent;
mouseEventType = PlatformEvent::MouseReleased;
break;
case QEvent::MouseMove:
frameworkMouseEventType = MouseEvent;
mouseEventType = PlatformEvent::MouseMoved;
break;
case QEvent::GraphicsSceneMouseDoubleClick:
case QEvent::GraphicsSceneMousePress:
frameworkMouseEventType = GraphicsSceneMouseEvent;
mouseEventType = PlatformEvent::MousePressed;
break;
case QEvent::GraphicsSceneMouseRelease:
frameworkMouseEventType = GraphicsSceneMouseEvent;
mouseEventType = PlatformEvent::MouseReleased;
break;
case QEvent::GraphicsSceneMouseMove:
frameworkMouseEventType = GraphicsSceneMouseEvent;
mouseEventType = PlatformEvent::MouseMoved;
break;
default:
ASSERT_NOT_REACHED();
frameworkMouseEventType = MouseEvent;
mouseEventType = PlatformEvent::MouseMoved;
break;
}
Qt::MouseButtons mouseButtons;
switch (frameworkMouseEventType) {
case MouseEvent: {
const QMouseEvent* mouseEvent = static_cast<const QMouseEvent*>(event);
mouseButtons = mouseEventType == PlatformEvent::MouseMoved ? mouseEvent->buttons() : mouseEvent->button();
break;
}
case GraphicsSceneMouseEvent: {
const QGraphicsSceneMouseEvent* mouseEvent = static_cast<const QGraphicsSceneMouseEvent*>(event);
mouseButtons = mouseEventType == PlatformEvent::MouseMoved ? mouseEvent->buttons() : mouseEvent->button();
break;
}
}
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(QGraphicsSceneMouseEvent*, int clickCount);
WebKitPlatformMouseEvent(QInputEvent*, int clickCount);
};
WebKitPlatformMouseEvent::WebKitPlatformMouseEvent(QGraphicsSceneMouseEvent* event, int clickCount)
{
m_timestamp = WTF::currentTime();
// FIXME: Why don't we handle a context menu event here as we do in PlatformMouseEvent(QInputEvent*, int)?
// See <https://bugs.webkit.org/show_bug.cgi?id=60728>.
PlatformEvent::Type type;
mouseEventTypeAndMouseButtonFromQEvent(event, type, m_button);
m_type = type;
m_position = IntPoint(event->pos().toPoint());
m_globalPosition = IntPoint(event->screenPos());
m_clickCount = clickCount;
mouseEventModifiersFromQtKeyboardModifiers(event->modifiers(), m_modifiers);
}
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);
}
PlatformMouseEvent convertMouseEvent(QGraphicsSceneMouseEvent* event, int clickCount)
{
return WebKitPlatformMouseEvent(event, clickCount);
}
class WebKitPlatformWheelEvent : public PlatformWheelEvent {
public:
WebKitPlatformWheelEvent(QGraphicsSceneWheelEvent*);
WebKitPlatformWheelEvent(QWheelEvent*);
private:
void applyDelta(int delta, Qt::Orientation);
};
void WebKitPlatformWheelEvent::applyDelta(int delta, Qt::Orientation orientation)
{
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 * QApplication::wheelScrollLines() * cDefaultQtScrollStep;
m_deltaY = m_wheelTicksY * QApplication::wheelScrollLines() * cDefaultQtScrollStep;
}
WebKitPlatformWheelEvent::WebKitPlatformWheelEvent(QGraphicsSceneWheelEvent* e)
{
m_timestamp = WTF::currentTime();
mouseEventModifiersFromQtKeyboardModifiers(e->modifiers(), m_modifiers);
m_position = e->pos().toPoint();
m_globalPosition = e->screenPos();
m_granularity = ScrollByPixelWheelEvent;
m_directionInvertedFromDevice = false;
applyDelta(e->delta(), e->orientation());
}
WebKitPlatformWheelEvent::WebKitPlatformWheelEvent(QWheelEvent* e)
{
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());
}
#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;
#if HAVE(QT5)
case QEvent::TouchCancel:
m_type = PlatformEvent::TouchCancel;
break;
#endif
}
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(GESTURE_EVENTS)
class WebKitPlatformGestureEvent : public PlatformGestureEvent {
public:
WebKitPlatformGestureEvent(const QGestureEvent*, const QGesture*);
};
WebKitPlatformGestureEvent::WebKitPlatformGestureEvent(const QGestureEvent* event, const QGesture* gesture)
{
switch (gesture->gestureType()) {
case Qt::TapGesture: {
m_type = PlatformEvent::GestureTap;
QPointF globalPos = static_cast<const QTapGesture*>(gesture)->position();
m_globalPosition = globalPos.toPoint();
m_position = event->widget()->mapFromGlobal(globalPos.toPoint());
break;
}
case Qt::TapAndHoldGesture: {
m_type = PlatformEvent::GestureLongPress;
QPointF globalPos = static_cast<const QTapAndHoldGesture*>(gesture)->position();
m_globalPosition = globalPos.toPoint();
m_position = event->widget()->mapFromGlobal(globalPos.toPoint());
break;
}
default:
ASSERT_NOT_REACHED();
break;
}
m_timestamp = WTF::currentTime();
}
#endif
PlatformWheelEvent convertWheelEvent(QWheelEvent* event)
{
return WebKitPlatformWheelEvent(event);
}
PlatformWheelEvent convertWheelEvent(QGraphicsSceneWheelEvent* event)
{
return WebKitPlatformWheelEvent(event);
}
#if ENABLE(TOUCH_EVENTS)
PlatformTouchEvent convertTouchEvent(QTouchEvent* event)
{
return WebKitPlatformTouchEvent(event);
}
#endif
#if ENABLE(GESTURE_EVENTS)
PlatformGestureEvent convertGesture(QGestureEvent* event, QGesture* gesture)
{
return WebKitPlatformGestureEvent(event, gesture);
}
#endif
}
|