1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
|
/*
* Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this program; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#include "config.h"
#include "QtPageClient.h"
#include "DefaultUndoController.h"
#include "DrawingAreaProxy.h"
#include "LayerTreeContext.h"
#include "QtWebPageEventHandler.h"
#include "ShareableBitmap.h"
#if ENABLE(INPUT_TYPE_COLOR)
#include "WebColorPickerQt.h"
#endif
#include "WebContextMenuProxyQt.h"
#include "WebEditCommandProxy.h"
#include "WebPopupMenuProxyQt.h"
#include "qquickwebview_p.h"
#include "qquickwebview_p_p.h"
#include <QGuiApplication>
#include <QQuickWindow>
#include <WebCore/Cursor.h>
#include <WebCore/DragData.h>
#include <WebCore/FloatRect.h>
#include <WebCore/NotImplemented.h>
using namespace WebCore;
namespace WebKit {
QtPageClient::QtPageClient()
: m_webView(0)
, m_eventHandler(0)
, m_undoController(0)
{
}
QtPageClient::~QtPageClient()
{
}
void QtPageClient::initialize(QQuickWebView* webView, QtWebPageEventHandler* eventHandler, DefaultUndoController* undoController)
{
m_webView = webView;
m_eventHandler = eventHandler;
m_undoController = undoController;
}
PassOwnPtr<DrawingAreaProxy> QtPageClient::createDrawingAreaProxy()
{
return QQuickWebViewPrivate::get(m_webView)->createDrawingAreaProxy();
}
void QtPageClient::setViewNeedsDisplay(const WebCore::IntRect& rect)
{
QQuickWebViewPrivate::get(m_webView)->setNeedsDisplay();
}
void QtPageClient::didRenderFrame(const WebCore::IntSize& contentsSize, const WebCore::IntRect& coveredRect)
{
// The viewport has to be notified first so that the viewport position
// is adjusted before the loadVisuallyCommitted() signal.
PageViewportController* pvc = QQuickWebViewPrivate::get(m_webView)->viewportController();
if (pvc)
pvc->didRenderFrame(contentsSize, coveredRect);
QQuickWebViewPrivate::get(m_webView)->didRenderFrame();
}
void QtPageClient::pageDidRequestScroll(const IntPoint& pos)
{
QQuickWebViewPrivate::get(m_webView)->pageDidRequestScroll(pos);
}
void QtPageClient::processDidCrash()
{
QQuickWebViewPrivate::get(m_webView)->processDidCrash();
}
void QtPageClient::didRelaunchProcess()
{
QQuickWebViewPrivate::get(m_webView)->didRelaunchProcess();
}
void QtPageClient::didChangeContentsSize(const IntSize& newSize)
{
PageViewportController* pvc = QQuickWebViewPrivate::get(m_webView)->viewportController();
if (pvc)
pvc->didChangeContentsSize(newSize);
}
void QtPageClient::didChangeViewportProperties(const WebCore::ViewportAttributes& attr)
{
QQuickWebViewPrivate::get(m_webView)->didChangeViewportProperties(attr);
}
void QtPageClient::startDrag(const WebCore::DragData& dragData, PassRefPtr<ShareableBitmap> dragImage)
{
m_eventHandler->startDrag(dragData, dragImage);
}
void QtPageClient::handleDownloadRequest(DownloadProxy* download)
{
QQuickWebViewPrivate::get(m_webView)->handleDownloadRequest(download);
}
void QtPageClient::handleApplicationSchemeRequest(PassRefPtr<QtRefCountedNetworkRequestData> requestData)
{
if (!m_webView || !m_webView->experimental())
return;
m_webView->experimental()->invokeApplicationSchemeHandler(requestData);
}
void QtPageClient::handleAuthenticationRequiredRequest(const String& hostname, const String& realm, const String& prefilledUsername, String& username, String& password)
{
QString qUsername;
QString qPassword;
QQuickWebViewPrivate::get(m_webView)->handleAuthenticationRequiredRequest(hostname, realm, prefilledUsername, qUsername, qPassword);
username = qUsername;
password = qPassword;
}
void QtPageClient::handleCertificateVerificationRequest(const String& hostname, bool& ignoreErrors)
{
ignoreErrors = QQuickWebViewPrivate::get(m_webView)->handleCertificateVerificationRequest(hostname);
}
void QtPageClient::handleProxyAuthenticationRequiredRequest(const String& hostname, uint16_t port, const String& prefilledUsername, String& username, String& password)
{
QString qUsername;
QString qPassword;
QQuickWebViewPrivate::get(m_webView)->handleProxyAuthenticationRequiredRequest(hostname, port, prefilledUsername, qUsername, qPassword);
username = qUsername;
password = qPassword;
}
void QtPageClient::setCursor(const WebCore::Cursor& cursor)
{
m_webView->setCursor(*cursor.platformCursor());
}
void QtPageClient::setCursorHiddenUntilMouseMoves(bool hiddenUntilMouseMoves)
{
notImplemented();
}
void QtPageClient::toolTipChanged(const String&, const String& newTooltip)
{
// There is not yet any UI defined for the tooltips for mobile so we ignore the change.
}
void QtPageClient::registerEditCommand(PassRefPtr<WebEditCommandProxy> command, WebPageProxy::UndoOrRedo undoOrRedo)
{
m_undoController->registerEditCommand(command, undoOrRedo);
}
void QtPageClient::clearAllEditCommands()
{
m_undoController->clearAllEditCommands();
}
bool QtPageClient::canUndoRedo(WebPageProxy::UndoOrRedo undoOrRedo)
{
return m_undoController->canUndoRedo(undoOrRedo);
}
void QtPageClient::executeUndoRedo(WebPageProxy::UndoOrRedo undoOrRedo)
{
m_undoController->executeUndoRedo(undoOrRedo);
}
FloatRect QtPageClient::convertToDeviceSpace(const FloatRect& rect)
{
return rect;
}
FloatRect QtPageClient::convertToUserSpace(const FloatRect& rect)
{
return rect;
}
IntPoint QtPageClient::screenToWindow(const IntPoint& point)
{
return point;
}
IntRect QtPageClient::windowToScreen(const IntRect& rect)
{
return rect;
}
PassRefPtr<WebPopupMenuProxy> QtPageClient::createPopupMenuProxy(WebPageProxy* webPageProxy)
{
return WebPopupMenuProxyQt::create(webPageProxy, m_webView);
}
PassRefPtr<WebContextMenuProxy> QtPageClient::createContextMenuProxy(WebPageProxy* webPageProxy)
{
return WebContextMenuProxyQt::create(webPageProxy);
}
#if ENABLE(INPUT_TYPE_COLOR)
PassRefPtr<WebColorPicker> QtPageClient::createColorPicker(WebPageProxy* webPageProxy, const WebCore::Color& initialColor, const WebCore::IntRect& elementRect)
{
return WebColorPickerQt::create(webPageProxy, m_webView, initialColor, elementRect);
}
#endif
void QtPageClient::flashBackingStoreUpdates(const Vector<IntRect>&)
{
notImplemented();
}
void QtPageClient::pageTransitionViewportReady()
{
PageViewportController* pvc = QQuickWebViewPrivate::get(m_webView)->viewportController();
if (pvc)
pvc->pageTransitionViewportReady();
}
void QtPageClient::didFindZoomableArea(const IntPoint& target, const IntRect& area)
{
ASSERT(m_eventHandler);
m_eventHandler->didFindZoomableArea(target, area);
}
void QtPageClient::updateTextInputState()
{
ASSERT(m_eventHandler);
m_eventHandler->updateTextInputState();
}
void QtPageClient::handleWillSetInputMethodState()
{
ASSERT(m_eventHandler);
m_eventHandler->handleWillSetInputMethodState();
}
#if ENABLE(GESTURE_EVENTS)
void QtPageClient::doneWithGestureEvent(const WebGestureEvent& event, bool wasEventHandled)
{
ASSERT(m_eventHandler);
m_eventHandler->doneWithGestureEvent(event, wasEventHandled);
}
#endif
#if ENABLE(TOUCH_EVENTS)
void QtPageClient::doneWithTouchEvent(const NativeWebTouchEvent& event, bool wasEventHandled)
{
ASSERT(m_eventHandler);
m_eventHandler->doneWithTouchEvent(event, wasEventHandled);
}
#endif
void QtPageClient::displayView()
{
// FIXME: Implement.
}
void QtPageClient::scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset)
{
// FIXME: Implement.
}
WebCore::IntSize QtPageClient::viewSize()
{
return QQuickWebViewPrivate::get(m_webView)->viewSize();
}
bool QtPageClient::isViewWindowActive()
{
// FIXME: The scene graph does not have the concept of being active or not when this was written.
return true;
}
bool QtPageClient::isViewFocused()
{
if (!m_webView)
return false;
return m_webView->hasFocus();
}
bool QtPageClient::isViewVisible()
{
if (!m_webView)
return false;
// FIXME: this is a workaround while QWindow::isExposed() is not ready.
if (m_webView->window() && m_webView->window()->windowState() == Qt::WindowMinimized)
return false;
return m_webView->isVisible() && m_webView->page()->isVisible();
}
bool QtPageClient::isViewInWindow()
{
// FIXME: Implement.
return true;
}
void QtPageClient::enterAcceleratedCompositingMode(const LayerTreeContext&)
{
// FIXME: Implement.
}
void QtPageClient::exitAcceleratedCompositingMode()
{
// FIXME: Implement.
}
void QtPageClient::updateAcceleratedCompositingMode(const LayerTreeContext&)
{
// FIXME: Implement.
}
} // namespace WebKit
|