Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/java/awt/SplashScreen/FullscreenAfterSplash/FullScreenAfterSplash.java
38828 views
1
/*
2
* Copyright (c) 2013, 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
import sun.awt.OSInfo;
25
26
import java.awt.*;
27
import java.awt.Robot;
28
import java.awt.event.InputEvent;
29
import java.lang.InterruptedException;
30
import java.lang.System;
31
import java.lang.Thread;
32
import java.lang.reflect.Method;
33
import java.lang.reflect.Proxy;
34
import javax.swing.*;
35
36
/*
37
* @test
38
* @bug 8024185
39
* @summary Native Mac OS X full screen does not work after showing the splash
40
* @requires (os.family == "mac")
41
* @library ../
42
* @build GenerateTestImage
43
* @run main GenerateTestImage
44
* @author Petr Pchelko area=awt.event
45
* @run main/othervm -splash:test.png FullScreenAfterSplash
46
*/
47
public class FullScreenAfterSplash {
48
49
private static JFrame frame;
50
51
private static volatile boolean windowEnteringFullScreen = false;
52
private static volatile boolean windowEnteredFullScreen = false;
53
54
public static void main(String[] args) throws Exception {
55
56
if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
57
System.out.println("The test is applicable only to Mac OS X. Passed");
58
return;
59
}
60
try {
61
//Move the mouse out, because it could interfere with the test.
62
Robot r = new Robot();
63
r.mouseMove(0, 0);
64
sleep();
65
66
SwingUtilities.invokeAndWait(FullScreenAfterSplash::createAndShowGUI);
67
sleep();
68
69
Point fullScreenButtonPos = frame.getLocation();
70
fullScreenButtonPos.translate(frame.getWidth() - 10, 10);
71
r.mouseMove(fullScreenButtonPos.x, fullScreenButtonPos.y);
72
73
//Cant use waitForIdle for full screen transition.
74
int waitCount = 0;
75
while (!windowEnteringFullScreen) {
76
r.mousePress(InputEvent.BUTTON1_MASK);
77
r.mouseRelease(InputEvent.BUTTON1_MASK);
78
Thread.sleep(100);
79
if (waitCount++ > 10) {
80
System.err.println("Can't enter full screen mode. Failed.");
81
System.exit(1);
82
}
83
}
84
85
waitCount = 0;
86
while (!windowEnteredFullScreen) {
87
Thread.sleep(100);
88
if (waitCount++ > 10) {
89
System.err.println("Can't enter full screen mode. Failed.");
90
System.exit(1);
91
}
92
}
93
} finally {
94
if (frame != null) {
95
frame.dispose();
96
}
97
}
98
}
99
100
private static void createAndShowGUI() {
101
frame = new JFrame(" Fullscreen OSX Bug ");
102
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
103
enableFullScreen(frame);
104
frame.setBounds(100, 100, 100, 100);
105
frame.pack();
106
frame.setVisible(true);
107
}
108
109
/*
110
* Use reflection to make a test compilable on not Mac OS X
111
*/
112
private static void enableFullScreen(Window window) {
113
try {
114
Class<?> fullScreenUtilities = Class.forName("com.apple.eawt.FullScreenUtilities");
115
Method setWindowCanFullScreen = fullScreenUtilities.getMethod("setWindowCanFullScreen", Window.class, boolean.class);
116
setWindowCanFullScreen.invoke(fullScreenUtilities, window, true);
117
Class fullScreenListener = Class.forName("com.apple.eawt.FullScreenListener");
118
Object listenerObject = Proxy.newProxyInstance(fullScreenListener.getClassLoader(), new Class[]{fullScreenListener}, (proxy, method, args) -> {
119
switch (method.getName()) {
120
case "windowEnteringFullScreen":
121
windowEnteringFullScreen = true;
122
break;
123
case "windowEnteredFullScreen":
124
windowEnteredFullScreen = true;
125
break;
126
}
127
return null;
128
});
129
Method addFullScreenListener = fullScreenUtilities.getMethod("addFullScreenListenerTo", Window.class, fullScreenListener);
130
addFullScreenListener.invoke(fullScreenUtilities, window, listenerObject);
131
} catch (Exception e) {
132
throw new RuntimeException("FullScreen utilities not available", e);
133
}
134
}
135
136
private static void sleep() {
137
try {
138
Thread.sleep(500);
139
} catch (InterruptedException ignored) { }
140
}
141
}
142
143