JDK-4886944 : 1.4.2 REGRESSION: Rollover mode in JToolBar is lost after first switching L&F
  • Type: Bug
  • Component: client-libs
  • Sub-Component: javax.swing
  • Affected Version: 1.4.2
  • Priority: P3
  • Status: Resolved
  • Resolution: Fixed
  • OS:
    generic,linux,windows_2000,windows_xp generic,linux,windows_2000,windows_xp
  • CPU: generic,x86
  • Submitted: 2003-07-07
  • Updated: 2003-08-15
  • Resolved: 2003-08-15
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
5.0 tigerFixed
Related Reports
Duplicate :  
Relates :  
Relates :  
Description

Name: jk109818			Date: 07/07/2003


FULL PRODUCT VERSION :
java version "1.4.2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-b28)
Java HotSpot(TM) Client VM (build 1.4.2-b28, mixed mode)

FULL OS VERSION :
Microsoft Windows 2000 [Version 5.00.2195] SP3

A DESCRIPTION OF THE PROBLEM :
After first changing L&F the rollover mode in JToolBar is lost

STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1) Execute attached program
2) Try to switch L&F by clicking buttons

EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Rollover mode is remain working
ACTUAL -
After first switching the rollover mode is lost

REPRODUCIBILITY :
This bug can be reproduced always.

---------- BEGIN SOURCE ----------
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class RolloverBug
{
 static void setLAF(String lafName)
 {
  try
    {
     UIManager.setLookAndFeel( lafName );

     Frame[] frames = Frame.getFrames();

     for( int i=0; i<frames.length; i++ )
       {
        SwingUtilities.updateComponentTreeUI( frames[i] );
       }
    }
  catch(Exception ex)
    {
     ex.printStackTrace();
    }
 }

 public static void main(String s[])
 {
  JFrame frame = new JFrame();

  JToolBar bar = new JToolBar(JToolBar.HORIZONTAL);

  bar.setRollover(true);

  UIManager.LookAndFeelInfo[] lafs = UIManager.getInstalledLookAndFeels();

  for( int i=0; i<lafs.length; i++ )
    {
     final String name = lafs[i].getName();
     final String className = lafs[i].getClassName();

     bar.add( new AbstractAction(name)
       {
        public void actionPerformed(ActionEvent evt) { setLAF(className); }
       });
    }

  frame.getContentPane().add(bar,BorderLayout.NORTH);

  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

  frame.pack();

  frame.setVisible(true);
 }
}

---------- END SOURCE ----------

CUSTOMER SUBMITTED WORKAROUND :
Recreating JToolBar after switching L&F. Calling again setRollover(true) do not help.

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

(Review ID: 189735) 
======================================================================

Name: jk109818			Date: 07/07/2003


FULL PRODUCT VERSION :
java version "1.4.2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-b28)
Java HotSpot(TM) Client VM (build 1.4.2-b28, mixed mode)

FULL OS VERSION :
Microsoft Windows 2000 [Version 5.00.2195]

A DESCRIPTION OF THE PROBLEM :
A JToolBar created with the rollover effect loses the rollover effect after calling SwingUtilities.updateComponentTreeUI() on the parent frame.

NOTE: This bug occurs with the JDK1.4.2 *release* version, as well as the beta-version. Your bug database system only allowed me to choose v.1.4.2-beta in the Java "Release" choice box.

STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run the sample program.

EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
I expect to get a toolbar with a rollover button.
ACTUAL -
I get a toolbar with a static border drawn around the toolbar button.

REPRODUCIBILITY :
This bug can be reproduced always.

---------- BEGIN SOURCE ----------
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Rollover
{
  public static void main(String[] args)
  {
    JButton button = new JButton("Exit");
    button.addActionListener(new ActionListener()
    {
      public void actionPerformed(ActionEvent e)
      {
        System.exit(0);
      }
    });

  JToolBar toolBar = new JToolBar();
  toolBar.setRollover(true);
  toolBar.add(button);

  JFrame frame = new JFrame();
  frame.getContentPane().add(toolBar, BorderLayout.NORTH);
  frame.pack();
  frame.setVisible(true);

  // This line causes the problem
  SwingUtilities.updateComponentTreeUI(frame);
  }
}
---------- END SOURCE ----------
(Review ID: 190132)
======================================================================

Comments
CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: tiger FIXED IN: tiger INTEGRATED IN: tiger tiger-b16
14-06-2004

EVALUATION The method SwingUtilities.updateComponentTreeUI() works top-down, so when switching UI, the toolbar first updates all the buttons with rollover borders, then the buttons install their default borders. This bug is a regression introduced by fix to bug 4735514, which changed the code in BasicToolBarUI to install borders that are UIResources. This is what triggers BasicButtonUI to ignore them and install its own borders. This fix will undo the previous fix and instead make two changes to fix the problem described in 4735514. The first is in MetalToolBarUI, to check in setBorderToNonRollover() if the existing border is a UIResource *before* calling super, and then install its own after the call to super. The second is in BasicToolBarUI, to add a call to installNormalBorders() in the property change listener before calling setRolloverBorders(). ###@###.### 2003-08-04
04-08-2003