Swing/LineCursor のバックアップ(No.10)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/LineCursor へ行く。
- 1 (2006-01-30 (月) 12:22:18)
- 2 (2006-01-30 (月) 13:45:39)
- 3 (2006-02-19 (日) 15:55:56)
- 4 (2006-02-27 (月) 16:07:47)
- 5 (2006-03-30 (木) 15:53:17)
- 6 (2006-09-19 (火) 10:09:33)
- 7 (2007-01-11 (木) 12:35:28)
- 8 (2007-03-07 (水) 02:35:41)
- 9 (2007-04-11 (水) 17:48:48)
- 10 (2008-03-17 (月) 16:54:21)
- 11 (2008-11-23 (日) 21:42:05)
- 12 (2013-03-15 (金) 16:45:43)
- 13 (2013-09-01 (日) 01:42:51)
- 14 (2014-11-22 (土) 03:59:58)
- 15 (2014-11-25 (火) 03:03:31)
- 16 (2015-02-03 (火) 16:35:10)
- 17 (2016-09-08 (木) 20:33:38)
- 18 (2017-03-29 (水) 19:38:01)
- 19 (2018-03-02 (金) 14:17:42)
- 20 (2020-03-13 (金) 22:13:09)
- 21 (2021-09-15 (水) 10:27:34)
- 22 (2022-10-07 (金) 15:03:11)
TITLE:JTextAreaに行カーソルを表示
JTextAreaに行カーソルを表示
編集者:Terai Atsuhiro
作成日:2006-01-30
更新日:2022-10-07 (金) 15:03:11
概要
JTextAreaのカーソルがある行全体にアンダーラインを引きます。
#screenshot
サンプルコード
class LineCursorTextArea extends JTextArea {
public LineCursorTextArea() {
super();
Caret caret = new DefaultCaret() {
protected synchronized void damage(Rectangle r) {
if(r!=null) {
JTextComponent c = getComponent();
x = 0;
y = r.y;
width = c.getSize().width;
height = r.height;
repaint();
}
}
};
caret.setBlinkRate(getCaret().getBlinkRate());
setCaret(caret);
}
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2 = (Graphics2D)g;
Insets i = getInsets();
int y = g2.getFontMetrics().getHeight()*getLineAtCaret(this)+i.top;
g2.setPaint(Color.BLUE);
g2.drawLine(i.left, y-1, getSize().width-i.left-i.right, y-1);
}
public static int getLineAtCaret(JTextComponent component) {
int caretPosition = component.getCaretPosition();
Element root = component.getDocument().getDefaultRootElement();
return root.getElementIndex(caretPosition)+1;
}
}
- &jnlp;
- &jar;
- &zip;
解説
JTextArea#paintComponentメソッドをオーバーライドして、カーソルがある行にアンダーラインを引いています。
キャレットの移動に対応するため、DefaultCaret#damageメソッドを変更して、描画に使われる領域を描画し直しています。
Highlighting Current Line のように、Highlighterを使っても同様のことができるようです。
参考リンク
- Line Number in JTextPane
- Line highlighting problem in presence of text highlighting!
- Java低速GUI Swing 3
- Highlighting Current Line
コメント
- JEditorPaneではgetRowHeight()が使えないようなので、Java低速GUI Swing 3を参考にしてg2.getFontMetrics().getHeight()にしました。 -- terai