0N/A/*
2362N/A * Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A @test
0N/A @bug 4737732
0N/A @summary Tests that Toolkit.getScreenInsets() returns correct insets
0N/A @author artem.ananiev: area=awt.toplevel
0N/A @library ../../regtesthelpers
0N/A @build Util
0N/A @run main ScreenInsetsTest
0N/A*/
0N/A
0N/Aimport java.awt.*;
0N/Aimport java.awt.event.*;
0N/A
0N/Aimport test.java.awt.regtesthelpers.Util;
0N/A
0N/Apublic class ScreenInsetsTest
0N/A{
0N/A public static void main(String[] args)
0N/A {
0N/A if (!Toolkit.getDefaultToolkit().isFrameStateSupported(Frame.MAXIMIZED_BOTH))
0N/A {
0N/A // this state is used in the test - sorry
0N/A return;
0N/A }
0N/A
0N/A boolean passed = true;
0N/A
0N/A GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
0N/A GraphicsDevice[] gds = ge.getScreenDevices();
0N/A for (GraphicsDevice gd : gds)
0N/A {
0N/A GraphicsConfiguration gc = gd.getDefaultConfiguration();
0N/A Rectangle gcBounds = gc.getBounds();
0N/A Insets gcInsets = Toolkit.getDefaultToolkit().getScreenInsets(gc);
0N/A
0N/A Frame f = new Frame("Test", gc);
0N/A f.setUndecorated(true);
0N/A f.setBounds(gcBounds.x + 100, gcBounds.y + 100, 320, 240);
0N/A f.setVisible(true);
0N/A Util.waitForIdle(null);
0N/A
0N/A f.setExtendedState(Frame.MAXIMIZED_BOTH);
0N/A Util.waitForIdle(null);
0N/A
0N/A Rectangle fBounds = f.getBounds();
0N/A // workaround: on Windows maximized windows have negative coordinates
0N/A if (fBounds.x < gcBounds.x)
0N/A {
0N/A fBounds.width -= (gcBounds.x - fBounds.x) * 2; // width is decreased
0N/A fBounds.x = gcBounds.x;
0N/A }
0N/A if (fBounds.y < gcBounds.y)
0N/A {
0N/A fBounds.height -= (gcBounds.y - fBounds.y) * 2; // height is decreased
0N/A fBounds.y = gcBounds.y;
0N/A }
0N/A Insets expected = new Insets(fBounds.y - gcBounds.y,
0N/A fBounds.x - gcBounds.x,
0N/A gcBounds.y + gcBounds.height - fBounds.y - fBounds.height,
0N/A gcBounds.x + gcBounds.width - fBounds.x - fBounds.width);
0N/A
0N/A if (!expected.equals(gcInsets))
0N/A {
0N/A passed = false;
0N/A System.err.println("Wrong insets for GraphicsConfig: " + gc);
0N/A System.err.println("\tExpected: " + expected);
0N/A System.err.println("\tActual: " + gcInsets);
0N/A }
0N/A
0N/A f.dispose();
0N/A }
0N/A
0N/A if (!passed)
0N/A {
0N/A throw new RuntimeException("TEST FAILED: Toolkit.getScreenInsets() returns wrong value for some screens");
0N/A }
0N/A }
0N/A}