Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/awt/Mixing/AWT_Mixing/JInternalFrameMoveOverlapping.java
41152 views
1
/*
2
* Copyright (c) 2014, 2016, 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
* @key headful
42
* @bug 6985399
43
* @summary Overlapping test for javax.swing.JScrollPane
44
* @author [email protected]: area=awt.mixing
45
* @library /java/awt/patchlib ../../regtesthelpers
46
* @modules java.desktop/sun.awt
47
* java.desktop/java.awt.peer
48
* @build java.desktop/java.awt.Helper
49
* @build Util
50
* @run main JInternalFrameMoveOverlapping
51
*/
52
public class JInternalFrameMoveOverlapping extends OverlappingTestBase {
53
54
private boolean lwClicked = true;
55
private Point locTopFrame;
56
private Point locTarget;
57
58
protected boolean performTest() {
59
// run robot
60
Robot robot = Util.createRobot();
61
robot.setAutoDelay(ROBOT_DELAY);
62
63
robot.mouseMove(locTopFrame.x + 25, locTopFrame.y + 25);
64
robot.mousePress(InputEvent.BUTTON1_MASK);
65
try {
66
Thread.sleep(500);
67
} catch (InterruptedException ex) {
68
}
69
robot.mouseMove(locTopFrame.x + (locTarget.x - locTopFrame.x)/2, locTopFrame.y + (locTarget.y - locTopFrame.y)/2);
70
try {
71
Thread.sleep(500);
72
} catch (InterruptedException ex) {
73
}
74
robot.mouseMove(locTarget.x, locTarget.y);
75
try {
76
Thread.sleep(500);
77
} catch (InterruptedException ex) {
78
}
79
robot.mouseRelease(InputEvent.BUTTON1_MASK);
80
81
clickAndBlink(robot, locTarget);
82
83
return lwClicked;
84
}
85
86
//static {debugClassName = "Choice";}
87
88
@Override
89
protected void prepareControls() {
90
91
92
JDesktopPane desktopPane = new JDesktopPane();
93
94
JInternalFrame bottomFrame = new JInternalFrame("bottom frame", false, false, false, false);
95
bottomFrame.setSize(220, 220);
96
super.propagateAWTControls(bottomFrame);
97
desktopPane.add(bottomFrame);
98
bottomFrame.setVisible(true);
99
100
JInternalFrame topFrame = new JInternalFrame("top frame", false, false, false, false);
101
topFrame.setSize(200, 200);
102
topFrame.add(new JButton("LW Button") {
103
104
{
105
addMouseListener(new MouseAdapter() {
106
107
@Override
108
public void mouseClicked(MouseEvent e) {
109
lwClicked = true;
110
}
111
});
112
}
113
});
114
desktopPane.add(topFrame);
115
topFrame.setVisible(true);
116
117
JFrame frame = new JFrame("Test Window");
118
frame.setSize(300, 300);
119
frame.setContentPane(desktopPane);
120
frame.setVisible(true);
121
122
locTopFrame = topFrame.getLocationOnScreen();
123
locTarget = new Point(locTopFrame.x + bottomFrame.getWidth() / 2, locTopFrame.y + bottomFrame.getHeight()/2);
124
}
125
126
// this strange plumbing stuff is required due to "Standard Test Machinery" in base class
127
public static void main(String args[]) throws InterruptedException {
128
instance = new JInternalFrameMoveOverlapping();
129
OverlappingTestBase.doMain(args);
130
}
131
}
132
133