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