-
Bug
-
Resolution: Fixed
-
P2
-
1.4.2
-
tiger
-
x86
-
windows_xp
Name: jk109818 Date: 07/30/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 XP [Version 5.1.2600]
A DESCRIPTION OF THE PROBLEM :
Some controls: JScrollPane, JTabbedPane and JButton don't change appearance if current color scheme changes under WindowsXP. This bug is reproducible if you change 'default(blue)' color scheme to 'olive green' color scheme. If you change 'default blue' to 'silver' then everything is fine. If you change 'silver' to 'olive green' then everything is also ok.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Be sure that the current appearance for windows and buttons (Display Properties|Appearance tab) is Windows XP style.
2. Be sure that current color scheme is 'Default (blue)'
3. complile and run attached sample application
4. change current color scheme to 'Olive Green'
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
JScrollPane, JTabbedPane and JButton should change appearance to fit current color theme.
ACTUAL -
noting happens
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import com.sun.java.swing.plaf.windows.WindowsLookAndFeel;
import javax.swing.*;
import java.awt.*;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
/**
* @author Vladimir Kondratyev
*/
public class Test {
public static void main(String[] args) throws Exception{
UIManager.setLookAndFeel(WindowsLookAndFeel.class.getName());
JFrame frame = new JFrame();
Container contentPane = frame.getContentPane();
contentPane.setLayout(new BorderLayout());
JScrollPane scrollPane = new JScrollPane();
scrollPane.setPreferredSize(new Dimension(320, 200));
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
contentPane.add(scrollPane, BorderLayout.CENTER);
contentPane.add(new JButton("Button"), BorderLayout.EAST);
JTabbedPane tabbedPane = new JTabbedPane();
tabbedPane.addTab("Tab1", new JLabel("tab 1"));
tabbedPane.addTab("Tab2", new JLabel("tab 2"));
contentPane.add(tabbedPane, BorderLayout.SOUTH);
frame.addWindowListener(
new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
}
);
frame.pack();
frame.show();
}
}
---------- END SOURCE ----------
(Incident Review ID: 190459)
======================================================================
- relates to
-
JDK-6404519 REGRESSION: Mustang JButtons don't track changes to Win XP theme and color schem
-
- Resolved
-