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
|
/*
* Copyright (c) 2003, 2019, 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.io.File;
import java.awt.image.BufferedImage;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.event.InputEvent;
import javax.swing.JFrame;
import javax.swing.JSpinner;
import javax.swing.SpinnerModel;
import javax.swing.SpinnerNumberModel;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.imageio.ImageIO;
import static javax.swing.UIManager.getInstalledLookAndFeels;
/**
* @test
* @bug 4788637 7124307
* @key headful
* @summary JSpinner buttons don't conform to most platform conventions
*/
public final class bug4788637 {
private static JSpinner spinner;
private static JFrame fr;
private static Robot robot;
private int step = 0;
private volatile boolean spinnerValueChanged[] = {false, false, false};
private static volatile Point p;
private static volatile Rectangle rect;
public static void main(final String[] args) throws Exception {
robot = new Robot();
robot.setAutoDelay(100);
robot.setAutoWaitForIdle(true);
for (final UIManager.LookAndFeelInfo laf : getInstalledLookAndFeels()) {
SwingUtilities.invokeAndWait(() -> setLookAndFeel(laf));
bug4788637 app = new bug4788637();
try {
SwingUtilities.invokeAndWait(app::createAndShowGUI);
robot.waitForIdle();
robot.delay(1000);
SwingUtilities.invokeAndWait(()-> {
spinner.requestFocus();
p = spinner.getLocationOnScreen();
rect = spinner.getBounds();
});
app.start();
} finally {
SwingUtilities.invokeAndWait(app::destroy);
}
}
}
public void createAndShowGUI() {
fr = new JFrame("Test");
fr.setLayout( new GridBagLayout() );
SpinnerModel model = new SpinnerNumberModel(50, 1, 100, 1);
spinner = new JSpinner(model);
fr.add(spinner,new GridBagConstraints());
spinner.addChangeListener(new ChangeListener() {
public void stateChanged(ChangeEvent e) {
synchronized (bug4788637.this) {
spinnerValueChanged[step] = true;
bug4788637.this.notifyAll();
}
}
});
fr.setSize(200, 200);
fr.setLocationRelativeTo(null);
fr.setVisible(true);
fr.toFront();
}
public void start() {
try {
Thread.sleep(1000);
System.out.println("p " + p + " rect " + rect);
// Move mouse to the up arrow button
robot.mouseMove(p.x+rect.width-3, p.y+3);
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
synchronized (bug4788637.this) {
if (!spinnerValueChanged[step]) {
bug4788637.this.wait(3000);
}
}
// Move mouse out of JSpinner
robot.mouseMove(p.x+rect.width-3, p.y-3);
synchronized (bug4788637.this) {
step++;
if (!spinnerValueChanged[step]) {
bug4788637.this.wait(3000);
}
}
robot.waitForIdle();
// Move mouse to the up arrow button
robot.mouseMove(p.x+rect.width-3, p.y+3);
synchronized (bug4788637.this) {
step++;
if (!spinnerValueChanged[step]) {
bug4788637.this.wait(3000);
}
}
robot.waitForIdle();
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
robot.waitForIdle();
} catch(Throwable t) {
throw new RuntimeException(t);
}
}
public void destroy() {
fr.dispose();
synchronized (bug4788637.this) {
if (!spinnerValueChanged[0] ||
spinnerValueChanged[1] ||
!spinnerValueChanged[2]) {
System.out.println("!spinnerValueChanged[0] " + !spinnerValueChanged[0] +
" spinnerValueChanged[1] " + spinnerValueChanged[1] +
" !spinnerValueChanged[2] " + !spinnerValueChanged[2]);
try {
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Rectangle screen = new Rectangle(0, 0, (int) screenSize.getWidth(), (int) screenSize.getHeight());
BufferedImage fullScreen = robot.createScreenCapture(screen);
ImageIO.write(fullScreen, "png", new File("fullScreen.png"));
} catch (Exception e) {}
throw new Error("JSpinner buttons don't conform to most platform conventions");
}
}
}
private static void setLookAndFeel(final UIManager.LookAndFeelInfo laf) {
try {
UIManager.setLookAndFeel(laf.getClassName());
System.out.println("LookAndFeel: " + laf.getClassName());
} catch (ClassNotFoundException | InstantiationException |
UnsupportedLookAndFeelException | IllegalAccessException e) {
throw new RuntimeException(e);
}
}
}
|