JInternalFrameMoveOverlapping.java revision 14851:980da45565c8
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
24import java.awt.Point;
25import java.awt.Robot;
26import java.awt.event.InputEvent;
27import java.awt.event.MouseAdapter;
28import java.awt.event.MouseEvent;
29import javax.swing.JButton;
30import javax.swing.JDesktopPane;
31import javax.swing.JFrame;
32import javax.swing.JInternalFrame;
33import 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 sergey.grinev@oracle.com: area=awt.mixing
45 * @library ../../regtesthelpers
46 * @modules java.desktop/sun.awt
47 *          java.desktop/java.awt.peer
48 * @build Util
49 * @run main JInternalFrameMoveOverlapping
50 */
51public class JInternalFrameMoveOverlapping extends OverlappingTestBase {
52
53    private boolean lwClicked = true;
54    private Point locTopFrame;
55    private Point locTarget;
56
57    protected boolean performTest() {
58        // run robot
59        Robot robot = Util.createRobot();
60        robot.setAutoDelay(ROBOT_DELAY);
61
62        robot.mouseMove(locTopFrame.x + 25, locTopFrame.y + 25);
63        robot.mousePress(InputEvent.BUTTON1_MASK);
64        try {
65            Thread.sleep(500);
66        } catch (InterruptedException ex) {
67        }
68        robot.mouseMove(locTopFrame.x + (locTarget.x - locTopFrame.x)/2, locTopFrame.y + (locTarget.y - locTopFrame.y)/2);
69        try {
70            Thread.sleep(500);
71        } catch (InterruptedException ex) {
72        }
73        robot.mouseMove(locTarget.x, locTarget.y);
74        try {
75            Thread.sleep(500);
76        } catch (InterruptedException ex) {
77        }
78        robot.mouseRelease(InputEvent.BUTTON1_MASK);
79
80        clickAndBlink(robot, locTarget);
81
82        return lwClicked;
83    }
84
85    //static {debugClassName = "Choice";}
86
87    @Override
88    protected void prepareControls() {
89
90
91        JDesktopPane desktopPane = new JDesktopPane();
92
93        JInternalFrame bottomFrame = new JInternalFrame("bottom frame", false, false, false, false);
94        bottomFrame.setSize(220, 220);
95        super.propagateAWTControls(bottomFrame);
96        desktopPane.add(bottomFrame);
97        bottomFrame.setVisible(true);
98
99        JInternalFrame topFrame = new JInternalFrame("top frame", false, false, false, false);
100        topFrame.setSize(200, 200);
101        topFrame.add(new JButton("LW Button") {
102
103            {
104                addMouseListener(new MouseAdapter() {
105
106                    @Override
107                    public void mouseClicked(MouseEvent e) {
108                        lwClicked = true;
109                    }
110                });
111            }
112        });
113        desktopPane.add(topFrame);
114        topFrame.setVisible(true);
115
116        JFrame frame = new JFrame("Test Window");
117        frame.setSize(300, 300);
118        frame.setContentPane(desktopPane);
119        frame.setVisible(true);
120
121        locTopFrame = topFrame.getLocationOnScreen();
122        locTarget = new Point(locTopFrame.x + bottomFrame.getWidth() / 2, locTopFrame.y + bottomFrame.getHeight()/2);
123    }
124
125    // this strange plumbing stuff is required due to "Standard Test Machinery" in base class
126    public static void main(String args[]) throws InterruptedException {
127        instance = new JInternalFrameMoveOverlapping();
128        OverlappingTestBase.doMain(args);
129    }
130}
131