-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.1, 5.0
-
generic, x86
-
generic, windows_2000
Name: jk109818 Date: 10/24/2002
FULL PRODUCT VERSION :
java version "1.4.0_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0_01-b03)
Java HotSpot(TM) Client VM (build 1.4.0_01-b03, mixed mode)
AND
java version "1.4.1_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)
FULL OPERATING SYSTEM VERSION :
Microsoft Windows 2000 [Version 5.00.2195]
Windows Update is fully up-to-date
A DESCRIPTION OF THE PROBLEM :
Neither of ...
JFileChooser.setApproveButtonMnemonic( char mnemonic )
JFileChooser.setApproveButtonMnemonic( int mnemonic )
... succeed in setting a mnemonic that works with the Alt
key, at least in the Windows L&F and maybe others.
In fact mnemonic support doesn't seem to work throughout
the JFileChooser dialog
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Get standard Java example:
http://java.sun.com/docs/books/tutorial/uiswing/components/e
xample-swing/FileChooserDemo.java
2. Insert the following at line 22 just after the fc =
new JFileChooser() line ...
fc.setApproveButtonMnemonic('P');
fc.setApproveButtonMnemonic(KeyEvent.VK_P);
3. Compile
4. Run and press the 'Open a File' button to dislay
the File Open dialog
EXPECTED VERSUS ACTUAL BEHAVIOR :
Open button should have the 'p' underlined and respond to
<Alt-P> as though the Open button had been pressed.
Instead, <Alt-P> moves the selected file to the first file
beginning with 'P', as though just <P> had been pressed.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.filechooser.*;
public class FileChooserDemo extends JFrame {
public FileChooserDemo() {
super("FileChooserDemo");
//Create a file chooser
JFileChooser fc = new JFileChooser();
//fc.setApproveButtonMnemonic('P');
//fc.setApproveButtonText("Phooey");
fc.setApproveButtonMnemonic(KeyEvent.VK_P);
fc.showOpenDialog(this);
}
public static void main(String[] args) {
try{
//UIManager.setLookAndFeel(
// "com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
//} catch(Exception e){}
JFrame frame = new FileChooserDemo();
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
frame.pack();
frame.setVisible(true);
}
}
---------- END SOURCE ----------
(Review ID: 165441)
======================================================================
- duplicates
-
JDK-5003821 shortcut for Select button on Temorary Files Location dialog does not work
-
- Closed
-
-
JDK-6297220 JFileChooser.setApproveButtonMnemonic() does not set the mnemonic key
-
- Closed
-