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/Mixing/AWT_Mixing/JInternalFrameMoveOverlapping.java
47626 views
1
/*
2
* Copyright (c) 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
import java.awt.Point;
25
import java.awt.Robot;
26
import java.awt.event.InputEvent;
27
import java.awt.event.MouseAdapter;
28
import java.awt.event.MouseEvent;
29
import javax.swing.JButton;
30
import javax.swing.JDesktopPane;
31
import javax.swing.JFrame;
32
import javax.swing.JInternalFrame;
33
import test.java.awt.regtesthelpers.Util;
34
35
/**
36
* AWT/Swing overlapping test for {@link javax.swing.JInternalFrame } component during move.
37
* <p>See <a href="http://monaco.sfbay.sun.com/detail.jsf?cr=6985399">CR6768230</a> for details and base class for test info.
38
*/
39
/*
40
@test
41
@bug 6985399
42
@summary Overlapping test for javax.swing.JScrollPane
43
@author [email protected]: area=awt.mixing
44
@library ../../regtesthelpers
45
@build Util
46
@run main JInternalFrameMoveOverlapping
47
*/
48
public class JInternalFrameMoveOverlapping extends OverlappingTestBase {
49
50
private boolean lwClicked = true;
51
private Point locTopFrame;
52
private Point locTarget;
53
54
protected boolean performTest() {
55
// run robot
56
Robot robot = Util.createRobot();
57
robot.setAutoDelay(ROBOT_DELAY);
58
59
robot.mouseMove(locTopFrame.x + 25, locTopFrame.y + 25);
60
robot.mousePress(InputEvent.BUTTON1_MASK);
61
try {
62
Thread.sleep(500);
63
} catch (InterruptedException ex) {
64
}
65
robot.mouseMove(locTopFrame.x + (locTarget.x - locTopFrame.x)/2, locTopFrame.y + (locTarget.y - locTopFrame.y)/2);
66
try {
67
Thread.sleep(500);
68
} catch (InterruptedException ex) {
69
}
70
robot.mouseMove(locTarget.x, locTarget.y);
71
try {
72
Thread.sleep(500);
73
} catch (InterruptedException ex) {
74
}
75
robot.mouseRelease(InputEvent.BUTTON1_MASK);
76
77
clickAndBlink(robot, locTarget);
78
79
return lwClicked;
80
}
81
82
//static {debugClassName = "Choice";}
83
84
@Override
85
protected void prepareControls() {
86
87
88
JDesktopPane desktopPane = new JDesktopPane();
89
90
JInternalFrame bottomFrame = new JInternalFrame("bottom frame", false, false, false, false);
91
bottomFrame.setSize(220, 220);
92
super.propagateAWTControls(bottomFrame);
93
desktopPane.add(bottomFrame);
94
bottomFrame.setVisible(true);
95
96
JInternalFrame topFrame = new JInternalFrame("top frame", false, false, false, false);
97
topFrame.setSize(200, 200);
98
topFrame.add(new JButton("LW Button") {
99
100
{
101
addMouseListener(new MouseAdapter() {
102
103
@Override
104
public void mouseClicked(MouseEvent e) {
105
lwClicked = true;
106
}
107
});
108
}
109
});
110
desktopPane.add(topFrame);
111
topFrame.setVisible(true);
112
113
JFrame frame = new JFrame("Test Window");
114
frame.setSize(300, 300);
115
frame.setContentPane(desktopPane);
116
frame.setVisible(true);
117
118
locTopFrame = topFrame.getLocationOnScreen();
119
locTarget = new Point(locTopFrame.x + bottomFrame.getWidth() / 2, locTopFrame.y + bottomFrame.getHeight()/2);
120
}
121
122
// this strange plumbing stuff is required due to "Standard Test Machinery" in base class
123
public static void main(String args[]) throws InterruptedException {
124
instance = new JInternalFrameMoveOverlapping();
125
OverlappingTestBase.doMain(args);
126
}
127
}
128
129