Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/awt/Choice/GetSizeTest/GetSizeTest.java
41152 views
1
/*
2
* Copyright (c) 1999, 2020, 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 4255631
27
@summary Solaris: Size returned by Choice.getSize() does not match actual size
28
@author Andrei Dmitriev : area=Choice
29
run main GetSizeTest.html
30
*/
31
32
import java.awt.Choice;
33
import java.awt.Frame;
34
import java.awt.Panel;
35
import java.awt.Point;
36
import java.awt.Robot;
37
import java.awt.event.InputEvent;
38
import java.awt.event.MouseAdapter;
39
import java.awt.event.MouseEvent;
40
41
public class GetSizeTest {
42
43
static String []s = {"Choice 1",
44
"Choice 2",
45
"unselected choices",
46
"what choices do I have?",
47
"Will I pick the same thing in the future?",
48
};
49
static volatile boolean passed = false;
50
51
public static void main(String args[]) throws Exception {
52
Frame f = null;
53
try {
54
Robot robot = new Robot();
55
robot.setAutoDelay(150);
56
57
f = new Frame("choice test");
58
59
Panel p = new Panel();
60
p.setLayout(null);
61
62
Choice c = new Choice();
63
for (int i = 0; i < s.length; i++)
64
c.addItem(s[i]);
65
66
c.addMouseListener(new MouseAdapter() {
67
public void mouseReleased(MouseEvent e) {
68
System.err.println("Test passed");
69
passed = true;
70
}
71
});
72
73
p.add(c);
74
75
f.add(p);
76
77
f.setSize(300, 300);
78
f.setLocationRelativeTo(null);
79
f.setVisible(true);
80
81
c.setSize(200, 200);
82
f.validate();
83
84
robot.waitForIdle();
85
86
Point pt = c.getLocationOnScreen();
87
robot.mouseMove(pt.x + c.getWidth() - 10, pt.y + c.getHeight() / 2);
88
robot.waitForIdle();
89
robot.mousePress(InputEvent.BUTTON2_DOWN_MASK);
90
robot.mouseRelease(InputEvent.BUTTON2_DOWN_MASK);
91
robot.waitForIdle();
92
} finally {
93
if (f != null) {
94
f.dispose();
95
}
96
}
97
if (!passed) {
98
throw new RuntimeException( "Timeout. Choice component size is not actual size." );
99
}
100
System.err.println("Test passed.");
101
}
102
}
103
104