Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/swing/JMenu/6359669/bug6359669.java
41153 views
1
/*
2
* Copyright (c) 2006, 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 6359669
27
* @summary REGRESSION: Submenu does not work if populated in PopupMenuListener.popupMenuWillBecomeVisible
28
* @author Alexander Potochkin
29
* @library /lib/client
30
* @build ExtendedRobot
31
* @run main bug6359669
32
*/
33
34
import javax.swing.*;
35
import javax.swing.event.PopupMenuListener;
36
import javax.swing.event.PopupMenuEvent;
37
import java.awt.*;
38
import java.awt.event.InputEvent;
39
40
public class bug6359669 {
41
static JMenu menu;
42
static JFrame f;
43
44
public static void main(String[] args) throws Exception {
45
try {
46
ExtendedRobot robot = new ExtendedRobot();
47
robot.setAutoDelay(10);
48
49
SwingUtilities.invokeLater(new Runnable() {
50
public void run() {
51
f = new JFrame();
52
JMenuBar menuBar = new JMenuBar();
53
menu = new JMenu("Test");
54
menu.getPopupMenu().addPopupMenuListener(new PopupMenuListener() {
55
public void popupMenuCanceled(PopupMenuEvent e) {
56
}
57
58
public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {
59
}
60
61
public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
62
menu.add(new JMenuItem("An item"));
63
}
64
});
65
66
menuBar.add(menu);
67
f.setJMenuBar(menuBar);
68
69
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
70
f.setSize(200, 200);
71
f.setVisible(true);
72
}
73
});
74
robot.waitForIdle();
75
Point p = menu.getLocationOnScreen();
76
Dimension size = menu.getSize();
77
p.x += size.width / 2;
78
p.y += size.height / 2;
79
robot.mouseMove(p.x, p.y);
80
robot.mousePress(InputEvent.BUTTON1_MASK);
81
robot.mouseRelease(InputEvent.BUTTON1_MASK);
82
robot.waitForIdle();
83
if (menu.getPopupMenu().getComponentCount() == 0) {
84
throw new RuntimeException("Where is a menuItem ?");
85
}
86
} finally {
87
if (f != null) SwingUtilities.invokeAndWait(() -> f.dispose());
88
}
89
}
90
}
91
92