1 /*
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 import java.awt.AWTException;
25 import java.awt.Color;
26 import java.awt.Dimension;
27 import java.awt.DisplayMode;
28 import java.awt.Frame;
29 import java.awt.GraphicsDevice;
30 import java.awt.GraphicsEnvironment;
31 import java.awt.Insets;
32 import java.awt.Robot;
33 import java.awt.Toolkit;
34 import java.awt.Window;
35 import java.awt.image.BufferedImage;
36
37 import sun.awt.SunToolkit;
38
39 /**
40 * @test
41 * @bug 8003173 7019055
42 * @summary Full-screen windows should have the proper insets.
43 * @author Sergey Bylokhov
44 */
45 public final class FullScreenInsets {
46
47 private static boolean passed = true;
48
49 public static void main(final String[] args) {
50 final GraphicsEnvironment ge = GraphicsEnvironment
51 .getLocalGraphicsEnvironment();
52 final GraphicsDevice[] devices = ge.getScreenDevices();
53
54 final Window wGreen = new Frame();
55 wGreen.setBackground(Color.GREEN);
56 wGreen.setSize(300, 300);
57 wGreen.setVisible(true);
58 sleep();
59 final Insets iGreen = wGreen.getInsets();
60 final Dimension sGreen = wGreen.getSize();
|
1 /*
2 * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 import java.awt.AWTException;
25 import java.awt.Color;
26 import java.awt.Dimension;
27 import java.awt.DisplayMode;
28 import java.awt.Frame;
29 import java.awt.GraphicsDevice;
30 import java.awt.GraphicsEnvironment;
31 import java.awt.Insets;
32 import java.awt.Robot;
33 import java.awt.Toolkit;
34 import java.awt.Window;
35 import java.awt.image.BufferedImage;
36
37 import sun.awt.SunToolkit;
38
39 /**
40 * @test
41 * @key headful
42 * @bug 8003173 7019055
43 * @summary Full-screen windows should have the proper insets.
44 * @author Sergey Bylokhov
45 */
46 public final class FullScreenInsets {
47
48 private static boolean passed = true;
49
50 public static void main(final String[] args) {
51 final GraphicsEnvironment ge = GraphicsEnvironment
52 .getLocalGraphicsEnvironment();
53 final GraphicsDevice[] devices = ge.getScreenDevices();
54
55 final Window wGreen = new Frame();
56 wGreen.setBackground(Color.GREEN);
57 wGreen.setSize(300, 300);
58 wGreen.setVisible(true);
59 sleep();
60 final Insets iGreen = wGreen.getInsets();
61 final Dimension sGreen = wGreen.getSize();
|