< prev index next >

test/javax/swing/JFrame/NSTexturedJFrame/NSTexturedJFrame.java

Print this page
rev 14565 : 8185500: [TESTBUG] Add keywords headful/printer in java/awt and javax tests.
Summary: Add new keyword 'printer'. Some minor test fixes to show headless exception. Add some @requires windows.
Reviewed-by: serb, mbaesken
   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.Rectangle;
  25 import java.awt.Toolkit;
  26 import java.awt.image.BufferedImage;
  27 
  28 import javax.swing.JFrame;
  29 import javax.swing.SwingUtilities;
  30 import jdk.testlibrary.OSInfo;
  31 
  32 /**
  33  * @test

  34  * @bug 7124513
  35  * @summary We should support NSTexturedBackgroundWindowMask style on OSX.
  36  * @author Sergey Bylokhov
  37  * @library ../../../../lib/testlibrary
  38  * @build ExtendedRobot jdk.testlibrary.OSInfo
  39  * @run main NSTexturedJFrame
  40  */

  41 public final class NSTexturedJFrame {
  42 
  43     private static final String BRUSH = "apple.awt.brushMetalLook";
  44     private static final String STYLE = "Window.style";
  45     private static final BufferedImage[] images = new BufferedImage[3];
  46     private static Rectangle bounds;
  47     private static volatile int step;
  48     private static JFrame frame;
  49     private static ExtendedRobot robot;
  50 
  51     public static void main(final String[] args) throws Exception {
  52         if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
  53             System.out.println("This test is for OSX, considered passed.");
  54             return;
  55         }
  56         robot = new ExtendedRobot();
  57         robot.setAutoDelay(50);
  58         // Default window appearance
  59         showFrame();
  60         step++;


   1 /*
   2  * Copyright (c) 2013, 2017, 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.Rectangle;
  25 import java.awt.Toolkit;
  26 import java.awt.image.BufferedImage;
  27 
  28 import javax.swing.JFrame;
  29 import javax.swing.SwingUtilities;
  30 import jdk.testlibrary.OSInfo;
  31 
  32 /**
  33  * @test
  34  * @key headful
  35  * @bug 7124513
  36  * @summary We should support NSTexturedBackgroundWindowMask style on OSX.
  37  * @author Sergey Bylokhov
  38  * @library ../../../../lib/testlibrary
  39  * @build ExtendedRobot jdk.testlibrary.OSInfo
  40  * @run main NSTexturedJFrame
  41  */
  42 
  43 public final class NSTexturedJFrame {
  44 
  45     private static final String BRUSH = "apple.awt.brushMetalLook";
  46     private static final String STYLE = "Window.style";
  47     private static final BufferedImage[] images = new BufferedImage[3];
  48     private static Rectangle bounds;
  49     private static volatile int step;
  50     private static JFrame frame;
  51     private static ExtendedRobot robot;
  52 
  53     public static void main(final String[] args) throws Exception {
  54         if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
  55             System.out.println("This test is for OSX, considered passed.");
  56             return;
  57         }
  58         robot = new ExtendedRobot();
  59         robot.setAutoDelay(50);
  60         // Default window appearance
  61         showFrame();
  62         step++;


< prev index next >