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/client
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     private static JFrame frame;
42 
main(String[] args)43     public static void main(String[] args) throws Exception {
44         try {
45             SwingUtilities.invokeLater(new Runnable() {
46                 public void run() {
47                     frame = new JFrame();
48                     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
49 
50                     final JPopupMenu popup = new JPopupMenu("Menu");
51                     JMenuItem item = new JMenuItem("MenuItem");
52                     item.addActionListener(new ActionListener() {
53                         public void actionPerformed(ActionEvent e) {
54                             flag = true;
55                         }
56                     });
57                     popup.add(item);
58 
59                     panel = new JPanel();
60                     panel.addMouseListener(new MouseAdapter() {
61                         public void mousePressed(MouseEvent e) {
62                             popup.show(panel, e.getX(), e.getY());
63                         }
64 
65                         public void mouseReleased(MouseEvent e) {
66                             popup.setVisible(false);
67                         }
68                     });
69                     frame.add(panel);
70                     frame.setSize(200, 200);
71                     frame.setLocationRelativeTo(null);
72                     frame.setVisible(true);
73                 }
74             });
75 
76             ExtendedRobot robot = new ExtendedRobot();
77             robot.setAutoDelay(10);
78             robot.waitForIdle();
79 
80             Point l = panel.getLocationOnScreen();
81 
82             int x = l.x + panel.getWidth() / 2;
83             int y = l.y + panel.getHeight() / 2;
84             robot.mouseMove(x, y);
85             robot.mousePress(InputEvent.BUTTON1_MASK);
86             robot.glide(x, y, x + 10, y + 10);
87             robot.mouseRelease(InputEvent.BUTTON1_MASK);
88             robot.waitForIdle();
89 
90             if (!flag) {
91                 throw new RuntimeException("ActionEvent wasn't fired");
92             }
93         } finally {
94             if (frame != null) SwingUtilities.invokeAndWait(() -> frame.dispose());
95         }
96     }
97 }
98