Swing/StrokeMatteBorder のバックアップ(No.2)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/StrokeMatteBorder へ行く。
- title: BasicStrokeで指定した辺の描画を行うBorderを作成する tags: [Border, MatterBorder, StrokeBorder] author: aterai pubdate: 2015-08-03T02:50:24+09:00 description: MatteBorderの縁の塗り潰しの代わりにBasicStrokeで点線を描画するBorderを作成します。
概要
MatteBorder
の縁の塗り潰しの代わりにBasicStroke
で点線を描画するBorder
を作成します。
Screenshot
Advertisement
サンプルコード
class StrokeMatteBorder extends EmptyBorder {
private final transient BasicStroke stroke;
private final Paint paint;
public StrokeMatteBorder(int top, int left, int bottom, int right,
BasicStroke stroke, Paint paint) {
super(top, left, bottom, right);
this.stroke = stroke;
this.paint = paint;
}
@Override public void paintBorder(Component c, Graphics g,
int x, int y, int width, int height) {
float size = stroke.getLineWidth();
if (size > 0f) {
Insets insets = getBorderInsets(c);
Graphics2D g2 = (Graphics2D) g.create();
g2.setStroke(this.stroke);
g2.setPaint(Objects.nonNull(this.paint)
? this.paint : Objects.nonNull(c)
? c.getForeground() : null);
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
g2.translate(x, y);
int s = (int)(.5f + size);
int sd2 = (int)(.5f + size / 2d);
if (insets.top > 0) {
g2.drawLine(0, sd2, width - s, sd2);
}
if (insets.left > 0) {
g2.drawLine(sd2, sd2, sd2, height - s);
}
if (insets.bottom > 0) {
g2.drawLine(0, height - s, width - s, height - s);
}
if (insets.right > 0) {
g2.drawLine(width - sd2, 0, width - sd2, height - s);
}
g2.dispose();
}
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、飾り縁ボーダーを、指定されたインセット、色、BasicStroke
で描画するBorderを使用して、全体の罫線が点線で描画される表を作成しています。
JLabel
で作成した各セルに、右下辺を黒い点線で描画するボーダーを設定- これらのセルを
GridBagLayout
で配置したJPanel
に、上左辺を赤い点線で描画するボーダーを設定