-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.2
-
x86
-
windows_2000
Name: rmT116609 Date: 08/23/2004
FULL PRODUCT VERSION :
java version "1.4.2_05"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
java version "1.5.0-beta2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta2-b51)
Java HotSpot(TM) Client VM (build 1.5.0-beta2-b51, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows 2000 [Version 5.00.2195]
A DESCRIPTION OF THE PROBLEM :
Icons for Disabled JMenuItems don't follow specs
The JavaDoc for setIcon says:
* Sets the button's default icon. This icon is
* also used as the "pressed" and "disabled" icon if
* there is no explicitly set pressed icon.
However when the Icon is not an ImageIcon this is not working, the icon is simply not shown.
(Note: it works as expected for JButtons)
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
run code
open the menu
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
an oval to appear next to the menu item
ACTUAL -
no oval
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.*;
import javax.swing.*;
public class Test {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JMenuItem item = new JMenuItem("Test");
item.setIcon(new Icon() {
public void paintIcon(Component aComponent, Graphics aContext, int aLeftX, int aTopY) {
Color colour = aContext.getColor();
aContext.setColor(Color.RED);
aContext.drawOval(aLeftX, aTopY, 10, 10);
aContext.setColor(colour);
}
public int getIconWidth() {
return 10;
}
public int getIconHeight() {
return 10;
}
});
item.setEnabled(false);
JMenuBar menuBar = new JMenuBar();
JMenu menu = new JMenu("Open Me");
menu.add(item);
menuBar.add(menu);
frame.setJMenuBar(menuBar);
frame.setSize(100, 100);
frame.setVisible(true);
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
For every Menu Item that you set an Icon for also set the Disbaled Icon
(Incident Review ID: 300543)
======================================================================
- duplicates
-
JDK-4820053 getDisabledIcon() only works for ImageIcons
-
- Closed
-