I try to improve my skills in Java (swing) ! I want to have an custom JSlider. I want to have the same appareance like in this screenshot (at the bottom) :
For, the moment I only succeed to, create an circle track and fill it. For the track part, I don't know how to draw the advancement of the slider. It's my problem. I succeed to have an gray track, but how to paint the avancement ? Here is my code :
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.RenderingHints;
import java.awt.Shape;
import java.awt.geom.Ellipse2D;
import javax.swing.JComponent;
import javax.swing.JSlider;
import javax.swing.plaf.basic.BasicSliderUI;
public class CustomJSlider extends BasicSliderUI {
public CustomJSlider(JSlider b) {
super(b);
}
public void paintTicks(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
Rectangle t = trackRect;
g2d.setPaint(new Color(0,91,91));
g2d.fillRoundRect(t.x, t.y, t.width, t.height, 5, 5);
}
@Override
public void paint(Graphics g, JComponent c) {
Graphics2D g2d = (Graphics2D) g;
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
super.paint(g, c);
}
@Override
protected Dimension getThumbSize() {
return new Dimension(15, 15);
}
@Override
public void paintTrack(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
Rectangle t = trackRect;
g2d.setPaint(new Color(91,91,91));
g2d.fillRoundRect(t.x, t.y+3, t.width, t.height-5, 5, 5);
}
@Override
public void paintThumb(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
g2d.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY);
Rectangle t = thumbRect;
Shape circle = new Ellipse2D.Double(t.x, t.y, t.width, t.height);
// GradientPaint blue = new GradientPaint(25, 25, new Color(86,85,30), 15, 25, Color.black, true);
g2d.setPaint(new Color(30,173,216));
g2d.fill(circle);
g2d.draw(circle);
}
}
So how to paint the track avancement ? Is it the best way to do ?