JTextAreaでSmoothScrollによる行移動
Total: 8912
, Today: 2
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
SmoothScroll
アニメーション有りでJTextArea
の任意の行まで移動します。
Screenshot
Advertisement
サンプルコード
Document doc = textArea.getDocument();
Element root = doc.getDefaultRootElement();
int ln = model.getNumber().intValue();
try {
Element elem = root.getElement(ln - 1);
Rectangle dest = textArea.modelToView(elem.getStartOffset());
Rectangle current = scroll.getViewport().getViewRect();
new Timer(20, e -> {
Timer animator = (Timer) e.getSource();
if (dest.y < current.y && animator.isRunning()) {
int d = Math.max(1, (current.y - dest.y) / 2);
current.y = current.y - d;
textArea.scrollRectToVisible(current);
} else if (dest.y > current.y && animator.isRunning()) {
int d = Math.max(1, (dest.y - current.y) / 2);
current.y = current.y + d;
textArea.scrollRectToVisible(current);
} else {
textArea.setCaretPosition(elem.getStartOffset());
animator.stop();
}
}).start();
} catch (BadLocationException ex) {
UIManager.getLookAndFeel().provideErrorFeedback(textArea);
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、java.swing.Timer
でイベントが発生するとscrollRectToVisible(...)
メソッドを使用して目的位置と現在位置の差の半分だけViewRect
のスクロールを繰り返すことで行移動アニメーションを行っています。