Remove unnecessary repetition of initializing feedback library.
[framework/web/webkit-efl.git] / Tools / TestWebKitAPI / 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 #if USE(CG)
30 #include <CoreGraphics/CGGeometry.h>
31 #endif
32
33 #ifdef __APPLE__
34 #ifdef __OBJC__
35 @class WKView;
36 @class NSWindow;
37 #else
38 class WKView;
39 class NSWindow;
40 #endif
41 typedef WKView *PlatformWKView;
42 typedef NSWindow *PlatformWindow;
43 #elif defined(WIN32) || defined(_WIN32)
44 typedef WKViewRef PlatformWKView;
45 typedef HWND PlatformWindow;
46 #elif PLATFORM(GTK)
47 typedef WKViewRef PlatformWKView;
48 typedef GtkWidget *PlatformWindow;
49 #elif PLATFORM(EFL)
50 typedef struct _Evas_Object Evas_Object;
51 typedef struct _Ecore_Evas Ecore_Evas;
52 typedef Evas_Object* PlatformWKView;
53 typedef Ecore_Evas* PlatformWindow;
54 #endif
55
56 namespace TestWebKitAPI {
57
58 #if PLATFORM(WIN)
59 class WindowMessageObserver;
60 #endif
61
62 class PlatformWebView {
63 public:
64     PlatformWebView(WKContextRef, WKPageGroupRef = 0);
65     ~PlatformWebView();
66
67     WKPageRef page() const;
68     PlatformWKView platformView() const { return m_view; }
69     void resizeTo(unsigned width, unsigned height);
70     void focus();
71
72     void simulateSpacebarKeyPress();
73     void simulateAltKeyPress();
74     void simulateRightClick(unsigned x, unsigned y);
75     void simulateMouseMove(unsigned x, unsigned y);
76
77 #if PLATFORM(WIN)
78     void simulateAKeyDown();
79     void setParentWindowMessageObserver(WindowMessageObserver* observer) { m_parentWindowMessageObserver = observer; }
80 #endif
81
82 private:
83 #if PLATFORM(WIN)
84     static void registerWindowClass();
85     static LRESULT CALLBACK wndProc(HWND, UINT message, WPARAM, LPARAM);
86 #endif
87
88     PlatformWKView m_view;
89     PlatformWindow m_window;
90
91 #if PLATFORM(WIN)
92     WindowMessageObserver* m_parentWindowMessageObserver;
93 #endif
94 };
95
96 } // namespace TestWebKitAPI
97
98 #endif // PlatformWebView_h