Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/awt/Focus/ShowFrameCheckForegroundTest/ShowFrameCheckForegroundTest.java
41152 views
1
/*
2
* Copyright (c) 2007, 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 6492970
28
@summary Tests that showing a toplvel in a not foreground Java process activates it.
29
@library ../../regtesthelpers
30
@build Util
31
@run main ShowFrameCheckForegroundTest
32
*/
33
34
import java.awt.*;
35
import java.awt.event.*;
36
import test.java.awt.regtesthelpers.Util;
37
38
public class ShowFrameCheckForegroundTest {
39
Robot robot;
40
Frame nofocusFrame = new Frame("Non-focusable");
41
Frame frame = new Frame("Frame");
42
Dialog dialog1 = new Dialog(nofocusFrame, "Owned Dialog", false);
43
Dialog dialog2 = new Dialog((Frame)null, "Owned Dialog", false);
44
Window testToplevel = null;
45
Button testButton = new Button("button");
46
Button showButton = new Button("show");
47
Runnable action = new Runnable() {
48
public void run() {
49
robot.keyPress(KeyEvent.VK_SPACE);
50
robot.delay(50);
51
robot.keyRelease(KeyEvent.VK_SPACE);
52
}
53
};
54
55
56
public static void main(String[] args) {
57
ShowFrameCheckForegroundTest app = new ShowFrameCheckForegroundTest();
58
app.init();
59
app.start();
60
}
61
62
public void init() {
63
robot = Util.createRobot();
64
}
65
66
public void start() {
67
showButton.addActionListener(new ActionListener() {
68
public void actionPerformed(ActionEvent e) {
69
Util.showWindowWait(testToplevel);
70
}
71
});
72
nofocusFrame.add(showButton);
73
nofocusFrame.pack();
74
nofocusFrame.setFocusableWindowState(false);
75
nofocusFrame.setLocation(200, 200);
76
nofocusFrame.setVisible(true);
77
Util.waitForIdle(robot);
78
79
robot.delay(3000);
80
81
// 1. Show the toplvel without clicking into the non-focusable frame.
82
test(frame, 1);
83
test(dialog1, 1);
84
test(dialog2, 1);
85
86
// 2. Showing the toplvel via clicking into the non-focusable frame.
87
test(frame, 2);
88
test(dialog1, 2);
89
test(dialog2, 2);
90
91
System.out.println("Test passed.");
92
}
93
94
private void test(Window toplevel, int stage) {
95
toplevel.add(testButton);
96
toplevel.pack();
97
toplevel.setLocation(400, 200);
98
99
switch (stage) {
100
case 1:
101
Util.showWindowWait(toplevel);
102
break;
103
case 2:
104
testToplevel = toplevel;
105
Util.showWindowWait(nofocusFrame);
106
Util.waitForIdle(robot);
107
Util.clickOnComp(showButton, robot);
108
break;
109
}
110
Util.waitForIdle(robot);
111
112
if (!Util.trackActionPerformed(testButton, action, 2000, false)) {
113
throw new TestFailedException("Stage " + stage + ". The toplevel " + toplevel + " wasn't made foreground on showing");
114
}
115
System.out.println("Stage " + stage + ". Toplevel " + toplevel + " - passed");
116
toplevel.dispose();
117
}
118
}
119
120
class TestFailedException extends RuntimeException {
121
TestFailedException(String msg) {
122
super("Test failed: " + msg);
123
}
124
}
125
126