-
Bug
-
Resolution: Fixed
-
P3
-
1.1.7, 1.1.8, 1.2.0, 1.2.2
-
beta
-
generic, x86
-
generic, windows_nt
Name: gsC80088 Date: 12/04/98
Once we updated to Swing 1.1 beta 3, we noticed that the background of JScrollBar is not painted under the Windows Look/Feel. All that we can see are the Arrows and the Slider. The area that the slider moves in has the same background color as the rest of the Panel.
This looks really crummy.
If I switch to the Metal Look/Feel the JScrollBar looks quite nice. I hope this will be fixed in the next Swing 1.1 release.
We are running Swing 1.1 beta 3 under JDK 1.1.7a on Windows NT 4.0 Service Pack 3 systems.
======
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class AppletFocus extends JApplet implements ActionListener,
AdjustmentListener
{
JTextField bot;
JTextField min, max, extent, current;
JScrollBar sb;
public void init()
{
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
SwingUtilities.updateComponentTreeUI(this);
}
catch (Exception e) {}
Container cp = getContentPane();
cp.setLayout(new BorderLayout());
JPanel parmsPanel = new JPanel();
parmsPanel.setLayout(new GridLayout(4,2,20,20));
parmsPanel.add(new JLabel("Min:"));
min = new JTextField(5);
parmsPanel.add(min);
parmsPanel.add(new JLabel("Max:"));
max = new JTextField(5);
parmsPanel.add(max);
parmsPanel.add(new JLabel("Extent:"));
extent = new JTextField(5);
parmsPanel.add(extent);
parmsPanel.add(new JLabel("Current:"));
current = new JTextField(5);
parmsPanel.add(current);
cp.add(parmsPanel, "Center");
JButton apply = new JButton("Apply Parms");
apply.addActionListener(this);
cp.add(apply, "South");
sb = new JScrollBar();
sb.addAdjustmentListener(this);
cp.add(sb, "East");
showValues();
}
private void showValues()
{
min.setText((new Integer(sb.getMinimum())).toString());
max.setText((new Integer(sb.getMaximum())).toString());
extent.setText((new Integer(sb.getVisibleAmount())).toString());
current.setText((new Integer(sb.getValue())).toString());
}
public void actionPerformed(ActionEvent e)
{
int minVal, maxVal, extentVal, currentVal;
minVal = (new Integer(min.getText())).intValue();
maxVal = (new Integer(max.getText())).intValue();
extentVal = (new Integer(extent.getText())).intValue();
currentVal = (new Integer(current.getText())).intValue();
sb.setValues(currentVal, extentVal, minVal, maxVal);
sb.setBlockIncrement(extentVal);
showValues();
}
public void adjustmentValueChanged(AdjustmentEvent e)
{
showValues();
}
}
(Review ID: 47244)
======================================================================
- duplicates
-
JDK-4204843 update:LookandFeel bugs: Windows Scrollbar track color is wrong
-
- Closed
-
-
JDK-4247960 No visible division between panel and its vertical scrollbar "trough" in Win L&F
-
- Closed
-
-
JDK-4252678 JScrollBar track has incorrect color for Windows LAF
-
- Closed
-