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