initial import
[vuplus_webkit] / Source / WebKit2 / UIProcess / qt / qtouchwebpageproxy.h
1 /*
2  * Copyright (C) 2010, 2011 Nokia Corporation and/or its subsidiary(-ies)
3  *
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.
8  *
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.
13  *
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.
18  *
19  */
20
21 #ifndef qtouchwebpageproxy_h
22 #define qtouchwebpageproxy_h
23
24
25 #include "DrawingAreaProxy.h"
26 #include "QtPanGestureRecognizer.h"
27 #include "QtPinchGestureRecognizer.h"
28 #include "QtWebPageProxy.h"
29 #include "TiledDrawingAreaProxy.h"
30 #include "TouchViewInterface.h"
31 #include <wtf/PassOwnPtr.h>
32
33 namespace WebKit {
34 class ViewportInteractionEngine;
35 }
36
37 using namespace WebKit;
38
39 class QTouchWebPageProxy : public QtWebPageProxy
40 {
41 public:
42     QTouchWebPageProxy(TouchViewInterface*, ViewportInteractionEngine*);
43
44     virtual bool handleEvent(QEvent*);
45
46     void setVisibleContentRectAndScale(const QRectF&, float);
47     void setVisibleContentRectTrajectoryVector(const QPointF&);
48     void setResizesToContentsUsingLayoutSize(const QSize& targetLayoutSize);
49     void findZoomableAreaForPoint(const QPoint&);
50     void renderNextFrame();
51
52 protected:
53     virtual void paintContent(QPainter* painter, const QRect& area);
54
55 private:
56     virtual PassOwnPtr<DrawingAreaProxy> createDrawingAreaProxy();
57     virtual void processDidCrash();
58 #if ENABLE(TOUCH_EVENTS)
59     virtual void doneWithTouchEvent(const NativeWebTouchEvent&, bool wasEventHandled);
60 #endif
61
62     TouchViewInterface* touchViewInterface() const { return static_cast<TouchViewInterface*>(m_viewInterface); }
63     TiledDrawingAreaProxy* drawingArea() const { return static_cast<WebKit::TiledDrawingAreaProxy*>(m_webPageProxy->drawingArea()); }
64
65     void touchEvent(QTouchEvent*);
66
67     QtPanGestureRecognizer m_panGestureRecognizer;
68     QtPinchGestureRecognizer m_pinchGestureRecognizer;
69 };
70
71 #endif /* qtouchwebpageproxy_h */