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