-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0_01, 1.4.1, 1.4.1_03, 1.4.2
-
beta
-
x86
-
windows_nt, windows_2000, windows_xp
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2119449 | 5.0u3 | Alexander Zuev | P3 | Closed | Won't Fix |
Name: jk109818 Date: 09/04/2003
FULL PRODUCT VERSION :
java version "1.4.1_02"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_02-b06)
Java HotSpot(TM) Client VM (build 1.4.1_02-b06, mixed mode)
FULL OS VERSION :
Microsoft Windows XP [Version 5.1.2600]
A DESCRIPTION OF THE PROBLEM :
This problem happens on j2se1.4.1_02 and j2se1.4.2, but doesn't happen on j2se1.3.1_07.
The accelerator (eg. control o) of a JMenuItem doesn't work when its parent JMenuBar is inside a JDialog. The accelarator only works when its parent JMenuBar is inside a JFrame.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Run the attached test case
2. When the dialog is visible, press "control o"
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
The message "ActionPerformed: Open" should be displayed in the command console, even if the pull down "File" menu is not visible.
ACTUAL -
Nothing
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
import java.awt.event.*;
public class DialogTest extends JFrame implements ActionListener {
public DialogTest() {
super("Dialog Test");
setSize(30, 20);
JMenu menu = new JMenu("File");
menu.setMnemonic('f');
JMenuItem menuItem = new JMenuItem("Open");
menuItem.setMnemonic('o');
menuItem.setAccelerator(KeyStroke.getKeyStroke("control O"));
menuItem.addActionListener(this);
JMenuBar menuBar = new JMenuBar();
menu.add(menuItem);
menuBar.add(menu);
JDialog dialog = new JDialog(this, "My Dialog", true);
dialog.setJMenuBar(menuBar);
dialog.setBounds(100, 100, 100, 100);
dialog.setVisible(true);
}
public void actionPerformed(ActionEvent e){
System.out.println("ActionPerformed: " + e.getActionCommand());
}
public static void main(String [] args) {
try {
UIManager.setLookAndFeel(UIManager.
getSystemLookAndFeelClassName());
}
catch (Exception e) {
// do nothing
}
DialogTest test = new DialogTest();
test.setVisible(true);
}
}
---------- END SOURCE ----------
Release Regression From : 1.3.1_08
The above release value was the last known release where this
bug was known to work. Since then there has been a regression.
(Incident Review ID: 193178)
======================================================================
- backported by
-
JDK-2119449 1.4 REGRESSION: MenuItem accelerator doesn't work if parent menu is in JDialog
-
- Closed
-
- duplicates
-
JDK-4890215 1.4 REGRESSION: Launching native dialog from modal dialog causes focus bug
-
- Closed
-
-
JDK-5043506 JRootPane only gets key events if content pane contains input fields
-
- Closed
-
-
JDK-4897272 setMnemonic on JButton makes it "clickable" under modal JDialog
-
- Closed
-