1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
package com.explodingpixels.swingx;
import java.awt.Graphics;
import java.awt.Graphics2D;
import javax.swing.AbstractButton;
import javax.swing.Action;
import javax.swing.Icon;
import javax.swing.JToggleButton;
import com.explodingpixels.painter.MacWidgetsPainter;
public class EPToggleButton extends JToggleButton {
private MacWidgetsPainter<AbstractButton> fBackgroundPainter;
public EPToggleButton() {
super();
}
public EPToggleButton(Icon icon) {
super(icon);
}
public EPToggleButton(Icon icon, boolean selected) {
super(icon, selected);
}
public EPToggleButton(String text) {
super(text);
}
public EPToggleButton(String text, boolean selected) {
super(text, selected);
}
public EPToggleButton(Action a) {
super(a);
}
public EPToggleButton(String text, Icon icon) {
super(text, icon);
}
public EPToggleButton(String text, Icon icon, boolean selected) {
super(text, icon, selected);
}
@Override
protected void init(String text, Icon icon) {
super.init(text, icon);
setOpaque(false);
}
public void setBackgroundPainter(MacWidgetsPainter<AbstractButton> painter) {
fBackgroundPainter = painter;
}
@Override
protected void paintComponent(Graphics g) {
if (fBackgroundPainter != null) {
Graphics2D graphics = (Graphics2D) g.create();
fBackgroundPainter.paint(graphics, this, getWidth(), getHeight());
graphics.dispose();
}
super.paintComponent(g);
}
}
|