1 /*
   2  * Copyright (c) 2007, 2018, 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 /**
  25  * @test
  26  * @key       headful
  27  * @bug       6516675
  28  * @summary   Tests that EmbeddedFrame can be focused.
  29  * @requires (os.family == "windows")
  30  * @modules   java.desktop/java.awt.peer
  31  *            java.desktop/sun.awt
  32  *            java.desktop/sun.awt.windows
  33  * @library /java/awt/patchlib    ../../regtesthelpers
  34  * @build java.desktop/java.awt.Helper
  35  * @build     Util UtilInternal
  36  * @run       main FocusEmbeddedFrameTest
  37  */
  38 
  39 import java.awt.*;
  40 import java.awt.event.*;
  41 import test.java.awt.regtesthelpers.Util;
  42 import test.java.awt.regtesthelpers.UtilInternal;
  43 
  44 public class FocusEmbeddedFrameTest {
  45     static Frame embedder = new Frame("Embedder");
  46     static Frame ef = null;
  47     static volatile boolean passed;
  48 
  49     Robot robot;
  50 
  51     public static void main(String[] args) {
  52         FocusEmbeddedFrameTest app = new FocusEmbeddedFrameTest();
  53         app.init();
  54         app.start();
  55     }
  56 
  57     public void init() {
  58         robot = Util.createRobot();
  59     }
  60 
  61     public void start() {
  62 
  63         if (!"sun.awt.windows.WToolkit".equals(Toolkit.getDefaultToolkit().getClass().getName())) {
  64             System.out.println("The test is for WToolkit only!");
  65             return;
  66         }
  67 
  68         Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener() {
  69                 public void eventDispatched(AWTEvent e) {
  70                    System.err.println("--> " + e);
  71                 }
  72             }, FocusEvent.FOCUS_EVENT_MASK | WindowEvent.WINDOW_EVENT_MASK);
  73 
  74         embedder.addNotify();
  75 
  76         try {
  77             ef = UtilInternal.createEmbeddedFrame(embedder);
  78         } catch (Throwable t) {
  79             t.printStackTrace();
  80             throw new Error("Test error: couldn't create an EmbeddedFrame!");
  81         }
  82 
  83         ef.setSize(100, 100);
  84         ef.setBackground(Color.blue);
  85 
  86         embedder.addFocusListener(new FocusAdapter() {
  87                 public void focusGained(FocusEvent e) {
  88                     FocusEmbeddedFrameTest.ef.requestFocus();
  89                 }
  90             });
  91 
  92         ef.addFocusListener(new FocusAdapter() {
  93                 public void focusGained(FocusEvent e) {
  94                     passed = true;
  95                 }
  96             });
  97 
  98         embedder.setSize(150, 150);
  99         embedder.setVisible(true);
 100 
 101         Util.waitForIdle(robot);
 102 
 103         if (!passed) {
 104             throw new TestFailedException("the EmbeddedFrame didn't get focus on request!");
 105         }
 106 
 107         System.out.println("Test passed.");
 108     }
 109 }
 110 
 111 class TestFailedException extends RuntimeException {
 112     TestFailedException(String msg) {
 113         super("Test failed: " + msg);
 114     }
 115 }