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
|
/*
* Copyright (c) 1998, 2017, 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.*;
import java.awt.event.*;
/**
* @test
* @key headful
* @bug 4449139
* @summary test MouseWheelEvent generation by Scrollbar component
*/
public final class ScrollbarMouseWheelTest
implements MouseWheelListener, WindowListener {
final static String tk = Toolkit.getDefaultToolkit().getClass().getName();
final static int REPS = 5;
// There is a bug on Windows: 4616935.
// Wheel events comes to every component in the hierarchy so we should
// check a platform.
// There are two scrollbars within one Panel and both accept 5 clicks, so
// Panel would accept 5*2 clicks on Windows.
final static int PANEL_REPS = tk.equals("sun.awt.windows.WToolkit")? REPS * 2: REPS;
Scrollbar sb1;
Scrollbar sb2;
Panel pnl;
class Sema {
boolean flag;
boolean getVal() { return flag;}
void setVal(boolean b) { flag = b;}
}
Sema sema = new Sema();
Robot robot;
int sb1upevents, sb2upevents, pnlupevents;
int sb1downevents, sb2downevents, pnldownevents;
public static void main(final String[] args) {
new ScrollbarMouseWheelTest().test();
}
public void test() {
// Move mouse to upper-right area
try {
robot = new Robot();
} catch (AWTException e) {
System.out.println("Problem creating Robot. FAIL.");
throw new RuntimeException("Problem creating Robot. FAIL.");
}
robot.setAutoDelay(500);
robot.setAutoWaitForIdle(true);
// Show test Frame
Frame frame = new Frame("ScrollbarMouseWheelTest");
frame.addWindowListener(this);
pnl = new Panel();
pnl.setLayout(new GridLayout(1, 2));
pnl.addMouseWheelListener(this);
sb1 = new Scrollbar();
sb1.addMouseWheelListener(this);
pnl.add(sb1);
sb2 = new Scrollbar();
pnl.add(sb2);
frame.add(pnl);
frame.setSize(200, 400);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
frame.toFront();
// When Frame is active, start testing (handled in windowActivated())
while (true) {
synchronized (sema) {
if (sema.getVal()) {
break;
}
}
}
// up on sb1
testComp(sb1, true);
// down on sb1
testComp(sb1, false);
// up on sb2
testComp(sb2, true);
// down on sb2
testComp(sb2, false);
frame.dispose();
System.out.println("Test done.");
if (sb1upevents == REPS &&
sb2upevents == 0 &&
pnlupevents == PANEL_REPS &&
sb1downevents == REPS &&
sb2downevents == 0 &&
pnldownevents == PANEL_REPS) {
System.out.println("PASSED.");
} else {
System.out.println("Test Failed:" +
"\n\tsb1upevents =" + sb1upevents +
"\n\tsb2upevents = " + sb2upevents +
"\n\tpnlupevents = " + pnlupevents +
"\n\tsb1downevents =" + sb1downevents +
"\n\tsb2downevents = " + sb2downevents +
"\n\tpnldownevents = " + pnldownevents);
throw new RuntimeException("Test FAILED.");
}
}
public void testComp(Component comp, boolean up) {
Point loc = comp.getLocationOnScreen();
robot.mouseMove(loc.x + comp.getWidth() / 2,
loc.y + comp.getHeight() / 2);
for (int loop = 0; loop < REPS; loop++) {
System.out.println("Robot.mouseWheel() on " + comp.getName());
robot.mouseWheel(up ? -1 : 1);
}
}
public void mouseWheelMoved(MouseWheelEvent mwe) {
Component src = mwe.getComponent();
System.out.println("mouseWheelMoved() on " + src.getName());
if (mwe.getWheelRotation() == -1) {
if (src == sb1) {
sb1upevents++;
} else if (src == sb2) {
sb2upevents++;
} else if (src == pnl) {
pnlupevents++;
} else {
System.out.println("weird source component");
}
} else if (mwe.getWheelRotation() == 1) {
if (src == sb1) {
sb1downevents++;
} else if (src == sb2) {
sb2downevents++;
} else if (src == pnl) {
pnldownevents++;
} else {
System.out.println("weird source component");
}
} else {
System.out.println("weird wheel rotation");
}
}
public void windowActivated(WindowEvent we) {
synchronized (sema) {
sema.setVal(true);
}
}
public void windowClosed(WindowEvent we) {}
public void windowClosing(WindowEvent we) {}
public void windowDeactivated(WindowEvent we) {}
public void windowDeiconified(WindowEvent we) {}
public void windowIconified(WindowEvent we) {}
public void windowOpened(WindowEvent we) {}
}// class ScrollbarMouseWheelTest
|