|
| 1 | +/* |
| 2 | + * Copyright (c) 1999, 2024, 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.Canvas; |
| 25 | +import java.awt.Color; |
| 26 | +import java.awt.Component; |
| 27 | +import java.awt.Dimension; |
| 28 | +import java.awt.FlowLayout; |
| 29 | +import java.awt.Frame; |
| 30 | +import java.awt.Point; |
| 31 | +import java.awt.Rectangle; |
| 32 | +import java.awt.event.MouseAdapter; |
| 33 | +import java.awt.event.MouseEvent; |
| 34 | +import java.awt.event.MouseListener; |
| 35 | +import java.awt.event.MouseMotionAdapter; |
| 36 | +import java.awt.event.MouseMotionListener; |
| 37 | + |
| 38 | +/* |
| 39 | + * @test |
| 40 | + * @bug 4035189 |
| 41 | + * @summary Test to verify that Drag events go to wrong component |
| 42 | + * @library /java/awt/regtesthelpers |
| 43 | + * @build PassFailJFrame |
| 44 | + * @run main/manual MouseDragTest |
| 45 | + */ |
| 46 | + |
| 47 | +class HeavySquare extends Canvas { |
| 48 | + private final Color colorNormal; |
| 49 | + private boolean gotADragEvent; |
| 50 | + |
| 51 | + public HeavySquare(Color color) { |
| 52 | + colorNormal = color; |
| 53 | + setBackground(colorNormal); |
| 54 | + new MouseChecker(this); |
| 55 | + addMouseMotionListener(new DragAdapter()); |
| 56 | + addMouseListener(new PressReleaseAdapter()); |
| 57 | + } |
| 58 | + |
| 59 | + class DragAdapter extends MouseMotionAdapter { |
| 60 | + public void mouseDragged(MouseEvent ev) { |
| 61 | + if (gotADragEvent) |
| 62 | + return; |
| 63 | + |
| 64 | + Point mousePt = ev.getPoint(); |
| 65 | + Dimension csize = getSize(); |
| 66 | + boolean inBounds = |
| 67 | + (mousePt.x >= 0 && mousePt.x <= csize.width && |
| 68 | + mousePt.y >= 0 && mousePt.y <= csize.height); |
| 69 | + if (!inBounds) { |
| 70 | + setBackground(Color.green); |
| 71 | + } |
| 72 | + gotADragEvent = true; |
| 73 | + } |
| 74 | + } |
| 75 | + |
| 76 | + class PressReleaseAdapter extends MouseAdapter { |
| 77 | + public void mousePressed(MouseEvent ev) { |
| 78 | + gotADragEvent = false; |
| 79 | + } |
| 80 | + |
| 81 | + public void mouseReleased(MouseEvent ev) { |
| 82 | + setBackground(colorNormal); |
| 83 | + } |
| 84 | + } |
| 85 | + |
| 86 | + public Dimension preferredSize() { |
| 87 | + return new Dimension(50, 50); |
| 88 | + } |
| 89 | +} |
| 90 | + |
| 91 | +class MouseFrame extends Frame { |
| 92 | + public MouseFrame() { |
| 93 | + super("MouseDragTest"); |
| 94 | + new MouseChecker(this); |
| 95 | + setLayout(new FlowLayout()); |
| 96 | + add(new HeavySquare(Color.red)); |
| 97 | + add(new HeavySquare(Color.blue)); |
| 98 | + setBounds(new Rectangle(20, 20, 400, 300)); |
| 99 | + } |
| 100 | +} |
| 101 | + |
| 102 | +public class MouseDragTest { |
| 103 | + static Frame TestFrame; |
| 104 | + |
| 105 | + public MouseDragTest() { |
| 106 | + TestFrame = new MouseFrame(); |
| 107 | + } |
| 108 | + |
| 109 | + public static void main(String[] args) throws Exception { |
| 110 | + String INSTRUCTIONS = """ |
| 111 | + 1. A frame with two boxes will appear. Click and drag _very_ quickly |
| 112 | + off one of the components. You will know you were quick enough |
| 113 | + when the component you dragged off of turns green |
| 114 | + 2. Repeat this several times on both boxes, ensuring you get them |
| 115 | + to turn green. The components should revert to their original |
| 116 | + color when you release the mouse |
| 117 | + 3. The test FAILS if the component doesn't revert to original |
| 118 | + color, else PASS. |
| 119 | + """; |
| 120 | + PassFailJFrame.builder() |
| 121 | + .title("Test Instructions") |
| 122 | + .instructions(INSTRUCTIONS) |
| 123 | + .rows((int) INSTRUCTIONS.lines().count() + 2) |
| 124 | + .columns(35) |
| 125 | + .testUI(new MouseFrame()) |
| 126 | + .build() |
| 127 | + .awaitAndCheck(); |
| 128 | + } |
| 129 | +} |
| 130 | + |
| 131 | +class MouseChecker implements MouseListener, MouseMotionListener { |
| 132 | + private boolean isPressed = false; |
| 133 | + private MouseEvent evPrev = null; |
| 134 | + private MouseEvent evPrevPrev = null; |
| 135 | + |
| 136 | + public MouseChecker(Component comp) { |
| 137 | + comp.addMouseListener(this); |
| 138 | + comp.addMouseMotionListener(this); |
| 139 | + } |
| 140 | + |
| 141 | + private void recordEv(MouseEvent ev) { |
| 142 | + evPrevPrev = evPrev; |
| 143 | + evPrev = ev; |
| 144 | + } |
| 145 | + |
| 146 | + private synchronized void failure(String str) { |
| 147 | + PassFailJFrame.forceFail("Test Failed : "+str); |
| 148 | + } |
| 149 | + |
| 150 | + public void mouseClicked(MouseEvent ev) { |
| 151 | + if (!(evPrev.getID() == MouseEvent.MOUSE_RELEASED && |
| 152 | + evPrevPrev.getID() == MouseEvent.MOUSE_PRESSED)) { |
| 153 | + failure("Got mouse click without press/release preceding."); |
| 154 | + } |
| 155 | + recordEv(ev); |
| 156 | + } |
| 157 | + |
| 158 | + public void mousePressed(MouseEvent ev) { |
| 159 | + recordEv(ev); |
| 160 | + if (isPressed) { |
| 161 | + failure("Got two mouse presses without a release."); |
| 162 | + } |
| 163 | + isPressed = true; |
| 164 | + } |
| 165 | + |
| 166 | + public void mouseReleased(MouseEvent ev) { |
| 167 | + recordEv(ev); |
| 168 | + if (!isPressed) { |
| 169 | + failure("Got mouse release without being pressed."); |
| 170 | + } |
| 171 | + isPressed = false; |
| 172 | + } |
| 173 | + |
| 174 | + public void mouseEntered(MouseEvent ev) { |
| 175 | + recordEv(ev); |
| 176 | + Point mousePt = ev.getPoint(); |
| 177 | + Component comp = (Component) ev.getSource(); |
| 178 | + Dimension size = comp.getSize(); |
| 179 | + boolean inBounds = |
| 180 | + (mousePt.x >= 0 && mousePt.x <= size.width && |
| 181 | + mousePt.y >= 0 && mousePt.y <= size.height); |
| 182 | + |
| 183 | + if (!inBounds) { |
| 184 | + failure("Got mouse entered, but mouse not inside component."); |
| 185 | + } |
| 186 | + } |
| 187 | + |
| 188 | + public void mouseExited(MouseEvent ev) { |
| 189 | + recordEv(ev); |
| 190 | + Point mousePt = ev.getPoint(); |
| 191 | + Component comp = (Component) ev.getSource(); |
| 192 | + if (comp instanceof Frame) { |
| 193 | + return; |
| 194 | + } |
| 195 | + Dimension size = comp.getSize(); |
| 196 | + boolean isOnChild = (comp != comp.getComponentAt(mousePt)); |
| 197 | + boolean inBounds = |
| 198 | + (mousePt.x >= 0 && mousePt.x <= size.width && |
| 199 | + mousePt.y >= 0 && mousePt.y <= size.height); |
| 200 | + if (!isOnChild && inBounds) { |
| 201 | + failure("Got mouse exit, but mouse still inside component."); |
| 202 | + } |
| 203 | + } |
| 204 | + |
| 205 | + public void mouseDragged(MouseEvent ev) { |
| 206 | + recordEv(ev); |
| 207 | + if (!isPressed) { |
| 208 | + failure("Got drag without a press first."); |
| 209 | + } |
| 210 | + } |
| 211 | + |
| 212 | + public void mouseMoved(MouseEvent ev) { |
| 213 | + recordEv(ev); |
| 214 | + } |
| 215 | +} |
0 commit comments