Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8326458: Menu mnemonics don't toggle in Windows LAF when F10 is pressed #17961

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please, update the copyright year.

Original file line number Diff line number Diff line change
@@ -147,9 +147,6 @@ public void actionPerformed(ActionEvent e) {
MenuSelectionManager msm =
MenuSelectionManager.defaultManager();
MenuElement[] selectedPath = msm.getSelectedPath();
//MenuElement[] path = new MenuElement[2];
//path[0] = (MenuElement)menuBar;
//path[1] = (MenuElement)menu;
if (selectedPath.length > 0 && (selectedPath[0] instanceof JMenuBar)) {
msm.clearSelectedPath();
WindowsLookAndFeel.setMnemonicHidden(true);
133 changes: 133 additions & 0 deletions test/jdk/javax/swing/JMenu/TestMenuMnemonic.java
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're modifying WindowsMenuBarUI, so the test belongs under JMenuBar.

Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
/*
* Copyright (c) 2024, 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 8326458
* @key headful
* @requires (os.family == "windows")
* @modules java.desktop/com.sun.java.swing.plaf.windows
* @summary Verifies if menu mnemonics toggle between show or hide
* on F10 press in windows LAF.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

“Between” implies “and” (instead of ”or”).

However, we can drop that part completely as “toggle” implies it changes from on to off and so on.

Suggested change
* @summary Verifies if menu mnemonics toggle between show or hide
* on F10 press in windows LAF.
* @summary Verifies if menu mnemonics toggle on F10 press in Windows LAF

* @run main TestMenuMnemonic
*/

import java.awt.event.KeyEvent;
import java.awt.Robot;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuItem;
import javax.swing.JMenuBar;
import javax.swing.MenuElement;
import javax.swing.MenuSelectionManager;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import com.sun.java.swing.plaf.windows.WindowsLookAndFeel;

public class TestMenuMnemonic {

private static JFrame frame;
private static JMenuBar menuBar;
private static JMenu fileMenu;
private static JMenu editMenu;
private static JMenuItem item1;
private static JMenuItem item2;
private static int expectedMnemonicShowHideCount = 5;

public static void main(String[] args) throws Exception {
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
Robot robot = new Robot();
robot.setAutoDelay(100);
int mnemonicHideCount = 0;
int mnemonicShowCount = 0;
try {
SwingUtilities.invokeAndWait(() -> {
createAndShowUI();
});
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm for using method references:

Suggested change
SwingUtilities.invokeAndWait(() -> {
createAndShowUI();
});
SwingUtilities.invokeAndWait(TestMenuMnemonic::createAndShowUI);


robot.waitForIdle();
robot.delay(1000);

for (int i = 0; i < 10; i++) {
robot.keyPress(KeyEvent.VK_F10);
robot.waitForIdle();
robot.delay(50);
robot.keyRelease(KeyEvent.VK_F10);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should add robot.waitForIdle() to allow the test to process the key release event.

MenuSelectionManager msm =
MenuSelectionManager.defaultManager();
MenuElement[] selectedPath = msm.getSelectedPath();
if (WindowsLookAndFeel.isMnemonicHidden()) {
mnemonicHideCount++;
// check if selection is cleared when mnemonics are hidden
if (selectedPath.length != 0) {
throw new RuntimeException("Menubar is active even after" +
" mnemonics are hidden");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
throw new RuntimeException("Menubar is active even after" +
" mnemonics are hidden");
throw new RuntimeException("Menubar is active after" +
" mnemonics are hidden");

Is the line too long without wrapping?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the line too long without wrapping?

It's around 100 columns.. so wrapping looks good to me.

}
} else {
mnemonicShowCount++;
if (selectedPath.length == 0 &&
(selectedPath[0] != menuBar || selectedPath[1] != fileMenu)) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (selectedPath.length == 0 &&
(selectedPath[0] != menuBar || selectedPath[1] != fileMenu)) {
if (selectedPath.length != 2
|| selectedPath[0] != menuBar
|| selectedPath[1] != fileMenu) {

You expect the selected path length to be 2 — if it's not, it's a failure.

throw new RuntimeException("No Menu and Menubar is active when" +
" mnemonics are shown");
}
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Swing is not thread-safe therefore MenuSelectionManager as well as WindowsLookAndFeel.isMnemonicHidden() are to be called on EDT.

Because of that, you should use AtomicInteger and its getAndIncrement() method to increase the counter; then use get() to get the accumulated value on the main thread to verify.

robot.waitForIdle();
robot.delay(1000);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's no need for any delays after the for-loop.

if (mnemonicShowCount != expectedMnemonicShowHideCount
&& mnemonicHideCount != expectedMnemonicShowHideCount) {
throw new RuntimeException("Mismatch in Mnemonic show/hide on F10 press");
}


} finally {
SwingUtilities.invokeAndWait(() -> {
if (frame != null) {
frame.dispose();
}
});
}
}

private static void createAndShowUI() {
frame = new JFrame("Test Menu Mnemonic Show/Hide");
menuBar = new JMenuBar();
fileMenu = new JMenu("File");
editMenu = new JMenu("Edit");
fileMenu.setMnemonic(KeyEvent.VK_F);
editMenu.setMnemonic(KeyEvent.VK_E);
item1 = new JMenuItem("Item 1");
item2 = new JMenuItem("Item 2");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

editMenu as well as item1 and item2 aren't used outside of this method — convert them to local variables.

fileMenu.add(item1);
fileMenu.add(item2);
menuBar.add(fileMenu);
menuBar.add(editMenu);
frame.setJMenuBar(menuBar);
frame.pack();
frame.setSize(250, 200);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
frame.pack();
frame.setSize(250, 200);
frame.setSize(250, 200);

You set the size, pack is redundant.

frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}