1 /*
   2  * Copyright (c) 2007, 2014, 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  * @test
  25  * @key headful
  26  * @bug 6515446
  27  * @summary JMenuItems in JPopupMenus not receiving ActionEvents - incompat with 1.5
  28  * @author Alexander Potochkin
  29  * @library ../../../../lib/testlibrary
  30  * @build ExtendedRobot
  31  * @run main bug6515446
  32  */
  33 
  34 import javax.swing.*;
  35 import java.awt.event.*;
  36 import java.awt.*;
  37 
  38 public class bug6515446 {
  39     private static JPanel panel;
  40     private static volatile boolean flag;
  41 
  42     public static void main(String[] args) throws Exception {
  43         SwingUtilities.invokeLater(new Runnable() {
  44             public void run() {
  45                 final JFrame frame = new JFrame();
  46                 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  47 
  48                 final JPopupMenu popup = new JPopupMenu("Menu");
  49                 JMenuItem item = new JMenuItem("MenuItem");
  50                 item.addActionListener(new ActionListener() {
  51                     public void actionPerformed(ActionEvent e) {
  52                         flag = true;
  53                     }
  54                 });
  55                 popup.add(item);
  56 
  57                 panel = new JPanel();
  58                 panel.addMouseListener(new MouseAdapter() {
  59                     public void mousePressed(MouseEvent e) {
  60                         popup.show(panel, e.getX(), e.getY());
  61                     }
  62 
  63                     public void mouseReleased(MouseEvent e) {
  64                         popup.setVisible(false);
  65                     }
  66                 });
  67                 frame.add(panel);
  68                 frame.setSize(200, 200);
  69                 frame.setLocationRelativeTo(null);
  70                 frame.setVisible(true);
  71             }
  72         });
  73 
  74         ExtendedRobot robot = new ExtendedRobot();
  75         robot.setAutoDelay(10);
  76         robot.waitForIdle();
  77 
  78         Point l = panel.getLocationOnScreen();
  79 
  80         int x = l.x + panel.getWidth() / 2;
  81         int y = l.y + panel.getHeight() / 2;
  82         robot.mouseMove(x, y);
  83         robot.mousePress(InputEvent.BUTTON1_MASK);
  84         robot.glide(x, y, x + 10, y + 10);
  85         robot.mouseRelease(InputEvent.BUTTON1_MASK);
  86         robot.waitForIdle();
  87 
  88         if (!flag) {
  89             throw new RuntimeException("ActionEvent wasn't fired");
  90         }
  91     }
  92 }