2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 University of Szeged. All rights reserved.
4 * Copyright (C) 2010 Igalia S.L.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #include "PlatformWebView.h"
31 #include <WebKit/WKImageCairo.h>
32 #include <WebKit/WKPageConfigurationRef.h>
33 #include <WebKit/WKViewPrivate.h>
35 #include <wtf/Assertions.h>
39 PlatformWebView::PlatformWebView(WKPageConfigurationRef configuration, const TestOptions& options)
40 : m_view(WKViewCreate(configuration))
41 , m_window(gtk_window_new(GTK_WINDOW_POPUP))
45 gtk_container_add(GTK_CONTAINER(m_window), GTK_WIDGET(m_view));
47 GtkAllocation size = { 0, 0, 800, 600 };
48 gtk_widget_size_allocate(GTK_WIDGET(m_view), &size);
49 gtk_window_resize(GTK_WINDOW(m_window), 800, 600);
50 gtk_widget_show_all(m_window);
52 while (gtk_events_pending())
56 PlatformWebView::~PlatformWebView()
58 gtk_widget_destroy(m_window);
61 void PlatformWebView::resizeTo(unsigned width, unsigned height)
63 WKRect frame = windowFrame();
64 frame.size.width = width;
65 frame.size.height = height;
66 setWindowFrame(frame);
69 WKPageRef PlatformWebView::page()
71 return WKViewGetPage(m_view);
74 void PlatformWebView::focus()
76 WKViewSetFocus(m_view, true);
80 WKRect PlatformWebView::windowFrame()
82 GtkAllocation geometry;
83 gdk_window_get_geometry(gtk_widget_get_window(GTK_WIDGET(m_window)),
84 &geometry.x, &geometry.y, &geometry.width, &geometry.height);
87 frame.origin.x = geometry.x;
88 frame.origin.y = geometry.y;
89 frame.size.width = geometry.width;
90 frame.size.height = geometry.height;
94 void PlatformWebView::setWindowFrame(WKRect frame)
96 gdk_window_move_resize(gtk_widget_get_window(GTK_WIDGET(m_window)),
97 frame.origin.x, frame.origin.y, frame.size.width, frame.size.height);
98 GtkAllocation size = { 0, 0, static_cast<int>(frame.size.width), static_cast<int>(frame.size.height) };
99 gtk_widget_size_allocate(GTK_WIDGET(m_view), &size);
101 while (gtk_events_pending())
102 gtk_main_iteration();
105 void PlatformWebView::addChromeInputField()
109 void PlatformWebView::removeChromeInputField()
113 void PlatformWebView::makeWebViewFirstResponder()
117 void PlatformWebView::changeWindowScaleIfNeeded(float)
121 WKRetainPtr<WKImageRef> PlatformWebView::windowSnapshotImage()
123 int width = gtk_widget_get_allocated_width(GTK_WIDGET(m_view));
124 int height = gtk_widget_get_allocated_height(GTK_WIDGET(m_view));
126 while (gtk_events_pending())
127 gtk_main_iteration();
129 cairo_surface_t* imageSurface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height);
131 cairo_t* context = cairo_create(imageSurface);
132 gtk_widget_draw(GTK_WIDGET(m_view), context);
133 cairo_destroy(context);
135 WKRetainPtr<WKImageRef> wkImage = adoptWK(WKImageCreateFromCairoSurface(imageSurface, 0 /* options */));
137 cairo_surface_destroy(imageSurface);
141 void PlatformWebView::didInitializeClients()
145 bool PlatformWebView::viewSupportsOptions(const TestOptions&) const
150 void PlatformWebView::dismissAllPopupMenus()
152 // gtk_menu_popdown doesn't modify the GList of attached menus, so it should
153 // be safe to walk this list while calling it.
154 GList* attachedMenusList = gtk_menu_get_for_attach_widget(GTK_WIDGET(m_view));
155 g_list_foreach(attachedMenusList, [] (void* data, void*) {
157 gtk_menu_popdown(GTK_MENU(data));
161 void PlatformWebView::setNavigationGesturesEnabled(bool)