-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.0
-
x86
-
windows_2000
Name: bsC130419 Date: 07/18/2001
java version "1.4.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta-b65)
Java HotSpot(TM) Client VM (build 1.4.0-beta-b65, mixed mode)
Etched borders and disabled components (menu items, buttons etc.) use wrong
colors under the Windows look and feel in Swing. The colors used (for shadow I
think) are gray instead of the actual darker shade of the main component color.
It's very obvious once you set the windows colors to something other than gray
and fire up any Windows application and compared what disabled items look like
in native Windows apps compared to Swing apps using the Windows look and feel.
Screenshot at http://www.peppe.net/disabled.gif
Source for simple test case (run under Windows since it's a Windows L&F
specific bug):
---
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
public class EtchedDisabledColorBug {
public static void main(String[] args) throws Exception {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
JFrame f = new JFrame("EtchedDisabledColorBug");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Container c = f.getContentPane();
FlowLayout layout = new FlowLayout();
layout.setVgap(20);
layout.setHgap(20);
c.setLayout(layout);
JPanel p = new JPanel();
p.setPreferredSize(new Dimension(300, 150));
p.setBorder(BorderFactory.createTitledBorder("Etched border"));
JButton b = new JButton("Disabled button");
b.setEnabled(false);
p.add(b);
c.add(p);
f.setVisible(true);
f.pack();
}
}
(Review ID: 128306)
======================================================================
- duplicates
-
JDK-4302132 Swing gets color wrong for disabled labels
-
- Resolved
-