2 * Copyright (C) 2010, 2011 Nokia Corporation and/or its subsidiary(-ies)
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public License
15 * along with this program; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 #ifndef QtWebPageEventHandler_h
22 #define QtWebPageEventHandler_h
24 #include "QtPanGestureRecognizer.h"
25 #include "QtPinchGestureRecognizer.h"
26 #include "QtTapGestureRecognizer.h"
27 #include "QtViewportInteractionEngine.h"
28 #include "WebPageProxy.h"
29 #include <QBasicTimer>
31 #include <QInputMethodEvent>
32 #include <QTouchEvent>
37 using namespace WebKit;
39 class QtWebPageEventHandler : public QObject {
43 QtWebPageEventHandler(WKPageRef, QQuickWebPage*, QQuickWebView*);
44 ~QtWebPageEventHandler();
46 void handleKeyPressEvent(QKeyEvent*);
47 void handleKeyReleaseEvent(QKeyEvent*);
48 void handleFocusInEvent(QFocusEvent*);
49 void handleFocusOutEvent(QFocusEvent*);
50 void handleMouseMoveEvent(QMouseEvent*);
51 void handleMousePressEvent(QMouseEvent*);
52 void handleMouseReleaseEvent(QMouseEvent*);
53 void handleWheelEvent(QWheelEvent*);
54 void handleHoverLeaveEvent(QHoverEvent*);
55 void handleHoverMoveEvent(QHoverEvent*);
56 void handleDragEnterEvent(QDragEnterEvent*);
57 void handleDragLeaveEvent(QDragLeaveEvent*);
58 void handleDragMoveEvent(QDragMoveEvent*);
59 void handleDropEvent(QDropEvent*);
60 void handleInputMethodEvent(QInputMethodEvent*);
61 void handleTouchEvent(QTouchEvent*);
63 void setViewportInteractionEngine(QtViewportInteractionEngine*);
65 void handlePotentialSingleTapEvent(const QTouchEvent::TouchPoint&);
66 void handleSingleTapEvent(const QTouchEvent::TouchPoint&);
67 void handleDoubleTapEvent(const QTouchEvent::TouchPoint&);
69 void didFindZoomableArea(const WebCore::IntPoint& target, const WebCore::IntRect& area);
70 void updateTextInputState();
71 void doneWithGestureEvent(const WebGestureEvent& event, bool wasEventHandled);
72 void doneWithTouchEvent(const NativeWebTouchEvent&, bool wasEventHandled);
73 void resetGestureRecognizers();
75 QtViewportInteractionEngine* interactionEngine() { return m_interactionEngine; }
77 void startDrag(const WebCore::DragData&, PassRefPtr<ShareableBitmap> dragImage);
80 WebPageProxy* m_webPageProxy;
81 QtViewportInteractionEngine* m_interactionEngine;
82 QtPanGestureRecognizer m_panGestureRecognizer;
83 QtPinchGestureRecognizer m_pinchGestureRecognizer;
84 QtTapGestureRecognizer m_tapGestureRecognizer;
85 QQuickWebPage* m_webPage;
86 QQuickWebView* m_webView;
89 void inputPanelVisibleChanged();
92 void timerEvent(QTimerEvent*);
95 QBasicTimer m_clickTimer;
96 Qt::MouseButton m_previousClickButton;
98 bool m_postponeTextInputStateChanged;
101 #endif /* QtWebPageEventHandler_h */