< prev index next >

src/java.desktop/windows/classes/sun/awt/windows/WWindowPeer.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1996, 2017, 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 --- 1,7 ---- /* ! * Copyright (c) 1996, 2018, 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
*** 59,70 **** import sun.awt.DisplayChangedListener; import sun.awt.SunToolkit; import sun.awt.Win32GraphicsConfig; import sun.awt.Win32GraphicsDevice; import sun.awt.Win32GraphicsEnvironment; import sun.java2d.pipe.Region; - import sun.swing.SwingUtilities2; import sun.util.logging.PlatformLogger; public class WWindowPeer extends WPanelPeer implements WindowPeer, DisplayChangedListener { --- 59,70 ---- import sun.awt.DisplayChangedListener; import sun.awt.SunToolkit; import sun.awt.Win32GraphicsConfig; import sun.awt.Win32GraphicsDevice; import sun.awt.Win32GraphicsEnvironment; + import sun.java2d.SunGraphicsEnvironment; import sun.java2d.pipe.Region; import sun.util.logging.PlatformLogger; public class WWindowPeer extends WPanelPeer implements WindowPeer, DisplayChangedListener {
*** 657,667 **** sysH = height; int cx = x + width / 2; int cy = y + height / 2; GraphicsConfiguration current = getGraphicsConfiguration(); ! GraphicsConfiguration other = SwingUtilities2.getGraphicsConfigurationAtPoint(current, cx, cy); if (!current.equals(other)) { AffineTransform tx = other.getDefaultTransform(); double otherScaleX = tx.getScaleX(); double otherScaleY = tx.getScaleY(); initScales(); --- 657,668 ---- sysH = height; int cx = x + width / 2; int cy = y + height / 2; GraphicsConfiguration current = getGraphicsConfiguration(); ! GraphicsConfiguration other = SunGraphicsEnvironment ! .getGraphicsConfigurationAtPoint(current, cx, cy); if (!current.equals(other)) { AffineTransform tx = other.getDefaultTransform(); double otherScaleX = tx.getScaleX(); double otherScaleY = tx.getScaleY(); initScales();
< prev index next >