概要
JCheckBox
のテキストが複数行の場合、チェックアイコンが一行目中央に配置されるよう設定します。
Screenshot
Advertisement
サンプルコード
class WindowsVerticalAlignmentCheckBoxUI extends WindowsCheckBoxUI {
@Override public synchronized void paint(Graphics g, JComponent c) {
AbstractButton b = (AbstractButton) c;
// ...
// Paint the radio button
int y = HtmlViewUtil.getFirstLineCenterY(text, b, iconRect);
getDefaultIcon().paintIcon(c, g, iconRect.x, iconRect.y + y);
// ...
}
public static int getFirstLineCenterY(
String text, AbstractButton c, Rectangle iconRect) {
int y = 0;
if (text != null && c.getVerticalTextPosition() == SwingConstants.TOP) {
Object o = c.getClientProperty(BasicHTML.propertyKey);
if (o instanceof View) {
View v = (View) o;
try {
Element e = v.getElement().getElement(0);
Shape s = new Rectangle();
Position.Bias b = Position.Bias.Forward;
s = v.modelToView(
e.getStartOffset(), b, e.getEndOffset(), b, s);
y = (int) (.5 + Math.abs(
s.getBounds().height - iconRect.height) * .5);
} catch (BadLocationException ex) {
ex.printStackTrace();
}
}
}
return y;
}
}
View in GitHub: Java, Kotlin解説
- 左:
SwingConstants.TOP
JCheckBox#setVerticalTextPosition(SwingConstants.TOP)
を設定してチェックアイコンとテキストの上辺が揃うように設定JCheckBox
のフォントサイズが大きくなると、チェックアイコンが上にずれてしまう
- 右:
First line center
WindowsCheckBoxUI#paint(...)
などをオーバーライドし一行目の中央にチェックアイコンの中心が揃うように設定<html>aa<font size="+5">bb</font>cc...</html>
のような一部の文字サイズを大きくしたテキストを設定しても行の中央に揃えることが可能