Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/swing/JMenu/6470128/bug6470128.java
41153 views
1
/*
2
* Copyright (c) 2011, 2018, 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
* @key headful
27
* @bug 6470128
28
* @summary Escape Key causes JMenu Selection to Disappear
29
* @author Alexander Potochkin
30
* @library /test/lib
31
* @build jdk.test.lib.Platform
32
* @run main bug6470128
33
*/
34
35
import javax.swing.*;
36
import java.awt.*;
37
import java.awt.event.KeyEvent;
38
39
import jdk.test.lib.Platform;
40
41
public class bug6470128 {
42
static JFrame frame;
43
static JMenu subMenu;
44
45
public static void main(String[] args) throws Exception {
46
try {
47
SwingUtilities.invokeAndWait(new Runnable() {
48
public void run() {
49
frame = new JFrame();
50
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
51
52
JMenuBar bar = new JMenuBar();
53
JMenu menu = new JMenu("Menu");
54
menu.setMnemonic('m');
55
subMenu = new JMenu("SubMenu");
56
JMenuItem item = new JMenuItem("Item");
57
58
frame.setJMenuBar(bar);
59
bar.add(menu);
60
menu.add(subMenu);
61
subMenu.add(item);
62
63
frame.setSize(200, 200);
64
frame.setLocationRelativeTo(null);
65
frame.setVisible(true);
66
}
67
});
68
Robot robot = new Robot();
69
robot.setAutoDelay(10);
70
robot.waitForIdle();
71
if (Platform.isOSX()) {
72
robot.keyPress(KeyEvent.VK_CONTROL);
73
}
74
robot.keyPress(KeyEvent.VK_ALT);
75
robot.keyPress(KeyEvent.VK_M);
76
robot.keyRelease(KeyEvent.VK_M);
77
robot.keyRelease(KeyEvent.VK_ALT);
78
if (Platform.isOSX()) {
79
robot.keyRelease(KeyEvent.VK_CONTROL);
80
}
81
robot.keyPress(KeyEvent.VK_ENTER);
82
robot.keyRelease(KeyEvent.VK_ENTER);
83
robot.keyPress(KeyEvent.VK_ESCAPE);
84
robot.keyRelease(KeyEvent.VK_ESCAPE);
85
robot.waitForIdle();
86
if (!subMenu.isSelected()) {
87
throw new RuntimeException("Submenu is unexpectedly unselected");
88
}
89
} finally {
90
if (frame != null) SwingUtilities.invokeAndWait(() -> frame.dispose());
91
}
92
}
93
}
94
95