TitledBorderとMatteBorderを使用してTitledSeparatorを作成する
Total: 5587
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
TitledBorder
とMatteBorder
を使用してTitle
付きのSeparator
を作成します。
Screenshot
Advertisement
サンプルコード
class TitledSeparator extends JLabel {
private final String title;
private final Color target;
private final int height;
private final int titlePosition;
public TitledSeparator(String title, int height, int titlePosition) {
this(title, null, height, titlePosition);
}
public TitledSeparator(
String title, Color target, int height, int titlePosition) {
super();
this.title = title;
this.target = target;
this.height = height;
this.titlePosition = titlePosition;
updateBorder();
}
private void updateBorder() {
Icon icon = new TitledSeparatorIcon();
setBorder(BorderFactory.createTitledBorder(
BorderFactory.createMatteBorder(height, 0, 0, 0, icon), title,
TitledBorder.DEFAULT_JUSTIFICATION, titlePosition));
}
@Override public Dimension getMaximumSize() {
Dimension d = super.getPreferredSize();
d.width = Short.MAX_VALUE;
return d;
}
@Override public void updateUI() {
super.updateUI();
EventQueue.invokeLater(this::updateBorder);
}
private class TitledSeparatorIcon implements Icon {
private int width = -1;
private Paint painter1;
private Paint painter2;
@Override public void paintIcon(Component c, Graphics g, int x, int y) {
int w = c.getWidth();
if (w != width || painter1 == null || painter2 == null) {
width = w;
Point2D start = new Point2D.Float();
Point2D end = new Point2D.Float(width, 0);
float[] dist = {0f, 1f};
Color ec = Optional.ofNullable(getBackground())
.orElse(UIManager.getColor("Panel.background"));
Color sc = Optional.ofNullable(target).orElse(ec);
painter1 = new LinearGradientPaint(
start, end, dist, new Color[] {sc.darker(), ec});
painter2 = new LinearGradientPaint(
start, end, dist, new Color[] {sc.brighter(), ec});
}
int h = getIconHeight() / 2;
Graphics2D g2 = (Graphics2D) g.create();
g2.setPaint(painter1);
g2.fillRect(x, y, width, getIconHeight());
g2.setPaint(painter2);
g2.fillRect(x, y + h, width, getIconHeight() - h);
g2.dispose();
}
@Override public int getIconWidth() {
return 200; // sample width
}
@Override public int getIconHeight() {
return height;
}
}
}
View in GitHub: Java, Kotlin解説
TitledBorder
と、上辺の余白のみグラデーション用のタイル・アイコンを描画するMatteBorder
を組み合わせ、これを空のJLabel
に設定することでTitledSeparator
を作成しています。
- 上
- タイトルの垂直位置をデフォルトの
TitledBorder.DEFAULT_POSITION
にしてSeparator
上に重なるように表示 Java 1.6.0
ではタイトルの上にSeparator
が表示される場合がある?(1.7.0
では正常)- 垂直方向は未対応
- タイトルの垂直位置をデフォルトの
- 中
- タイトルの垂直位置が上(
TitledBorder.ABOVE_TOP
)でSeparator
の上に表示
- タイトルの垂直位置が上(
- 下
- デフォルトの
JSeparator
を使用
- デフォルトの