-
Bug
-
Resolution: Unresolved
-
P4
-
None
-
1.4.1
-
Fix Understood
-
x86
-
windows_98
Name: jk109818 Date: 02/21/2003
FULL PRODUCT VERSION :
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 :
Windows 98 [Version 4.10.1998]
A DESCRIPTION OF THE PROBLEM :
The three different types of menu items (JMenuItem,
JCheckBoxMenuItem, and JRadioButtonMenuItem) all render
differently when disabled under the Windows Look and Feel,
and all three are incorrect.
The correct appearance for a disabled menu item under
Windows is for both the label and accelerator key to appear
dark gray on top of a white "shadow" which is offset by one
pixel southeast.
JMenuItem displays its label correctly, but its accelerator
is just plain gray.
JCheckBoxMenuItem displays its label as plain gray, but its
accelerator is correct.
JRadioButtonMenuItem displays both its label and accelerator
incorrectly as plain gray.
Further, JRadioButtonMenuItem is using an incorrect icon and
does not line up properly with the other two types of menus.
It is shifted several pixels to the left.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Compile and run the attached test case on Windows (I am
running 98, but I believe it is broken on all of them).
Pull down the "File" menu.
EXPECTED VERSUS ACTUAL BEHAVIOR :
The menu items should all render identically (with the
exception of the icons), with all text using the standard
Windows disabled appearance, and line up properly. The
radio button and checkbox icons should look identical to
their Windows counterparts.
Instead, all three render differently, do not look like
normal Windows menus, and do not line up properly. The
radio button icon is incorrect (and ugly, if I may say so).
For an example of the correct Windows radio button icon,
check the Internet Explorer View/Text Size menu.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
public class Test {
public static void main(String[] arg) throws Exception {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
JFrame f = new JFrame("Test");
JMenuBar menuBar = new JMenuBar();
JMenu file = new JMenu("File");
JMenuItem test1 = new JMenuItem("MenuItem");
test1.setEnabled(false);
test1.setAccelerator(KeyStroke.getKeyStroke("F1"));
file.add(test1);
JCheckBoxMenuItem test2 = new JCheckBoxMenuItem("CheckBoxMenuItem");
test2.setSelected(true);
test2.setEnabled(false);
test2.setAccelerator(KeyStroke.getKeyStroke("F2"));
file.add(test2);
JRadioButtonMenuItem test3 = new
JRadioButtonMenuItem("RadioButtonMenuItem");
test3.setSelected(true);
test3.setEnabled(false);
test3.setAccelerator(KeyStroke.getKeyStroke("F3"));
file.add(test3);
menuBar.add(file);
f.setJMenuBar(menuBar);
f.setSize(200, 200);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.show();
}
}
---------- END SOURCE ----------
(Review ID: 181545)
======================================================================
FULL PRODUCT VERSION :
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 :
Windows 98 [Version 4.10.1998]
A DESCRIPTION OF THE PROBLEM :
The three different types of menu items (JMenuItem,
JCheckBoxMenuItem, and JRadioButtonMenuItem) all render
differently when disabled under the Windows Look and Feel,
and all three are incorrect.
The correct appearance for a disabled menu item under
Windows is for both the label and accelerator key to appear
dark gray on top of a white "shadow" which is offset by one
pixel southeast.
JMenuItem displays its label correctly, but its accelerator
is just plain gray.
JCheckBoxMenuItem displays its label as plain gray, but its
accelerator is correct.
JRadioButtonMenuItem displays both its label and accelerator
incorrectly as plain gray.
Further, JRadioButtonMenuItem is using an incorrect icon and
does not line up properly with the other two types of menus.
It is shifted several pixels to the left.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Compile and run the attached test case on Windows (I am
running 98, but I believe it is broken on all of them).
Pull down the "File" menu.
EXPECTED VERSUS ACTUAL BEHAVIOR :
The menu items should all render identically (with the
exception of the icons), with all text using the standard
Windows disabled appearance, and line up properly. The
radio button and checkbox icons should look identical to
their Windows counterparts.
Instead, all three render differently, do not look like
normal Windows menus, and do not line up properly. The
radio button icon is incorrect (and ugly, if I may say so).
For an example of the correct Windows radio button icon,
check the Internet Explorer View/Text Size menu.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
public class Test {
public static void main(String[] arg) throws Exception {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
JFrame f = new JFrame("Test");
JMenuBar menuBar = new JMenuBar();
JMenu file = new JMenu("File");
JMenuItem test1 = new JMenuItem("MenuItem");
test1.setEnabled(false);
test1.setAccelerator(KeyStroke.getKeyStroke("F1"));
file.add(test1);
JCheckBoxMenuItem test2 = new JCheckBoxMenuItem("CheckBoxMenuItem");
test2.setSelected(true);
test2.setEnabled(false);
test2.setAccelerator(KeyStroke.getKeyStroke("F2"));
file.add(test2);
JRadioButtonMenuItem test3 = new
JRadioButtonMenuItem("RadioButtonMenuItem");
test3.setSelected(true);
test3.setEnabled(false);
test3.setAccelerator(KeyStroke.getKeyStroke("F3"));
file.add(test3);
menuBar.add(file);
f.setJMenuBar(menuBar);
f.setSize(200, 200);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.show();
}
}
---------- END SOURCE ----------
(Review ID: 181545)
======================================================================