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