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 <WebKit2/WKViewPrivate.h>
36 PlatformWebView::PlatformWebView(WKContextRef context, WKPageGroupRef pageGroup, WKDictionaryRef /*options*/)
37 : m_view(WKViewCreate(context, pageGroup))
38 , m_window(gtk_window_new(GTK_WINDOW_POPUP))
42 gtk_container_add(GTK_CONTAINER(m_window), GTK_WIDGET(m_view));
44 GtkAllocation size = { 0, 0, 800, 600 };
45 gtk_widget_size_allocate(m_window, &size);
46 gtk_window_resize(GTK_WINDOW(m_window), 800, 600);
47 gtk_widget_show_all(m_window);
49 while (gtk_events_pending())
53 PlatformWebView::~PlatformWebView()
55 gtk_widget_destroy(m_window);
58 void PlatformWebView::resizeTo(unsigned width, unsigned height)
60 GtkAllocation size = { 0, 0, width, height };
61 gtk_widget_size_allocate(m_window, &size);
62 gtk_window_resize(GTK_WINDOW(m_window), width, height);
64 while (gtk_events_pending())
68 WKPageRef PlatformWebView::page()
70 return WKViewGetPage(m_view);
73 void PlatformWebView::focus()
75 WKViewSetFocus(m_view, true);
79 WKRect PlatformWebView::windowFrame()
81 GtkAllocation geometry;
82 #ifdef GTK_API_VERSION_2
84 gdk_window_get_geometry(gtk_widget_get_window(GTK_WIDGET(m_window)),
85 &geometry.x, &geometry.y, &geometry.width, &geometry.height, &depth);
87 gdk_window_get_geometry(gtk_widget_get_window(GTK_WIDGET(m_window)),
88 &geometry.x, &geometry.y, &geometry.width, &geometry.height);
92 frame.origin.x = geometry.x;
93 frame.origin.y = geometry.y;
94 frame.size.width = geometry.width;
95 frame.size.height = geometry.height;
99 void PlatformWebView::setWindowFrame(WKRect frame)
101 gtk_window_move(GTK_WINDOW(m_window), frame.origin.x, frame.origin.y);
102 resizeTo(frame.size.width, frame.size.height);
105 void PlatformWebView::addChromeInputField()
109 void PlatformWebView::removeChromeInputField()
113 void PlatformWebView::makeWebViewFirstResponder()
117 WKRetainPtr<WKImageRef> PlatformWebView::windowSnapshotImage()
119 // FIXME: implement to capture pixels in the UI process,
120 // which may be necessary to capture things like 3D transforms.