|
| 1 | +/* |
| 2 | + * Copyright (c) 2005, 2025, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +/* |
| 25 | + * @test |
| 26 | + * @bug 6298940 |
| 27 | + * @key headful |
| 28 | + * @summary Tests that mnemonic keystroke fires an action |
| 29 | + * @library /javax/swing/regtesthelpers |
| 30 | + * @build Util |
| 31 | + * @run main bug6298940 |
| 32 | + */ |
| 33 | + |
| 34 | +import java.awt.Robot; |
| 35 | +import java.awt.event.KeyEvent; |
| 36 | +import java.util.concurrent.CountDownLatch; |
| 37 | + |
| 38 | +import javax.swing.ButtonModel; |
| 39 | +import javax.swing.DefaultButtonModel; |
| 40 | +import javax.swing.JButton; |
| 41 | +import javax.swing.JFrame; |
| 42 | +import javax.swing.SwingUtilities; |
| 43 | + |
| 44 | +import static java.util.concurrent.TimeUnit.SECONDS; |
| 45 | + |
| 46 | +public final class bug6298940 { |
| 47 | + private static JFrame frame; |
| 48 | + |
| 49 | + private static final CountDownLatch actionEvent = new CountDownLatch(1); |
| 50 | + |
| 51 | + private static void createAndShowGUI() { |
| 52 | + ButtonModel model = new DefaultButtonModel(); |
| 53 | + model.addActionListener(event -> { |
| 54 | + System.out.println("ActionEvent"); |
| 55 | + actionEvent.countDown(); |
| 56 | + }); |
| 57 | + model.setMnemonic('T'); |
| 58 | + |
| 59 | + JButton button = new JButton("Test"); |
| 60 | + button.setModel(model); |
| 61 | + |
| 62 | + frame = new JFrame("bug6298940"); |
| 63 | + frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
| 64 | + frame.add(button); |
| 65 | + frame.pack(); |
| 66 | + frame.setLocationRelativeTo(null); |
| 67 | + frame.setVisible(true); |
| 68 | + frame.toFront(); |
| 69 | + } |
| 70 | + |
| 71 | + public static void main(String[] args) throws Exception { |
| 72 | + Robot robot = new Robot(); |
| 73 | + |
| 74 | + SwingUtilities.invokeAndWait(bug6298940::createAndShowGUI); |
| 75 | + |
| 76 | + robot.waitForIdle(); |
| 77 | + robot.delay(500); |
| 78 | + |
| 79 | + Util.hitMnemonics(robot, KeyEvent.VK_T); |
| 80 | + |
| 81 | + try { |
| 82 | + if (!actionEvent.await(1, SECONDS)) { |
| 83 | + throw new RuntimeException("Mnemonic didn't fire an action"); |
| 84 | + } |
| 85 | + } finally { |
| 86 | + SwingUtilities.invokeAndWait(() -> { |
| 87 | + if (frame != null) { |
| 88 | + frame.dispose(); |
| 89 | + } |
| 90 | + }); |
| 91 | + } |
| 92 | + } |
| 93 | +} |
1 commit comments
openjdk-notifier[bot] commentedon Mar 20, 2025
Review
Issues