Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/swing/JMenu/4417601/bug4417601.java
41155 views
1
/*
2
* Copyright (c) 2011, 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
/*
25
* @test
26
* @key headful
27
* @bug 4417601
28
* @summary JMenus with no items paint a tiny menu.
29
* @author Alexander Potochkin
30
* @library /lib/client
31
* @build ExtendedRobot
32
* @run main bug4417601
33
*/
34
35
import javax.swing.*;
36
import java.awt.event.*;
37
import java.awt.*;
38
39
public class bug4417601 {
40
static JMenu menu;
41
static volatile boolean flag;
42
static JFrame frame;
43
44
public static void main(String[] args) throws Exception {
45
46
ExtendedRobot robot = new ExtendedRobot();
47
robot.setAutoDelay(10);
48
49
SwingUtilities.invokeLater(new Runnable() {
50
public void run() {
51
frame = new JFrame();
52
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
53
menu = new JMenu("Menu");
54
JMenuBar bar = new JMenuBar();
55
bar.add(menu);
56
frame.setJMenuBar(bar);
57
58
frame.getLayeredPane().addContainerListener(new ContainerAdapter() {
59
public void componentAdded(ContainerEvent e) {
60
flag = true;
61
}
62
});
63
64
frame.pack();
65
frame.setSize(200, 200);
66
frame.setLocationRelativeTo(null);
67
frame.setVisible(true);
68
}
69
});
70
robot.waitForIdle();
71
Point p = menu.getLocationOnScreen();
72
Dimension size = menu.getSize();
73
p.x += size.width / 2;
74
p.y += size.height / 2;
75
robot.mouseMove(p.x, p.y);
76
robot.mousePress(InputEvent.BUTTON1_MASK);
77
robot.mouseRelease(InputEvent.BUTTON1_MASK);
78
robot.waitForIdle();
79
if (frame != null) SwingUtilities.invokeAndWait(() -> frame.dispose());
80
if (flag) {
81
throw new RuntimeException("Empty popup was shown");
82
}
83
}
84
}
85
86