Swing/NoWrapTextPane のバックアップ(No.20)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/NoWrapTextPane へ行く。
- 1 (2007-09-24 (月) 18:04:06)
- 2 (2007-09-25 (火) 12:23:27)
- 3 (2007-09-25 (火) 16:22:50)
- 4 (2007-09-25 (火) 19:14:19)
- 5 (2012-08-02 (木) 21:04:03)
- 6 (2013-01-31 (木) 22:56:49)
- 7 (2013-05-06 (月) 15:18:45)
- 8 (2013-05-07 (火) 03:20:53)
- 9 (2013-07-24 (水) 21:52:19)
- 10 (2013-07-26 (金) 01:43:55)
- 11 (2013-07-27 (土) 01:01:34)
- 12 (2013-09-06 (金) 15:34:39)
- 13 (2014-11-01 (土) 00:46:09)
- 14 (2014-11-25 (火) 03:03:31)
- 15 (2015-10-29 (木) 16:24:34)
- 16 (2017-03-28 (火) 15:24:43)
- 17 (2017-11-02 (木) 15:34:40)
- 18 (2018-02-01 (木) 19:38:14)
- 19 (2020-01-28 (火) 16:33:24)
- 20 (2021-07-22 (木) 22:11:40)
- 21 (2022-08-20 (土) 22:15:25)
- category: swing folder: NoWrapTextPane title: JEditorPaneで長い行を折り返さない tags: [JEditorPane, JTextPane, StyledDocument] author: aterai pubdate: 2007-09-24T18:04:06+09:00 description: JEditorPaneや、JTextPaneで、行をViewportの幅で折り返さないよう設定します。 image:
概要
JEditorPane
や、JTextPane
で、行をViewport
の幅で折り返さないよう設定します。
Screenshot
Advertisement
サンプルコード
class NoWrapParagraphView extends ParagraphView {
public NoWrapParagraphView(Element elem) {
super(elem);
}
@Override protected SizeRequirements calculateMinorAxisRequirements(
int axis, SizeRequirements r) {
SizeRequirements req = super.calculateMinorAxisRequirements(axis, r);
req.minimum = req.preferred;
return req;
}
@Override public int getFlowSpan(int index) {
return Integer.MAX_VALUE;
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、スパンの必要サイズを計算するcalculateMinorAxisRequirements
メソッドなどをオーバーライドして、行折り返し段落のビュー(ParagraphView
)で折り返しが発生しないように設定しています。
JEditorPane
やJTextPane
といったStyledDocument
をモデルにしているテキストコンポーネントに極めて長い行をペーストすると表示が更新されなくなる場合がある- 折り返し不可に設定するとこの動作が緩和される?
JTextArea
でも行を極めて長くしてしまうと、カーソルキーの移動などで異常に時間がかかる場合がある- 例えば、このサンプルの
JTextArea
で、カーソルを末尾(EOF
)に移動し、一行目(非常に長い行)にUpキーで移動すると発生する - Swing - Long last line in wrappable textarea hangs GUI (bug in java?)
- 例えば、このサンプルの
- Swing - Disabling word wrap for JTextPane
BoxView#layout(...)
をオーバーライドして折り返しを不可に設定
- Non Wrapping(Wrap) TextPane : TextField : Swing JFC : Java examples (example source code) Organized by topic
JTextPane#getScrollableTracksViewportWidth()
をオーバーライドして折り返しを不可に設定
参考リンク
- Swing - Disabling word wrap for JTextPane
- Non Wrapping(Wrap) TextPane : TextField : Swing JFC : Java examples (example source code) Organized by topic
- Bug ID: 6502558 AbstractDocument fires event not on Event Dispatch Thread
- JTextPaneを一行に制限してスタイル可能なJTextFieldとして使用する