< prev index next >

test/java/awt/SplashScreen/FullscreenAfterSplash/FullScreenAfterSplash.java

Print this page


   1 /*
   2 * Copyright (c) 2013, 2015, 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 jdk.testlibrary.OSInfo;
  25 import java.awt.*;
  26 import java.awt.Robot;

  27 import java.awt.event.InputEvent;
  28 import java.lang.InterruptedException;
  29 import java.lang.System;
  30 import java.lang.Thread;
  31 import java.lang.reflect.Method;
  32 import java.lang.reflect.Proxy;
  33 import javax.swing.*;


  34 
  35 /*
  36  * @test
  37  * @bug 8024185
  38  * @summary Native Mac OS X full screen does not work after showing the splash
  39  * @requires (os.family == "mac")
  40  * @library ../
  41  * @library ../../../../lib/testlibrary
  42  * @modules java.desktop/sun.awt
  43  *          java.desktop/com.apple.eawt
  44  * @build jdk.testlibrary.OSInfo
  45  * @build GenerateTestImage
  46  * @run main GenerateTestImage
  47  * @author Petr Pchelko area=awt.event

  48  * @run main/othervm -splash:test.png FullScreenAfterSplash
  49  */
  50 public class FullScreenAfterSplash {
  51 
  52     private static JFrame frame;
  53 
  54     private static volatile boolean windowEnteringFullScreen = false;
  55     private static volatile boolean windowEnteredFullScreen = false;
  56 
  57     public static void main(String[] args) throws Exception {
  58 
  59         if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
  60             System.out.println("The test is applicable only to Mac OS X. Passed");
  61             return;
  62         }
  63         try {
  64             //Move the mouse out, because it could interfere with the test.
  65             Robot r = new Robot();
  66             r.setAutoDelay(50);
  67             r.mouseMove(0, 0);


   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 jdk.testlibrary.OSInfo;
  25 import java.awt.Point;
  26 import java.awt.Robot;
  27 import java.awt.Window;
  28 import java.awt.event.InputEvent;
  29 import java.lang.InterruptedException;
  30 import java.lang.System;
  31 import java.lang.Thread;
  32 import java.lang.reflect.Method;
  33 import java.lang.reflect.Proxy;
  34 import javax.swing.JFrame;
  35 import javax.swing.SwingUtilities;
  36 import javax.swing.WindowConstants;
  37 
  38 /*
  39  * @test
  40  * @bug 8024185 8140329 
  41  * @summary Native Mac OS X full screen does not work after showing the splash
  42  * @requires (os.family == "mac")
  43  * @library ../
  44  * @library ../../../../lib/testlibrary
  45  * @modules java.desktop/sun.awt
  46  *          java.desktop/com.apple.eawt
  47  * @build jdk.testlibrary.OSInfo
  48  * @build GenerateTestImage
  49  * @run main GenerateTestImage
  50  * @author Petr Pchelko area=awt.event
  51  * @compile FullScreenAfterSplash.java
  52  * @run main/othervm -splash:test.png FullScreenAfterSplash
  53  */
  54 public class FullScreenAfterSplash {
  55 
  56     private static JFrame frame;
  57 
  58     private static volatile boolean windowEnteringFullScreen = false;
  59     private static volatile boolean windowEnteredFullScreen = false;
  60 
  61     public static void main(String[] args) throws Exception {
  62 
  63         if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
  64             System.out.println("The test is applicable only to Mac OS X. Passed");
  65             return;
  66         }
  67         try {
  68             //Move the mouse out, because it could interfere with the test.
  69             Robot r = new Robot();
  70             r.setAutoDelay(50);
  71             r.mouseMove(0, 0);


< prev index next >