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
|
/*
* Copyright (c) 2011, 2014, 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 6200670
@summary MouseMoved events are triggered by Choice when mouse is moved outside the component, XToolkit
@library ../../regtesthelpers/
@author andrei.dmitriev area=choice
@build Util
@run applet PopdownGeneratesMouseEvents.html
*/
import test.java.awt.regtesthelpers.Util;
import java.applet.Applet;
import java.awt.*;
import java.awt.event.*;
public class PopdownGeneratesMouseEvents extends Applet {
private volatile Robot robot;
private final Choice choice1 = new Choice();
private volatile MouseMotionHandler mmh;
public void init() {
for (int i = 1; i < 10; i++) {
choice1.add("item-0" + i);
}
choice1.setForeground(Color.RED);
choice1.setBackground(Color.RED);
mmh = new MouseMotionHandler();
choice1.addMouseMotionListener(mmh);
Button b1 = new Button("FirstButton");
Button b2 = new Button("SecondButton");
add(b1);
add(choice1);
add(b2);
setLayout (new FlowLayout());
}
public void start() {
setSize(300, 200);
setVisible(true);
validate();
String toolkit = Toolkit.getDefaultToolkit().getClass().getName();
/*
* Choice should not generate MouseEvents outside of Choice
* Test for XAWT only.
*/
try{
robot = new Robot();
robot.setAutoWaitForIdle(true);
robot.setAutoDelay(50);
if (toolkit.equals("sun.awt.X11.XToolkit")) {
testMouseMoveOutside();
} else {
System.out.println("This test is for XToolkit only. Now using "
+ toolkit + ". Automatically passed.");
return;
}
} catch (Throwable e) {
throw new RuntimeException("Test failed. Exception thrown: " + e);
}
System.out.println("Passed : Choice should not generate MouseEvents outside of Choice.");
}
private void testMouseMoveOutside() {
waitForIdle();
Point pt = choice1.getLocationOnScreen();
robot.mouseMove(pt.x + choice1.getWidth() / 2, pt.y + choice1.getHeight() / 2);
waitForIdle();
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.mouseRelease(InputEvent.BUTTON1_MASK);
waitForIdle();
Color color = robot.getPixelColor(pt.x + choice1.getWidth() / 2,
pt.y + 3 * choice1.getHeight());
if (!color.equals(Color.RED)) {
throw new RuntimeException("Choice wasn't opened with LEFTMOUSE button");
}
pt = getLocationOnScreen();
robot.mouseMove(pt.x + getWidth() * 2, pt.y + getHeight() * 2);
mmh.testStarted = true;
int x0 = pt.x + getWidth() * 3 / 2;
int y0 = pt.y + getHeight() * 3 / 2;
int x1 = pt.x + getWidth() * 2;
int y1 = pt.y + getHeight() * 2;
Util.mouseMove(robot, new Point(x0, y0), new Point(x1, y0));
Util.mouseMove(robot, new Point(x1, y0), new Point(x1, y1));
waitForIdle();
//close opened choice
robot.keyPress(KeyEvent.VK_ESCAPE);
robot.keyRelease(KeyEvent.VK_ESCAPE);
}
private void waitForIdle() {
Util.waitForIdle(robot);
robot.delay(500);
}
}
class MouseMotionHandler extends MouseMotionAdapter {
public volatile boolean testStarted;
public void mouseMoved(MouseEvent ke) {
if (testStarted) {
throw new RuntimeException("Test failed: Choice generated MouseMove events while moving mouse outside of Choice");
}
}
public void mouseDragged(MouseEvent ke) {
}
}
|