< prev index next >

test/java/awt/FullScreen/FullScreenInsets/FullScreenInsets.java

Print this page
rev 14836 : 8159690: [TESTBUG] Mark headful tests with @key headful.
   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.Window;
  34 import java.awt.image.BufferedImage;
  35 
  36 /**
  37  * @test

  38  * @bug 8003173 7019055
  39  * @summary Full-screen windows should have the proper insets.
  40  * @author Sergey Bylokhov
  41  */
  42 public final class FullScreenInsets {
  43 
  44     private static boolean passed = true;
  45     private static Robot robot = null;
  46 
  47     public static void main(final String[] args) {
  48         final GraphicsEnvironment ge = GraphicsEnvironment
  49                 .getLocalGraphicsEnvironment();
  50         final GraphicsDevice[] devices = ge.getScreenDevices();
  51 
  52         final Window wGreen = new Frame();
  53         wGreen.setBackground(Color.GREEN);
  54         wGreen.setSize(300, 300);
  55         wGreen.setVisible(true);
  56         sleep();
  57         final Insets iGreen = wGreen.getInsets();


   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.Window;
  34 import java.awt.image.BufferedImage;
  35 
  36 /**
  37  * @test
  38  * @key headful
  39  * @bug 8003173 7019055
  40  * @summary Full-screen windows should have the proper insets.
  41  * @author Sergey Bylokhov
  42  */
  43 public final class FullScreenInsets {
  44 
  45     private static boolean passed = true;
  46     private static Robot robot = null;
  47 
  48     public static void main(final String[] args) {
  49         final GraphicsEnvironment ge = GraphicsEnvironment
  50                 .getLocalGraphicsEnvironment();
  51         final GraphicsDevice[] devices = ge.getScreenDevices();
  52 
  53         final Window wGreen = new Frame();
  54         wGreen.setBackground(Color.GREEN);
  55         wGreen.setSize(300, 300);
  56         wGreen.setVisible(true);
  57         sleep();
  58         final Insets iGreen = wGreen.getInsets();


< prev index next >