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