JEditorPaneやJTextPaneに行間を設定する
Total: 12242
, Today: 2
, Yesterday: 2
Posted by aterai at
Last-modified:
概要
JEditorPane
やJTextPane
に行間を設定します。
Screenshot
Advertisement
サンプルコード
class BottomInsetEditorKit extends StyledEditorKit {
@Override public ViewFactory getViewFactory() {
return new ViewFactory() {
@Override public View create(Element elem) {
String kind = elem.getName();
if (kind != null) {
if (kind.equals(AbstractDocument.ContentElementName)) {
return new LabelView(elem);
} else if (kind.equals(AbstractDocument.ParagraphElementName)) {
return new javax.swing.text.ParagraphView(elem) {
@Override protected short getBottomInset() {
return 5;
}
};
} else if (kind.equals(AbstractDocument.SectionElementName)) {
return new BoxView(elem, View.Y_AXIS);
} else if (kind.equals(StyleConstants.ComponentElementName)) {
return new ComponentView(elem);
} else if (kind.equals(StyleConstants.IconElementName)) {
return new IconView(elem);
}
}
return new LabelView(elem);
}
};
}
}
View in GitHub: Java, Kotlin解説
- 上:
StyleConstants.setLineSpacing
で行間を指定したAttributeSet
を作成し、JTextPane#setParagraphAttributes
で設定- フォントサイズ相対の行間になる
SimpleAttributeSet a = new SimpleAttributeSet();
StyleConstants.setLineSpacing(a, .5f);
// StyleConstants.setSpaceAbove(a, 5f);
// StyleConstants.setSpaceBelow(a, 5f);
// StyleConstants.setLeftIndent(a, 5f);
// StyleConstants.setRightIndent(a, 5f);
editor1.setParagraphAttributes(a, true);
setSampleText(editor1);
- 下:
ParagraphView#getBottomInset
をオーバーライドして固定の行間をピクセルで指定- フォントサイズに関係なくアキ
5px
- フォントサイズに関係なくアキ
- スタイルシートで
line-height
を指定しても反映されないline-height
はモデル化されているが、現在は描画されない- 対応しているCSSプロパティ一覧 - CSS (Java Platform SE 8)
- ブロックレベルで
1
行だけ固定の行間を指定したい場合はmargin-bottom
が使用可能StyleSheet styleSheet = new StyleSheet(); styleSheet.addRule("body {font-size: 24pt; line-height: 2.0}"); styleSheet.addRule(".test {margin-bottom: 2pt; padding-bottom: 1px; }"); // XXX: styleSheet.addRule("span {color: white; display:inline-block; margin-bottom: 10pt;}"); HTMLEditorKit htmlEditorKit = new HTMLEditorKit(); htmlEditorKit.setStyleSheet(styleSheet); editor1.setEditorKit(htmlEditorKit); editor1.setText("<html><body><div class='test'>12<br />a<br />n<font size='32'>123<br />sd</font></div></body></html>");
参考リンク
- JTextPane#setParagraphAttributes(...) (Java Platform SE 8)
- CompositeView#getBottomInset() (Java Platform SE 8)