2008-03-22 21:12:34 +00:00
|
|
|
|
|
|
|
package net.sourceforge.tuned.ui;
|
|
|
|
|
|
|
|
|
|
|
|
import java.awt.Color;
|
|
|
|
import java.awt.Insets;
|
|
|
|
|
|
|
|
import javax.swing.Icon;
|
|
|
|
import javax.swing.JLabel;
|
|
|
|
import javax.swing.JList;
|
|
|
|
|
|
|
|
|
|
|
|
public class DefaultFancyListCellRenderer extends AbstractFancyListCellRenderer {
|
|
|
|
|
|
|
|
private final JLabel label = new JLabel();
|
|
|
|
|
|
|
|
|
|
|
|
public DefaultFancyListCellRenderer() {
|
2008-10-11 20:42:03 +00:00
|
|
|
add(label);
|
2008-03-22 21:12:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public DefaultFancyListCellRenderer(int padding) {
|
|
|
|
super(new Insets(padding, padding, padding, padding));
|
2008-10-11 20:42:03 +00:00
|
|
|
add(label);
|
2008-03-22 21:12:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-11 20:42:03 +00:00
|
|
|
protected DefaultFancyListCellRenderer(int padding, int margin, Color selectedBorderColor) {
|
2008-03-22 21:12:34 +00:00
|
|
|
super(new Insets(padding, padding, padding, padding), new Insets(margin, margin, margin, margin), selectedBorderColor);
|
2008-10-11 20:42:03 +00:00
|
|
|
add(label);
|
2008-03-22 21:12:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void configureListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
|
|
|
|
super.configureListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
|
|
|
|
|
2008-03-24 15:41:10 +00:00
|
|
|
label.setOpaque(false);
|
|
|
|
|
2008-10-19 12:44:55 +00:00
|
|
|
setText(String.valueOf(value));
|
2008-03-22 21:12:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setIcon(Icon icon) {
|
|
|
|
label.setIcon(icon);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setText(String text) {
|
|
|
|
label.setText(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setHorizontalTextPosition(int textPosition) {
|
|
|
|
label.setHorizontalTextPosition(textPosition);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setVerticalTextPosition(int textPosition) {
|
|
|
|
label.setVerticalTextPosition(textPosition);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setForeground(Color fg) {
|
|
|
|
super.setForeground(fg);
|
|
|
|
|
|
|
|
// label is null while in super constructor
|
|
|
|
if (label != null) {
|
|
|
|
label.setForeground(fg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|