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
|
/*
* Copyright (c) 2006, 2018, 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.
*/
/*
@test
@bug 6390326 8204946
@key headful
@summary REGRESSION: Broken mouse behaviour of menus partially outside the main window.
@run main MenuDragEvents
*/
import java.awt.AWTEvent;
import java.awt.AWTException;
import java.awt.BorderLayout;
import java.awt.Point;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.AWTEventListener;
import java.awt.event.InputEvent;
import java.awt.event.KeyEvent;
import java.awt.event.MouseEvent;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.WindowConstants;
import javax.swing.event.MenuDragMouseEvent;
import javax.swing.event.MenuDragMouseListener;
public class MenuDragEvents
{
//Declare things used in the test, like buttons and labels here
boolean mouseDragged = false;
boolean mouseEntered = false;
boolean mouseReleased = false;
boolean actionReceived = false;
public static void main(String[] args) {
MenuDragEvents test = new MenuDragEvents();
test.doTest();
}
public void doTest ()
{
Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener() {
public void eventDispatched(AWTEvent event) {
int id = event.getID();
if (id == MouseEvent.MOUSE_ENTERED || id == MouseEvent.MOUSE_EXITED) {
System.err.println(event);
}
}
}, AWTEvent.MOUSE_EVENT_MASK | AWTEvent.MOUSE_MOTION_EVENT_MASK);
JMenuBar mb = new JMenuBar();
JMenu m = new JMenu("A Menu");
mb.add(m);
JMenuItem i = new JMenuItem("A menu item",KeyEvent.VK_A);
m.add(i);
m = new JMenu("Another Menu");
mb.add(m);
i = new JMenuItem("Yet another menu item",KeyEvent.VK_Y);
m.add(i);
i.addMenuDragMouseListener(new MenuDragMouseListener() {
public void menuDragMouseDragged(MenuDragMouseEvent e) {
System.err.println(e);
mouseDragged = true;
}
public void menuDragMouseEntered(MenuDragMouseEvent e) {
System.err.println(e);
mouseEntered = true;
}
public void menuDragMouseReleased(MenuDragMouseEvent e) {
System.err.println(e);
mouseReleased = true;
}
// perhaps we need to test mouse exited too
// but this doesn't work even with tiger
public void menuDragMouseExited(MenuDragMouseEvent e) {
System.err.println(e);
}
});
i.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
System.err.println(ae);
actionReceived = true;
}
});
JFrame frame = new JFrame("Menu");
frame.setLayout (new BorderLayout ());
frame.setJMenuBar(mb);
frame.setSize(200, 200);
frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
frame.setVisible(true);
Robot r = null;
try {
r = new Robot();
r.setAutoDelay(50);
}
catch (AWTException ae) {
throw new RuntimeException(ae);
}
r.waitForIdle();
Point loc = m.getLocationOnScreen();
loc.x += m.getWidth() / 2;
loc.y += m.getHeight() / 2;
r.mouseMove(loc.x, loc.y);
r.mousePress(InputEvent.BUTTON1_MASK);
r.waitForIdle();
r.delay(1000);
Point loc2 = i.getLocationOnScreen();
loc2.x += i.getWidth() / 2;
loc2.y += i.getHeight() / 2;
// move from menu on menubar to menu item
dragMouse(r, loc, loc2);
r.mouseRelease(InputEvent.BUTTON1_MASK);
r.waitForIdle();
r.delay(1000);
if (!mouseEntered || !mouseDragged || !mouseReleased || !actionReceived) {
throw new RuntimeException("we expected to receive both mouseEntered and MouseDragged ("
+ mouseEntered + ", " + mouseDragged + ", " + mouseReleased
+ ", " + actionReceived + ")");
}
System.out.println("Test passed");
// dispose off the frame
frame.dispose();
}// doTest()
void dragMouse(Robot r, Point from, Point to) {
final int n_step = 10;
int step_x = (to.x - from.x) / n_step;
int step_y = (to.y - from.y) / n_step;
int x = from.x;
int y = from.y;
for (int idx = 0; idx < n_step; idx++) {
x += step_x;
y += step_y;
r.mouseMove(x, y);
r.delay(10);
}
if (x != to.x || y != to.y) {
r.mouseMove(to.x, to.y);
r.delay(10);
}
}
}// class MenuDragEvents
|