1 /*
   2  * Copyright (c) 2006, 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 6359129
  27   @summary REGRESSION: Popup menus dont respond to selections when extend outside Applet
  28   @author oleg.sukhodolsky area=awt.grab
  29   @library ../../regtesthelpers
  30   @build Util UtilInternal
  31   @run main EmbeddedFrameTest1
  32 */
  33 
  34 /**
  35  * EmbeddedFrameTest1.java
  36  *
  37  * summary: REGRESSION: Popup menus dont respond to selections when extend outside Applet
  38  */
  39 
  40 import java.awt.BorderLayout;
  41 import java.awt.Dialog;
  42 import java.awt.Frame;
  43 import java.awt.Panel;
  44 import java.awt.Robot;
  45 import java.awt.TextArea;
  46 import java.awt.Toolkit;
  47 import java.awt.AWTException;
  48 
  49 import java.awt.event.ActionEvent;
  50 import java.awt.event.ActionListener;
  51 
  52 import javax.swing.JButton;
  53 import javax.swing.JPopupMenu;
  54 
  55 import test.java.awt.regtesthelpers.Util;
  56 import test.java.awt.regtesthelpers.UtilInternal;
  57 
  58 public class EmbeddedFrameTest1
  59 {
  60     public static void main( String args[] ) throws AWTException
  61     {
  62         try {
  63             final Frame frame = new Frame("AWT Frame");
  64             frame.pack();
  65             frame.setSize(200,200);
  66 
  67             final Frame embedded_frame = UtilInternal.createEmbeddedFrame(frame);
  68             embedded_frame.setSize(200, 200);
  69             System.out.println("embedded_frame = " + embedded_frame);
  70 
  71             final JPopupMenu menu = new JPopupMenu();
  72             JButton item = new JButton("A button in popup");
  73             item.addActionListener(new ActionListener() {
  74                     public void actionPerformed(ActionEvent e) {
  75                         System.out.println("Button pressed");
  76                     }
  77                 });
  78 
  79             menu.add(item);
  80 
  81             final JButton btn = new JButton("Press me to see popup");
  82             btn.addActionListener(new ActionListener() {
  83                     public void actionPerformed(ActionEvent e) {
  84                         menu.show(btn, 0, btn.getHeight());
  85                     }
  86                 });
  87             final Panel p = new Panel();
  88             p.setLayout(new BorderLayout());
  89             embedded_frame.add(p,BorderLayout.CENTER);
  90             embedded_frame.validate();
  91             p.add(btn);
  92             p.validate();
  93             frame.setVisible(true);
  94             Robot robot = new Robot();
  95             robot.waitForIdle();
  96             Util.clickOnComp(btn, robot);
  97             robot.waitForIdle();
  98 
  99             Util.clickOnComp(item, robot);
 100             robot.waitForIdle();
 101             if (item.getMousePosition() == null) {
 102                 throw new RuntimeException("Popup was not closed (mouse above it)");
 103             }
 104             embedded_frame.remove(p);
 105             embedded_frame.dispose();
 106             frame.dispose();
 107         } catch (Throwable thr) {
 108             thr.printStackTrace();
 109             throw new RuntimeException("TEST FAILED: " + thr);
 110         }
 111     }
 112 }