2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Portions Copyright (c) 2010 Motorola Mobility, Inc. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
16 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
18 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
24 * THE POSSIBILITY OF SUCH DAMAGE.
28 #include "WebPageProxy.h"
30 #include "NativeWebKeyboardEvent.h"
31 #include "NotImplemented.h"
32 #include "PageClientImpl.h"
33 #include "WebKitWebViewBasePrivate.h"
34 #include "WebPageMessages.h"
35 #include "WebProcessProxy.h"
36 #include <WebCore/UserAgentGtk.h>
41 GtkWidget* WebPageProxy::viewWidget()
43 return static_cast<PageClientImpl*>(m_pageClient)->viewWidget();
46 String WebPageProxy::standardUserAgent(const String& applicationNameForUserAgent)
48 return WebCore::standardUserAgent(applicationNameForUserAgent);
51 void WebPageProxy::getEditorCommandsForKeyEvent(const AtomicString& eventType, Vector<WTF::String>& commandsList)
53 m_pageClient->getEditorCommandsForKeyEvent(m_keyEventQueue.first(), eventType, commandsList);
56 void WebPageProxy::bindAccessibilityTree(const String& plugID)
58 m_accessibilityPlugID = plugID;
61 void WebPageProxy::saveRecentSearches(const String&, const Vector<String>&)
66 void WebPageProxy::loadRecentSearches(const String&, Vector<String>&)
71 typedef HashMap<uint64_t, GtkWidget* > PluginWindowMap;
72 static PluginWindowMap& pluginWindowMap()
74 DEFINE_STATIC_LOCAL(PluginWindowMap, map, ());
78 static gboolean pluginContainerPlugRemoved(GtkSocket* socket)
80 uint64_t windowID = static_cast<uint64_t>(gtk_socket_get_id(socket));
81 pluginWindowMap().remove(windowID);
85 void WebPageProxy::createPluginContainer(uint64_t& windowID)
87 GtkWidget* socket = gtk_socket_new();
88 g_signal_connect(socket, "plug-removed", G_CALLBACK(pluginContainerPlugRemoved), 0);
89 gtk_container_add(GTK_CONTAINER(viewWidget()), socket);
90 gtk_widget_show(socket);
92 windowID = static_cast<uint64_t>(gtk_socket_get_id(GTK_SOCKET(socket)));
93 pluginWindowMap().set(windowID, socket);
96 void WebPageProxy::windowedPluginGeometryDidChange(const WebCore::IntRect& frameRect, const WebCore::IntRect& clipRect, uint64_t windowID)
98 GtkWidget* plugin = pluginWindowMap().get(windowID);
102 if (gtk_widget_get_realized(plugin)) {
103 GdkRectangle clip = clipRect;
104 cairo_region_t* clipRegion = cairo_region_create_rectangle(&clip);
105 gdk_window_shape_combine_region(gtk_widget_get_window(plugin), clipRegion, 0, 0);
106 cairo_region_destroy(clipRegion);
109 webkitWebViewBaseChildMoveResize(WEBKIT_WEB_VIEW_BASE(viewWidget()), plugin, frameRect);
112 #if USE(TEXTURE_MAPPER_GL)
113 void WebPageProxy::setAcceleratedCompositingWindowId(uint64_t nativeWindowId)
115 process()->send(Messages::WebPage::SetAcceleratedCompositingWindowId(nativeWindowId), m_pageID);
118 void WebPageProxy::invalidateWidget()
120 webkitWebViewBaseQueueDrawOfAcceleratedCompositingResults(WEBKIT_WEB_VIEW_BASE(static_cast<PageClientImpl*>(m_pageClient)->viewWidget()));
124 } // namespace WebKit