Fixed somtimes focus ring is shown twice.
[framework/web/webkit-efl.git] / Tools / WebKitTestRunner / PlatformWebView.h
1 /*
2  * Copyright (C) 2010 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #ifndef PlatformWebView_h
27 #define PlatformWebView_h
28
29 #include <WebKit2/WKRetainPtr.h>
30
31 #if defined(BUILDING_QT__)
32 QT_BEGIN_NAMESPACE
33 class QQuickView;
34 class QEventLoop;
35 QT_END_NAMESPACE
36 class QQuickWebView;
37 typedef QQuickWebView* PlatformWKView;
38 typedef QQuickView* PlatformWindow;
39 #elif defined(__APPLE__) && __APPLE__
40 #if __OBJC__
41 @class WKView;
42 @class WebKitTestRunnerWindow;
43 #else
44 class WKView;
45 class WebKitTestRunnerWindow;
46 #endif
47 typedef WKView* PlatformWKView;
48 typedef WebKitTestRunnerWindow* PlatformWindow;
49 #elif defined(WIN32) || defined(_WIN32)
50 typedef WKViewRef PlatformWKView;
51 typedef HWND PlatformWindow;
52 #elif defined(BUILDING_GTK__)
53 typedef struct _GtkWidget GtkWidget;
54 typedef WKViewRef PlatformWKView;
55 typedef GtkWidget* PlatformWindow;
56 #elif PLATFORM(EFL)
57 typedef struct _Evas_Object Evas_Object;
58 typedef struct _Ecore_Evas Ecore_Evas;
59 typedef Evas_Object* PlatformWKView;
60 typedef Ecore_Evas* PlatformWindow;
61 #endif
62
63 namespace WTR {
64
65 class PlatformWebView {
66 public:
67     PlatformWebView(WKContextRef, WKPageGroupRef);
68     ~PlatformWebView();
69
70     WKPageRef page();
71     PlatformWKView platformView() { return m_view; }
72     PlatformWindow platformWindow() { return m_window; }
73     void resizeTo(unsigned width, unsigned height);
74     void focus();
75
76 #if PLATFORM(QT)
77     bool sendEvent(QEvent*);
78     void postEvent(QEvent*);
79     void setModalEventLoop(QEventLoop* eventLoop) { m_modalEventLoop = eventLoop; }
80 #endif
81
82     WKRect windowFrame();
83     void setWindowFrame(WKRect);
84     
85     void addChromeInputField();
86     void removeChromeInputField();
87     void makeWebViewFirstResponder();
88 #if PLATFORM(EFL)
89     void setWindowIsKey(bool);
90     void setMainFrameIsFirstResponder(bool);
91 #else
92     void setWindowIsKey(bool isKey) { m_windowIsKey = isKey; }
93 #endif
94     bool windowIsKey() const { return m_windowIsKey; }
95     
96     WKRetainPtr<WKImageRef> windowSnapshotImage();
97
98 private:
99     PlatformWKView m_view;
100     PlatformWindow m_window;
101     bool m_windowIsKey;
102 #if PLATFORM(QT)
103     QEventLoop* m_modalEventLoop;
104 #endif
105 };
106
107 } // namespace WTR
108
109 #endif // PlatformWebView_h