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
|
/*
* Copyright (c) 2002, 2023, 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 4648816
@summary Sometimes focus requests on LW components are delayed
@key headful
@run main SequencedLightweightRequestsTest
*/
import java.awt.AWTException;
import java.awt.Dialog;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.FlowLayout;
import java.awt.Frame;
import java.awt.Point;
import java.awt.Robot;
import java.awt.TextArea;
import java.awt.event.FocusAdapter;
import java.awt.event.FocusEvent;
import java.awt.event.FocusListener;
import java.awt.event.InputEvent;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;
public class SequencedLightweightRequestsTest implements FocusListener {
final int WAIT_TIME = 5000;
JFrame testFrame;
JButton testButton1;
JButton testButton2;
JTextField testField;
public void focusGained(FocusEvent fe) {
System.err.println("FocusGained on " + fe.getComponent().getName());
}
public void focusLost(FocusEvent fe) {
System.err.println("FocusLost on " + fe.getComponent().getName());
}
public static void main(String[] args) throws Exception {
SequencedLightweightRequestsTest test =
new SequencedLightweightRequestsTest();
test.start();
}
public void start() throws Exception {
try {
SwingUtilities.invokeAndWait(() -> {
testFrame = new JFrame("See my components!");
testButton1 = new JButton("Click me!");
testButton2 = new JButton("Do I have focus?");
testField = new JTextField("Do I have focus?");
testFrame.getContentPane().setLayout(new FlowLayout());
testFrame.getContentPane().add(testButton1);
testFrame.getContentPane().add(testField);
testFrame.getContentPane().add(testButton2);
testButton1.setName("Button1");
testButton2.setName("Button2");
testField.setName("textField");
testButton1.addFocusListener(this);
testButton2.addFocusListener(this);
testField.addFocusListener(this);
testFrame.addFocusListener(this);
testFrame.setSize(300, 100);
testFrame.setLocationRelativeTo(null);
testFrame.setVisible(true);
});
Robot robot = new Robot();
robot.setAutoDelay(100);
robot.setAutoWaitForIdle(true);
// wait to give to frame time for showing
robot.delay(1000);
// make sure that first button has focus
Object monitor = new Object();
MonitoredFocusListener monitorer =
new MonitoredFocusListener(monitor);
Point origin = testButton1.getLocationOnScreen();
Dimension dim = testButton1.getSize();
robot.mouseMove((int)origin.getX() + (int)dim.getWidth()/2,
(int)origin.getY() + (int)dim.getHeight()/2);
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.mouseRelease(InputEvent.BUTTON1_MASK);
if (!testButton1.isFocusOwner()) {
synchronized (monitor) {
testButton1.addFocusListener(monitorer);
monitor.wait(WAIT_TIME);
testButton1.removeFocusListener(monitorer);
}
}
// if first button still doesn't have focus, test fails
if (!testButton1.isFocusOwner()) {
throw new RuntimeException("First button doesn't receive focus");
}
// two lightweight requests
java.awt.EventQueue.invokeAndWait(new Runnable() {
public void run() {
testButton2.requestFocus();
testField.requestFocus();
}
});
// make sure third button receives focus
if (!testField.isFocusOwner()) {
synchronized (monitor) {
testField.addFocusListener(monitorer);
monitor.wait(WAIT_TIME);
testField.removeFocusListener(monitorer);
}
}
// if the text field still doesn't have focus, test fails
if (!testField.isFocusOwner()) {
throw new RuntimeException("Text field doesn't receive focus");
}
System.out.println("Test PASSED");
} finally {
SwingUtilities.invokeAndWait(() -> {
if (testFrame != null) {
testFrame.dispose();
}
});
}
}
}// class SequencedLightweightRequestsTest
class MonitoredFocusListener extends FocusAdapter {
Object monitor;
public MonitoredFocusListener(Object monitor) {
this.monitor = monitor;
}
public void focusGained(FocusEvent fe) {
synchronized (monitor) {
monitor.notify();
}
}
}
|