1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
|
/*
* Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import java.awt.Button;
import java.awt.Component;
import java.awt.Cursor;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.Transferable;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.awt.dnd.DnDConstants;
import java.awt.dnd.DragGestureEvent;
import java.awt.dnd.DragGestureListener;
import java.awt.dnd.DragSource;
import java.awt.dnd.DragSourceDragEvent;
import java.awt.dnd.DragSourceDropEvent;
import java.awt.dnd.DragSourceEvent;
import java.awt.dnd.DragSourceListener;
import java.awt.dnd.DropTarget;
import java.awt.dnd.DropTargetContext;
import java.awt.dnd.DropTargetDragEvent;
import java.awt.dnd.DropTargetDropEvent;
import java.awt.dnd.DropTargetEvent;
import java.awt.dnd.DropTargetListener;
import java.awt.event.FocusAdapter;
import java.awt.event.FocusEvent;
import java.awt.event.InputEvent;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicReference;
import javax.imageio.ImageIO;
import javax.swing.JButton;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JInternalFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
/*
@test
@bug 4395279
@summary Tests that a drop target in InternalFrame functions properly
@key headful
@run main DropTargetInInternalFrameTest
*/
public class DropTargetInInternalFrameTest implements Serializable {
private static final CountDownLatch dropLatch = new CountDownLatch(1);
private static final CountDownLatch focusLatch = new CountDownLatch(1);
private static JFrame frame;
private static JInternalFrame sourceFrame;
private static JInternalFrame targetFrame;
private static DragSourcePanel dragSourcePanel;
private static DropTargetPanel dropTargetPanel;
private static Robot robot;
private static void createUI() {
frame = new JFrame("Test frame");
sourceFrame = new JInternalFrame("Source");
targetFrame = new JInternalFrame("Destination");
dragSourcePanel = new DragSourcePanel();
dropTargetPanel = new DropTargetPanel(dropLatch);
JDesktopPane desktopPane = new JDesktopPane();
sourceFrame.getContentPane().setLayout(new GridLayout(3, 1));
// add panels to content panes
sourceFrame.getContentPane().add(dragSourcePanel);
targetFrame.getContentPane().add(dropTargetPanel);
sourceFrame.setSize(200, 200);
targetFrame.setSize(200, 200);
targetFrame
.setLocation(sourceFrame.getX() + sourceFrame.getWidth() + 10,
sourceFrame.getY());
desktopPane.add(sourceFrame);
desktopPane.add(targetFrame);
frame.setTitle("Test frame");
frame.setBounds(200, 200, 450, 250);
frame.getContentPane().add(desktopPane);
frame.setAlwaysOnTop(true);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
sourceFrame.setVisible(true);
targetFrame.setVisible(true);
frame.setVisible(true);
dragSourcePanel.dragSourceButton.requestFocusInWindow();
}
public static void main(String[] argv) throws Exception {
SwingUtilities.invokeAndWait(DropTargetInInternalFrameTest::createUI);
robot = new Robot();
robot.setAutoDelay(50);
robot.setAutoWaitForIdle(true);
robot.waitForIdle();
if (!focusLatch.await(5, TimeUnit.SECONDS)) {
captureScreen();
SwingUtilities
.invokeAndWait(DropTargetInInternalFrameTest::disposeFrame);
System.out.println(
"Test failed, waited too long for the drag button to gain focus");
}
final AtomicReference<Point> p1Ref = new AtomicReference<>();
final AtomicReference<Point> p2Ref = new AtomicReference<>();
SwingUtilities.invokeAndWait(() -> {
final Point dragLocation =
dragSourcePanel.dragSourceButton.getLocationOnScreen();
Dimension d1 = dragSourcePanel.dragSourceButton.getSize();
dragLocation.translate(d1.width / 2, d1.height / 2);
p1Ref.set(dragLocation);
final Point dropLocation = dropTargetPanel.getLocationOnScreen();
dropLocation.translate(d1.width / 2, d1.height / 2);
p2Ref.set(dropLocation);
});
Point p1 = p1Ref.get();
Point p2 = p2Ref.get();
dragAndDrop(p1, p2);
if (!dropLatch.await(5, TimeUnit.SECONDS)) {
captureScreen();
System.out.println("Test Failed, Waited too long for the Drop to complete");
}
int calledMethods = dropTargetPanel.getCalledMethods();
SwingUtilities
.invokeAndWait(DropTargetInInternalFrameTest::disposeFrame);
System.out.println("CalledMethods = " + calledMethods);
if ((calledMethods & DropTargetPanel.ENTER_CALLED) == 0) {
throw new RuntimeException(
"Test Failed, DropTargetListener.dragEnter() not called");
}
if ((calledMethods & DropTargetPanel.OVER_CALLED) == 0) {
throw new RuntimeException(
"Test Failed, DropTargetListener.dragOver() not called");
}
if ((calledMethods & DropTargetPanel.DROP_CALLED) == 0) {
throw new RuntimeException(
"Test Failed, DropTargetListener.drop() not called.");
}
System.out.println("Test Passed");
}
private static void dragAndDrop(final Point p1, final Point p2) {
robot.mouseMove(p1.x, p1.y);
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
int dx = 1;
while (p1.x < p2.x) {
p1.translate(dx, 0);
robot.mouseMove(p1.x, p1.y);
dx++;
}
robot.mouseMove(p2.x, p2.y);
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
}
private static void captureScreen() {
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
try {
ImageIO.write(robot.createScreenCapture(
new Rectangle(0, 0, screenSize.width, screenSize.height)),
"png", new File("screenImage.png"));
} catch (IOException ignore) {
}
}
private static void disposeFrame() {
sourceFrame.dispose();
targetFrame.dispose();
frame.dispose();
}
private static class DragSourcePanel extends JPanel {
final Dimension preferredDimension = new Dimension(200, 100);
final DragSourceButton dragSourceButton = new DragSourceButton();
public DragSourcePanel() {
setLayout(new GridLayout(1, 1));
dragSourceButton.addFocusListener(new FocusAdapter() {
@Override
public void focusGained(final FocusEvent e) {
super.focusGained(e);
focusLatch.countDown();
}
});
add(dragSourceButton);
}
public Dimension getPreferredSize() {
return preferredDimension;
}
}
private static class DropTargetPanel extends JPanel
implements DropTargetListener {
public static final int ENTER_CALLED = 0x1;
public static final int OVER_CALLED = 0x2;
public static final int DROP_CALLED = 0x4;
private final Dimension preferredDimension = new Dimension(200, 100);
private final CountDownLatch dropLatch;
private volatile int calledMethods = 0;
public DropTargetPanel(final CountDownLatch dropLatch) {
this.dropLatch = dropLatch;
setDropTarget(new DropTarget(this, this));
}
public Dimension getPreferredSize() {
return preferredDimension;
}
public void dragEnter(DropTargetDragEvent dtde) {
calledMethods |= ENTER_CALLED;
}
public void dragOver(DropTargetDragEvent dtde) {
calledMethods |= OVER_CALLED;
}
public void dropActionChanged(DropTargetDragEvent dtde) {
}
public void dragExit(DropTargetEvent dte) {
}
public void drop(DropTargetDropEvent dtde) {
System.out.println("Drop!!!!!!!!!!!! ");
calledMethods |= DROP_CALLED;
DropTargetContext dtc = dtde.getDropTargetContext();
if ((dtde.getSourceActions() & DnDConstants.ACTION_COPY) != 0) {
dtde.acceptDrop(DnDConstants.ACTION_COPY);
} else {
dtde.rejectDrop();
}
DataFlavor[] dfs = dtde.getCurrentDataFlavors();
Component comp = null;
if (dfs != null && dfs.length >= 1) {
Transferable transfer = dtde.getTransferable();
try {
comp = (Component) transfer.getTransferData(dfs[0]);
} catch (Throwable e) {
e.printStackTrace();
dtc.dropComplete(false);
}
}
dtc.dropComplete(true);
add(comp);
dropLatch.countDown();
}
public int getCalledMethods() {
return calledMethods;
}
}
private static class DragSourceButton extends JButton
implements Serializable, Transferable, DragGestureListener,
DragSourceListener {
private final DataFlavor dataflavor =
new DataFlavor(Button.class, "DragSourceButton");
public DragSourceButton() {
this("DragSourceButton");
}
public DragSourceButton(String str) {
super(str);
DragSource ds = DragSource.getDefaultDragSource();
ds.createDefaultDragGestureRecognizer(this,
DnDConstants.ACTION_COPY,
this);
}
public void dragGestureRecognized(DragGestureEvent dge) {
dge.startDrag(new Cursor(Cursor.HAND_CURSOR), this, this);
}
public DataFlavor[] getTransferDataFlavors() {
return new DataFlavor[]{dataflavor};
}
public boolean isDataFlavorSupported(DataFlavor dflavor) {
return dataflavor.equals(dflavor);
}
public Object getTransferData(DataFlavor flavor)
throws UnsupportedFlavorException, IOException {
if (!isDataFlavorSupported(flavor)) {
throw new UnsupportedFlavorException(flavor);
}
Object retObj;
ByteArrayOutputStream baoStream = new ByteArrayOutputStream();
ObjectOutputStream ooStream = new ObjectOutputStream(baoStream);
ooStream.writeObject(this);
ByteArrayInputStream baiStream =
new ByteArrayInputStream(baoStream.toByteArray());
ObjectInputStream ois = new ObjectInputStream(baiStream);
try {
retObj = ois.readObject();
} catch (ClassNotFoundException e) {
e.printStackTrace();
throw new RuntimeException(e.toString());
}
return retObj;
}
@Override
public void dragEnter(final DragSourceDragEvent dsde) {
}
@Override
public void dragOver(final DragSourceDragEvent dsde) {
}
@Override
public void dropActionChanged(final DragSourceDragEvent dsde) {
}
@Override
public void dragExit(final DragSourceEvent dse) {
}
@Override
public void dragDropEnd(final DragSourceDropEvent dsde) {
}
}
}
|