/* * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code 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 General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package com.sun.javafx.webkit; import java.security.AccessController; import java.security.PrivilegedAction; import com.sun.javafx.scene.traversal.Direction; import javafx.geometry.Point2D; import javafx.geometry.Rectangle2D; import javafx.scene.Cursor; import javafx.scene.Scene; import javafx.scene.control.Tooltip; import javafx.scene.web.WebView; import javafx.stage.Screen; import javafx.stage.Window; import com.sun.javafx.util.Utils; import com.sun.webkit.CursorManager; import com.sun.webkit.WebPageClient; import com.sun.webkit.graphics.WCGraphicsManager; import com.sun.webkit.graphics.WCPageBackBuffer; import com.sun.webkit.graphics.WCPoint; import com.sun.webkit.graphics.WCRectangle; public final class WebPageClientImpl implements WebPageClient { private static final boolean backBufferSupported; private final Accessor accessor; static { backBufferSupported = Boolean.valueOf( AccessController.doPrivileged((PrivilegedAction) () -> System.getProperty( "com.sun.webkit.pagebackbuffer", "true"))); } public WebPageClientImpl(Accessor accessor) { this.accessor = accessor; } @Override public void setFocus(boolean focus) { WebView view = accessor.getView(); if (view != null && focus) { view.requestFocus(); } } @Override public void setCursor(long cursorID) { WebView view = accessor.getView(); if (view != null) { Object cursor = CursorManager.getCursorManager().getCursor(cursorID); view.setCursor((cursor instanceof Cursor) ? (Cursor) cursor : Cursor.DEFAULT); } } private Tooltip tooltip; private boolean isTooltipRegistered = false; @Override public void setTooltip(final String tooltipText) { WebView view = accessor.getView(); if (tooltipText != null) { if (tooltip == null) { tooltip = new Tooltip(tooltipText); } else { tooltip.setText(tooltipText); } if (!isTooltipRegistered) { Tooltip.install(view, tooltip); isTooltipRegistered = true; } } else if (isTooltipRegistered) { Tooltip.uninstall(view, tooltip); isTooltipRegistered = false; } } @Override public void transferFocus(boolean forward) { accessor.getView().impl_traverse(forward ? Direction.NEXT : Direction.PREVIOUS); } @Override public WCRectangle getScreenBounds(boolean available) { WebView view = accessor.getView(); Screen screen = Utils.getScreen(view); if (screen != null) { Rectangle2D r = available ? screen.getVisualBounds() : screen.getBounds(); return new WCRectangle( (float)r.getMinX(), (float)r.getMinY(), (float)r.getWidth(), (float)r.getHeight()); } return null; } @Override public int getScreenDepth() { // no way to determine screen color depth, return a default return 24; } @Override public WebView getContainer() { return accessor.getView(); } @Override public WCPoint screenToWindow(WCPoint ptScreen) { WebView view = accessor.getView(); Scene scene = view.getScene(); Window window = null; if (scene != null && (window = scene.getWindow()) != null) { Point2D pt = view.sceneToLocal( ptScreen.getX() - window.getX() - scene.getX(), ptScreen.getY() - window.getY() - scene.getY()); return new WCPoint((float)pt.getX(), (float)pt.getY()); } else { return new WCPoint(0f, 0f); } } @Override public WCPoint windowToScreen(WCPoint ptWindow) { WebView view = accessor.getView(); Scene scene = view.getScene(); Window window = null; if (scene != null && (window = scene.getWindow()) != null) { Point2D pt = view.localToScene(ptWindow.getX(), ptWindow.getY()); return new WCPoint((float)(pt.getX() + scene.getX() + window.getX()), (float)(pt.getY() + scene.getY() + window.getY())); } else { return new WCPoint(0f, 0f); } } @Override public WCPageBackBuffer createBackBuffer() { if (isBackBufferSupported()) { return WCGraphicsManager.getGraphicsManager().createPageBackBuffer(); } return null; } @Override public boolean isBackBufferSupported() { return backBufferSupported; } @Override public void addMessageToConsole(String message, int lineNumber, String sourceId) { } @Override public void didClearWindowObject(long context, long windowObject) { } }