JDK-4105766 : Cannot set background color of JToggleButton
  • Type: Bug
  • Component: client-libs
  • Sub-Component: javax.swing
  • Affected Version: 1.0.1,1.1.5,1.2.0
  • Priority: P4
  • Status: Closed
  • Resolution: Fixed
  • OS:
    solaris_2.5.1,solaris_2.6,windows_95,windows_nt solaris_2.5.1,solaris_2.6,windows_95,windows_nt
  • CPU: generic,x86,sparc
  • Submitted: 1998-01-22
  • Updated: 2000-01-11
  • Resolved: 1999-06-29
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
1.3.0 betaFixed
Description
Using Swing pre-1.0 (/usr/local/java/swing-pre-1.0) and JDK 1.1.5.

setBackground() does not have any effect on JCheckBox and JRadioButton.
This functionality used to work correctly in Swing 0.7.

The following example attempts to set the background color of 
JButton, JCheckBox, and JRadioButton.  Only JButton has the expected
background color.

========================================================================
import java.awt.*;
import java.awt.event.*;
import com.sun.java.swing.*;
 
/**
 * An application that displays colored buttons, checkboxes, 
 * and radiobuttons
 */
public class ColorDemo extends JPanel {
    static JFrame frame;
    static JPanel buttonPanel, checkboxPanel, radiobuttonPanel, togglebuttonPanel;
    static String blue = new String("Blue");
    static String yellow = new String("Yellow");
 
    public ColorDemo() {
        super(true);
 
        try {
            // UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel");
            // UIManager.setLookAndFeel("com.sun.java.swing.plaf.metal.MetalLookAndFeel");
            UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
        } catch (Exception exc) {
            System.err.println("Error loading L&F: " + exc);
        }
 
        setLayout(new GridLayout(0,1));
 
        buttonPanel = new JPanel();
        checkboxPanel = new JPanel();
        radiobuttonPanel = new JPanel();
        togglebuttonPanel = new JPanel();
 
        // Create blue and yellow buttons, checkboxes, and radiobuttons
        JButton blueButton = new JButton(blue);
        JButton yellowButton = new JButton(yellow);
 
        JCheckBox blueCheckbox = new JCheckBox(blue);
        JCheckBox yellowCheckbox = new JCheckBox(yellow);
 
        JRadioButton blueRadiobutton = new JRadioButton(blue);
        JRadioButton yellowRadiobutton = new JRadioButton(yellow);
 
        JToggleButton blueTogglebutton = new JToggleButton(blue);
        JToggleButton yellowTogglebutton = new JToggleButton(yellow);
 
        blueButton.setBackground(Color.blue);
        yellowButton.setBackground(Color.yellow);
 
        blueCheckbox.setBackground(Color.blue);
        yellowCheckbox.setBackground(Color.yellow);
 
        blueRadiobutton.setBackground(Color.blue);
        yellowRadiobutton.setBackground(Color.yellow);
 
        blueTogglebutton.setBackground(Color.blue);

==========        yellowTogglebutton.setBackground(Color.yellow);
 
        buttonPanel.add(blueButton);
        buttonPanel.add(yellowButton);
 
        checkboxPanel.add(blueCheckbox);
        checkboxPanel.add(yellowCheckbox);
 
        radiobuttonPanel.add(blueRadiobutton);
        radiobuttonPanel.add(yellowRadiobutton);
 
        togglebuttonPanel.add(blueTogglebutton);
        togglebuttonPanel.add(yellowTogglebutton);
 
        add(buttonPanel);
        add(checkboxPanel);
        add(radiobuttonPanel);
        add(togglebuttonPanel);
    }
 
    public static void main(String s[]) {
         WindowListener l = new WindowAdapter() {
             public void windowClosing(WindowEvent e) {System.exit(0);}
         };
 
         frame = new JFrame("Color Demo");
         frame.addWindowListener(l);
         frame.getContentPane().add("Center", new ColorDemo());
         frame.pack();
         frame.setVisible(true);
    }
}
==============================================================

Name: rpC71689			Date: 03/19/98


   I want to add some information to the description:
JLabel has that problem with background color, too,  even in metal.
I was using swing-1.0.1.


======================================================================

Comments
CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: generic kestrel-beta FIXED IN: kestrel-beta INTEGRATED IN: kestrel-beta VERIFIED IN: kestrel-beta
14-06-2004

EVALUATION Confirmed. It actually works in metal/windows for buttons/radiobuttons, etc. Below is a matrix where it is currently working/failing. This is easy to fix, btw, just use the background color for filling. I've also updated the test case in the description to be more thourough. Buttons RadioButtons CheckBox ToggleButton Metal: pass pass pass pass Motif: pass pass pass pass Windows: pass pass pass pass All done. jeff.dinkins@Eng 1999-06-24
24-06-1999