Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6404519

REGRESSION: Mustang JButtons don't track changes to Win XP theme and color schem

XMLWordPrintable

    • b92
    • x86
    • windows_xp

      A DESCRIPTION OF THE REGRESSION :
      With Java 5 if I cahnge the Windows XP theme while my Swing program is running the Swing UI tracks the changes. With Mustang b77 the button shapes and colors do not change.

      REPRODUCIBLE TESTCASE OR STEPS TO REPRODUCE:
      /*
       * Main.java
       *
       * Created on March 25, 2006, 3:39 PM
       */

      package buttonborderregression;

      import java.awt.BorderLayout;
      import java.awt.Container;
      import javax.swing.JButton;
      import javax.swing.JFrame;
      import javax.swing.JLabel;
      import javax.swing.JPanel;
      import javax.swing.UIManager;

      /**
       * @author Scott Palmer
       */
      public class Main
      {
      public static void main(String[] args) throws Exception
      {
      UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
      JFrame f = new JFrame("Win XP LnF Button Border Regression");
      Container cp = f.getContentPane();
      JPanel p1 = new JPanel();
      // Populate
      for (int i = 0; i < 6; i++) {
      JButton b = new JButton("Button "+i);
      b.setEnabled((i & 1) == 0);
      b.setSelected(i >= 3);
      p1.add(b);
      }
      cp.add(p1, BorderLayout.NORTH);
      cp.add(new JLabel("<html>Without exiting this application, change the Win XP theme and color scheme and check the colors of the JButtons.<br>"
      +"In Java 5 the button colors track dynamic changes to the Win XP theme. In Mustang they do not."
      +"</html>"
      ), BorderLayout.CENTER);

      f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      f.pack();
      f.setVisible(true);
      }
      }


      RELEASE LAST WORKED:
      5.0 Update 6

      RELEASE TEST FAILS:
      mustang-b72

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      The Swing UI should track Win XP theme changes.
      ACTUAL -
      The JButton shapes and colors (at least) do not change dynamically when the Windows XP Theme or color scheme is changed and applied.

      OBSERVED APPLICATION IMPACT:
      All Swing applications are affected. The result is a out of place visual look to the UI.

      Release Regression From : mustang
      The above release value was the last known release where this
      bug was known to work. Since then there has been a regression.

            jmarinacsunw Joshua Marinacci (Inactive)
            dbessono Dmitry Bessonov
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: