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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
|
/*
* Copyright (C) 2010, 2011 Nokia Corporation and/or its subsidiary(-ies)
*
* 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 program 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 program; 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 "QtWebPageEventHandler.h"
#include "NativeWebKeyboardEvent.h"
#include "NativeWebMouseEvent.h"
#include "NativeWebWheelEvent.h"
#include "QtViewportInteractionEngine.h"
#include "qquickwebpage_p.h"
#include <QDrag>
#include <QGraphicsSceneMouseEvent>
#include <QGuiApplication>
#include <QMimeData>
#include <QtQuick/QQuickCanvas>
#include <QStyleHints>
#include <QTextFormat>
#include <QTouchEvent>
#include <WebCore/DragData.h>
#include <WebCore/Editor.h>
using namespace WebKit;
using namespace WebCore;
static inline Qt::DropAction dragOperationToDropAction(unsigned dragOperation)
{
Qt::DropAction result = Qt::IgnoreAction;
if (dragOperation & DragOperationCopy)
result = Qt::CopyAction;
else if (dragOperation & DragOperationMove)
result = Qt::MoveAction;
else if (dragOperation & DragOperationGeneric)
result = Qt::MoveAction;
else if (dragOperation & DragOperationLink)
result = Qt::LinkAction;
return result;
}
static inline Qt::DropActions dragOperationToDropActions(unsigned dragOperations)
{
Qt::DropActions result = Qt::IgnoreAction;
if (dragOperations & DragOperationCopy)
result |= Qt::CopyAction;
if (dragOperations & DragOperationMove)
result |= Qt::MoveAction;
if (dragOperations & DragOperationGeneric)
result |= Qt::MoveAction;
if (dragOperations & DragOperationLink)
result |= Qt::LinkAction;
return result;
}
static inline WebCore::DragOperation dropActionToDragOperation(Qt::DropActions actions)
{
unsigned result = 0;
if (actions & Qt::CopyAction)
result |= DragOperationCopy;
if (actions & Qt::MoveAction)
result |= (DragOperationMove | DragOperationGeneric);
if (actions & Qt::LinkAction)
result |= DragOperationLink;
if (result == (DragOperationCopy | DragOperationMove | DragOperationGeneric | DragOperationLink))
result = DragOperationEvery;
return (DragOperation)result;
}
QtWebPageEventHandler::QtWebPageEventHandler(WKPageRef pageRef, QQuickWebPage* qmlWebPage)
: m_webPageProxy(toImpl(pageRef))
, m_panGestureRecognizer(this)
, m_pinchGestureRecognizer(this)
, m_tapGestureRecognizer(this)
, m_webPage(qmlWebPage)
, m_previousClickButton(Qt::NoButton)
, m_clickCount(0)
{
}
QtWebPageEventHandler::~QtWebPageEventHandler()
{
}
bool QtWebPageEventHandler::handleEvent(QEvent* ev)
{
switch (ev->type()) {
case QEvent::MouseMove:
return handleMouseMoveEvent(static_cast<QMouseEvent*>(ev));
case QEvent::MouseButtonPress:
case QEvent::MouseButtonDblClick:
// If a MouseButtonDblClick was received then we got a MouseButtonPress before
// handleMousePressEvent will take care of double clicks.
return handleMousePressEvent(static_cast<QMouseEvent*>(ev));
case QEvent::MouseButtonRelease:
return handleMouseReleaseEvent(static_cast<QMouseEvent*>(ev));
case QEvent::Wheel:
return handleWheelEvent(static_cast<QWheelEvent*>(ev));
case QEvent::HoverLeave:
return handleHoverLeaveEvent(static_cast<QHoverEvent*>(ev));
case QEvent::HoverEnter: // Fall-through, for WebKit the distinction doesn't matter.
case QEvent::HoverMove:
return handleHoverMoveEvent(static_cast<QHoverEvent*>(ev));
case QEvent::DragEnter:
return handleDragEnterEvent(static_cast<QDragEnterEvent*>(ev));
case QEvent::DragLeave:
return handleDragLeaveEvent(static_cast<QDragLeaveEvent*>(ev));
case QEvent::DragMove:
return handleDragMoveEvent(static_cast<QDragMoveEvent*>(ev));
case QEvent::Drop:
return handleDropEvent(static_cast<QDropEvent*>(ev));
case QEvent::KeyPress:
return handleKeyPressEvent(static_cast<QKeyEvent*>(ev));
case QEvent::KeyRelease:
return handleKeyReleaseEvent(static_cast<QKeyEvent*>(ev));
case QEvent::FocusIn:
return handleFocusInEvent(static_cast<QFocusEvent*>(ev));
case QEvent::FocusOut:
return handleFocusOutEvent(static_cast<QFocusEvent*>(ev));
case QEvent::TouchBegin:
case QEvent::TouchEnd:
case QEvent::TouchUpdate:
touchEvent(static_cast<QTouchEvent*>(ev));
return true;
case QEvent::InputMethod:
inputMethodEvent(static_cast<QInputMethodEvent*>(ev));
return false; // Look at comment in qquickwebpage.cpp
}
// FIXME: Move all common event handling here.
return false;
}
bool QtWebPageEventHandler::handleMouseMoveEvent(QMouseEvent* ev)
{
// For some reason mouse press results in mouse hover (which is
// converted to mouse move for WebKit). We ignore these hover
// events by comparing lastPos with newPos.
// NOTE: lastPos from the event always comes empty, so we work
// around that here.
static QPointF lastPos = QPointF();
if (lastPos == ev->pos())
return ev->isAccepted();
lastPos = ev->pos();
m_webPageProxy->handleMouseEvent(NativeWebMouseEvent(ev, /*eventClickCount*/ 0));
return ev->isAccepted();
}
bool QtWebPageEventHandler::handleMousePressEvent(QMouseEvent* ev)
{
if (m_clickTimer.isActive()
&& m_previousClickButton == ev->button()
&& (ev->pos() - m_lastClick).manhattanLength() < qApp->styleHints()->startDragDistance()) {
m_clickCount++;
} else {
m_clickCount = 1;
m_previousClickButton = ev->button();
}
m_webPageProxy->handleMouseEvent(NativeWebMouseEvent(ev, m_clickCount));
m_lastClick = ev->pos();
m_clickTimer.start(qApp->styleHints()->mouseDoubleClickInterval(), this);
return ev->isAccepted();
}
bool QtWebPageEventHandler::handleMouseReleaseEvent(QMouseEvent* ev)
{
m_webPageProxy->handleMouseEvent(NativeWebMouseEvent(ev, /*eventClickCount*/ 0));
return ev->isAccepted();
}
bool QtWebPageEventHandler::handleWheelEvent(QWheelEvent* ev)
{
m_webPageProxy->handleWheelEvent(NativeWebWheelEvent(ev));
// FIXME: Handle whether the page used the wheel event or not.
if (m_interactionEngine)
m_interactionEngine->wheelEvent(ev);
return ev->isAccepted();
}
bool QtWebPageEventHandler::handleHoverLeaveEvent(QHoverEvent* ev)
{
// To get the correct behavior of mouseout, we need to turn the Leave event of our webview into a mouse move
// to a very far region.
QHoverEvent fakeEvent(QEvent::HoverMove, QPoint(INT_MIN, INT_MIN), ev->oldPos());
fakeEvent.setTimestamp(ev->timestamp());
return handleHoverMoveEvent(&fakeEvent);
}
bool QtWebPageEventHandler::handleHoverMoveEvent(QHoverEvent* ev)
{
QMouseEvent me(QEvent::MouseMove, ev->pos(), Qt::NoButton, Qt::NoButton, Qt::NoModifier);
me.setAccepted(ev->isAccepted());
me.setTimestamp(ev->timestamp());
return handleMouseMoveEvent(&me);
}
bool QtWebPageEventHandler::handleDragEnterEvent(QDragEnterEvent* ev)
{
m_webPageProxy->resetDragOperation();
// FIXME: Should not use QCursor::pos()
DragData dragData(ev->mimeData(), ev->pos(), QCursor::pos(), dropActionToDragOperation(ev->possibleActions()));
m_webPageProxy->dragEntered(&dragData);
ev->acceptProposedAction();
return true;
}
bool QtWebPageEventHandler::handleDragLeaveEvent(QDragLeaveEvent* ev)
{
bool accepted = ev->isAccepted();
// FIXME: Should not use QCursor::pos()
DragData dragData(0, IntPoint(), QCursor::pos(), DragOperationNone);
m_webPageProxy->dragExited(&dragData);
m_webPageProxy->resetDragOperation();
ev->setAccepted(accepted);
return accepted;
}
bool QtWebPageEventHandler::handleDragMoveEvent(QDragMoveEvent* ev)
{
bool accepted = ev->isAccepted();
// FIXME: Should not use QCursor::pos()
DragData dragData(ev->mimeData(), ev->pos(), QCursor::pos(), dropActionToDragOperation(ev->possibleActions()));
m_webPageProxy->dragUpdated(&dragData);
ev->setDropAction(dragOperationToDropAction(m_webPageProxy->dragSession().operation));
if (m_webPageProxy->dragSession().operation != DragOperationNone)
ev->accept();
ev->setAccepted(accepted);
return accepted;
}
bool QtWebPageEventHandler::handleDropEvent(QDropEvent* ev)
{
bool accepted = ev->isAccepted();
// FIXME: Should not use QCursor::pos()
DragData dragData(ev->mimeData(), ev->pos(), QCursor::pos(), dropActionToDragOperation(ev->possibleActions()));
SandboxExtension::Handle handle;
m_webPageProxy->performDrag(&dragData, String(), handle);
ev->setDropAction(dragOperationToDropAction(m_webPageProxy->dragSession().operation));
ev->accept();
ev->setAccepted(accepted);
return accepted;
}
void QtWebPageEventHandler::handleSingleTapEvent(const QTouchEvent::TouchPoint& point)
{
WebGestureEvent gesture(WebEvent::GestureSingleTap, point.pos().toPoint(), point.screenPos().toPoint(), WebEvent::Modifiers(0), 0);
m_webPageProxy->handleGestureEvent(gesture);
}
void QtWebPageEventHandler::handleDoubleTapEvent(const QTouchEvent::TouchPoint& point)
{
m_webPageProxy->findZoomableAreaForPoint(point.pos().toPoint());
}
void QtWebPageEventHandler::timerEvent(QTimerEvent* ev)
{
int timerId = ev->timerId();
if (timerId == m_clickTimer.timerId())
m_clickTimer.stop();
else
QObject::timerEvent(ev);
}
bool QtWebPageEventHandler::handleKeyPressEvent(QKeyEvent* ev)
{
m_webPageProxy->handleKeyboardEvent(NativeWebKeyboardEvent(ev));
return true;
}
bool QtWebPageEventHandler::handleKeyReleaseEvent(QKeyEvent* ev)
{
m_webPageProxy->handleKeyboardEvent(NativeWebKeyboardEvent(ev));
return true;
}
bool QtWebPageEventHandler::handleFocusInEvent(QFocusEvent*)
{
m_webPageProxy->viewStateDidChange(WebPageProxy::ViewIsFocused | WebPageProxy::ViewWindowIsActive);
return true;
}
bool QtWebPageEventHandler::handleFocusOutEvent(QFocusEvent*)
{
m_webPageProxy->viewStateDidChange(WebPageProxy::ViewIsFocused | WebPageProxy::ViewWindowIsActive);
return true;
}
void QtWebPageEventHandler::setViewportInteractionEngine(QtViewportInteractionEngine* engine)
{
m_interactionEngine = engine;
}
void QtWebPageEventHandler::inputMethodEvent(QInputMethodEvent* ev)
{
QString commit = ev->commitString();
QString composition = ev->preeditString();
int replacementStart = ev->replacementStart();
int replacementLength = ev->replacementLength();
// NOTE: We might want to handle events of one char as special
// and resend them as key events to make web site completion work.
int cursorPositionWithinComposition = 0;
Vector<CompositionUnderline> underlines;
for (int i = 0; i < ev->attributes().size(); ++i) {
const QInputMethodEvent::Attribute& attr = ev->attributes().at(i);
switch (attr.type) {
case QInputMethodEvent::TextFormat: {
if (composition.isEmpty())
break;
QTextCharFormat textCharFormat = attr.value.value<QTextFormat>().toCharFormat();
QColor qcolor = textCharFormat.underlineColor();
Color color = makeRGBA(qcolor.red(), qcolor.green(), qcolor.blue(), qcolor.alpha());
int start = qMin(attr.start, (attr.start + attr.length));
int end = qMax(attr.start, (attr.start + attr.length));
underlines.append(CompositionUnderline(start, end, color, false));
break;
}
case QInputMethodEvent::Cursor:
if (attr.length)
cursorPositionWithinComposition = attr.start;
break;
// Selection is handled further down.
default: break;
}
}
if (composition.isEmpty()) {
int selectionStart = -1;
int selectionLength = 0;
for (int i = 0; i < ev->attributes().size(); ++i) {
const QInputMethodEvent::Attribute& attr = ev->attributes().at(i);
if (attr.type == QInputMethodEvent::Selection) {
selectionStart = attr.start;
selectionLength = attr.length;
ASSERT(selectionStart >= 0);
ASSERT(selectionLength >= 0);
break;
}
}
m_webPageProxy->confirmComposition(commit, selectionStart, selectionLength);
} else {
ASSERT(cursorPositionWithinComposition >= 0);
ASSERT(replacementStart >= 0);
m_webPageProxy->setComposition(composition, underlines,
cursorPositionWithinComposition, cursorPositionWithinComposition,
replacementStart, replacementLength);
}
ev->accept();
}
void QtWebPageEventHandler::touchEvent(QTouchEvent* event)
{
#if ENABLE(TOUCH_EVENTS)
m_webPageProxy->handleTouchEvent(NativeWebTouchEvent(event));
event->accept();
#else
ASSERT_NOT_REACHED();
ev->ignore();
#endif
}
void QtWebPageEventHandler::resetGestureRecognizers()
{
m_panGestureRecognizer.reset();
m_pinchGestureRecognizer.reset();
m_tapGestureRecognizer.reset();
}
void QtWebPageEventHandler::doneWithTouchEvent(const NativeWebTouchEvent& event, bool wasEventHandled)
{
if (!m_interactionEngine)
return;
if (wasEventHandled || event.type() == WebEvent::TouchCancel) {
resetGestureRecognizers();
return;
}
const QTouchEvent* ev = event.nativeEvent();
switch (ev->type()) {
case QEvent::TouchBegin:
ASSERT(!m_interactionEngine->panGestureActive());
ASSERT(!m_interactionEngine->pinchGestureActive());
// The interaction engine might still be animating kinetic scrolling or a scale animation
// such as double-tap to zoom or the bounce back effect. A touch stops the kinetic scrolling
// where as it does not stop the scale animation.
if (m_interactionEngine->scrollAnimationActive())
m_interactionEngine->interruptScrollAnimation();
break;
case QEvent::TouchUpdate:
// The scale animation can only be interrupted by a pinch gesture, which will then take over.
if (m_interactionEngine->scaleAnimationActive() && m_pinchGestureRecognizer.isRecognized())
m_interactionEngine->interruptScaleAnimation();
break;
default:
break;
}
// If the scale animation is active we don't pass the event to the recognizers. In the future
// we would want to queue the event here and repost then when the animation ends.
if (m_interactionEngine->scaleAnimationActive())
return;
// Convert the event timestamp from second to millisecond.
qint64 eventTimestampMillis = static_cast<qint64>(event.timestamp() * 1000);
m_panGestureRecognizer.recognize(ev, eventTimestampMillis);
m_pinchGestureRecognizer.recognize(ev);
if (m_panGestureRecognizer.isRecognized() || m_pinchGestureRecognizer.isRecognized())
m_tapGestureRecognizer.reset();
else {
const QTouchEvent* ev = event.nativeEvent();
m_tapGestureRecognizer.recognize(ev, eventTimestampMillis);
}
}
void QtWebPageEventHandler::didFindZoomableArea(const IntPoint& target, const IntRect& area)
{
if (!m_interactionEngine)
return;
// FIXME: As the find method might not respond immediately during load etc,
// we should ignore all but the latest request.
m_interactionEngine->zoomToAreaGestureEnded(QPointF(target), QRectF(area));
}
void QtWebPageEventHandler::focusEditableArea(const IntRect& caret, const IntRect& area)
{
if (!m_interactionEngine)
return;
m_interactionEngine->focusEditableArea(QRectF(caret), QRectF(area));
}
void QtWebPageEventHandler::startDrag(const WebCore::DragData& dragData, PassRefPtr<ShareableBitmap> dragImage)
{
QImage dragQImage;
if (dragImage)
dragQImage = dragImage->createQImage();
else if (dragData.platformData() && dragData.platformData()->hasImage())
dragQImage = qvariant_cast<QImage>(dragData.platformData()->imageData());
DragOperation dragOperationMask = dragData.draggingSourceOperationMask();
QMimeData* mimeData = const_cast<QMimeData*>(dragData.platformData());
Qt::DropActions supportedDropActions = dragOperationToDropActions(dragOperationMask);
QPoint clientPosition;
QPoint globalPosition;
Qt::DropAction actualDropAction = Qt::IgnoreAction;
if (QWindow* window = m_webPage->canvas()) {
QDrag* drag = new QDrag(window);
drag->setPixmap(QPixmap::fromImage(dragQImage));
drag->setMimeData(mimeData);
actualDropAction = drag->exec(supportedDropActions);
globalPosition = QCursor::pos();
clientPosition = window->mapFromGlobal(globalPosition);
}
m_webPageProxy->dragEnded(clientPosition, globalPosition, dropActionToDragOperation(actualDropAction));
}
#include "moc_QtWebPageEventHandler.cpp"
|