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
|
/*
* Copyright (c) 2005, 2024, 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.Frame;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.Label;
import java.awt.Toolkit;
import java.awt.Window;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.StringSelection;
import java.awt.datatransfer.Transferable;
import java.awt.dnd.DnDConstants;
import java.awt.dnd.DragGestureListener;
import java.awt.dnd.DragSource;
import java.awt.dnd.DropTarget;
import java.awt.dnd.DropTargetAdapter;
import java.awt.dnd.DropTargetDropEvent;
import java.util.List;
import javax.swing.JOptionPane;
/*
* @test
* @bug 6179157
* @key multimon
* @summary Tests dnd to another screen
* @library /java/awt/regtesthelpers
* @build PassFailJFrame
* @run main/manual DragToAnotherScreenTest
*/
public class DragToAnotherScreenTest {
private static Label label0;
private static Label label1;
private static final int HGAP = 20;
private static final String INSTRUCTIONS = """
The following test is applicable for Single as well
as Multi-monitor screens.
It is a semi-automated test, the test will prompt
the user whether the drag and drop action was successful or not
and automatically PASS/FAIL the test.
If on multi-monitor screens then please position
the drag and drop windows on different screens.
If you can not move the mouse from the frame "Drag Source"
to the frame "Drop Target" press PASS,
else proceed to the next step.
Drag the label "Drag me" and drop it on the
label "Drop on me".
If you can not drag to the second label (for example
if you can not drag across screens) press FAIL.
After the drag and drop action, the test displays
Success/Failure msg in JOptionPane.
Click on OK button and the test is configured to
automatically PASS/FAIL.
""";
public static void main(String[] args) throws Exception {
PassFailJFrame.builder()
.title("Test Instructions")
.instructions(INSTRUCTIONS)
.columns(35)
.testUI(DragToAnotherScreenTest::createAndShowUI)
.positionTestUI(DragToAnotherScreenTest::positionMultiTestUI)
.logArea(10)
.build()
.awaitAndCheck();
}
private static List<Frame> createAndShowUI() {
PassFailJFrame.log("----- System Configuration ----");
PassFailJFrame.log("Toolkit:" + Toolkit.getDefaultToolkit()
.getClass()
.getName());
GraphicsDevice[] gd = GraphicsEnvironment.getLocalGraphicsEnvironment()
.getScreenDevices();
if (gd.length == 1) {
PassFailJFrame.log("Single Monitor");
} else {
PassFailJFrame.log("Multi-Monitor");
}
PassFailJFrame.log("--------------");
PassFailJFrame.log("Test logs:\n");
Frame frame0 = new Frame("Drag Source", gd[0].getDefaultConfiguration());
frame0.setSize(300, 300);
label0 = new Label("Drag me");
frame0.add(label0);
Frame frame1 = new Frame("Drop Target", gd[(gd.length > 1 ? 1 : 0)].getDefaultConfiguration());
frame1.setSize(300, 300);
label1 = new Label("Drop on me");
frame1.add(label1);
DragGestureListener dragGestureListener = dge -> dge.startDrag(null, new StringSelection(label0.getText()), null);
new DragSource().createDefaultDragGestureRecognizer(label0,
DnDConstants.ACTION_COPY, dragGestureListener);
DropTargetAdapter dropTargetAdapter = new DropTargetAdapter() {
public void drop(DropTargetDropEvent dtde) {
Transferable t = dtde.getTransferable();
if (t.isDataFlavorSupported(DataFlavor.stringFlavor)) {
dtde.acceptDrop(DnDConstants.ACTION_COPY);
try {
String str = (String) t.getTransferData(DataFlavor.stringFlavor);
label1.setText(str);
JOptionPane.showMessageDialog(frame0,
"getTransferData was successful",
"Test Passed", JOptionPane.PLAIN_MESSAGE);
} catch (Exception e) {
dtde.dropComplete(false);
e.printStackTrace();
PassFailJFrame.log("getTransferData() Failed");
JOptionPane.showMessageDialog(frame0,
"getTransferData() Failed",
"Test Failed", JOptionPane.ERROR_MESSAGE);
PassFailJFrame.forceFail("getTransferData() Failed");
}
dtde.dropComplete(true);
} else {
dtde.rejectDrop();
PassFailJFrame.log("stringFlavor is not supported by Transferable");
JOptionPane.showMessageDialog(frame0,
"stringFlavor is not supported by Transferable",
"Test Failed", JOptionPane.ERROR_MESSAGE);
PassFailJFrame.forceFail("stringFlavor is not supported by Transferable");
}
}
};
new DropTarget(label1, dropTargetAdapter);
return List.of(frame0, frame1);
}
private static void positionMultiTestUI(List<? extends Window> windows,
PassFailJFrame.InstructionUI instructionUI) {
int x = instructionUI.getLocation().x + instructionUI.getSize().width + HGAP;
for (Window w : windows) {
w.setLocation(x, instructionUI.getLocation().y);
x += w.getWidth() + HGAP;
}
}
}
|