Swing/ScrollBarSearchHighlighter の変更点
- 追加された行はこの色です。
- 削除された行はこの色です。
- Swing/ScrollBarSearchHighlighter へ行く。
- Swing/ScrollBarSearchHighlighter の差分を削除
--- category: swing folder: ScrollBarSearchHighlighter title: JScrollBarに検索結果をハイライト表示 tags: [JScrollBar, JScrollPane, JTextArea, JTextComponent, JViewport, Icon, Highlighter, Pattern, Matcher, MatteBorder] author: aterai pubdate: 2013-01-28T02:11:33+09:00 description: JScrollBarなどにJTextAreaの文字列検索の結果をハイライト表示します。 image: https://lh4.googleusercontent.com/-69jv_2q3f8g/UQT6FH3HXbI/AAAAAAAABcY/FmYcY3aLr6w/s800/ScrollBarSearchHighlighter.png hreflang: href: https://java-swing-tips.blogspot.com/2013/01/jscrollbar-search-highlighter.html lang: en --- * 概要 [#summary] `JScrollBar`などに`JTextArea`の文字列検索の結果をハイライト表示します。 #download(https://lh4.googleusercontent.com/-69jv_2q3f8g/UQT6FH3HXbI/AAAAAAAABcY/FmYcY3aLr6w/s800/ScrollBarSearchHighlighter.png) * サンプルコード [#sourcecode] #code(link){{ scrollbar.setUI(new WindowsScrollBarUI() { @Override protected void paintTrack( Graphics g, JComponent c, Rectangle trackBounds) { super.paintTrack(g, c, trackBounds); Rectangle rect = textArea.getBounds(); double sy = trackBounds.getHeight() / rect.getHeight(); AffineTransform at = AffineTransform.getScaleInstance(1d, sy); Highlighter highlighter = textArea.getHighlighter(); g.setColor(Color.YELLOW); try { for (Highlighter.Highlight hh: highlighter.getHighlights()) { Rectangle r = textArea.modelToView(hh.getStartOffset()); Rectangle s = at.createTransformedShape(r).getBounds(); int h = 2; // Math.max(2, s.height - 2); g.fillRect(trackBounds.x, trackBounds.y + s.y, trackBounds.width, h); } } catch (BadLocationException e) { e.printStackTrace(); } } }); }} * 解説 [#explanation] 上記のサンプルでは、`ScrollBarUI#paintTrack(...)`メソッドをオーバーライドして、`JTextArea`内の文字列の検索結果を縦の`JScrollBar`内部に描画しています。 - `1`行分のハイライトの高さは`2px`で固定 - 検索結果の位置は`JTextComponent#modelToView(Matcher#start());`を利用しているため、ハイライト対象の文字列が折り返しで`2`行になってもハイライトされるのは開始位置のある`1`行目のみ - 以下のような`Icon`を設定した`JLabel`を`JScrollPane#setRowHeaderView(...)`で追加する方法もある -- 縦`JScrollBar`に直接ハイライトを描画しないので上下の増減ボタンサイズは考慮しない -- ノブの代わりに現在表示位置を示す領域を半透明で描画 #code{{ JLabel label = new JLabel(new Icon() { private final Color THUMB_COLOR = new Color(0, 0, 255, 50); private final Rectangle thumbRect = new Rectangle(); private final JTextComponent textArea; private final JScrollBar scrollbar; public HighlightIcon(JTextComponent textArea, JScrollBar scrollbar) { this.textArea = textArea; this.scrollbar = scrollbar; } @Override public void paintIcon(Component c, Graphics g, int x, int y) { // Rectangle rect = textArea.getBounds(); // Dimension sbSize = scrollbar.getSize(); // Insets sbInsets = scrollbar.getInsets(); // double sy = (sbSize.height - sbInsets.top - sbInsets.bottom) / rect.getHeight(); int itop = scrollbar.getInsets().top; BoundedRangeModel range = scrollbar.getModel(); double sy = range.getExtent() / (double) (range.getMaximum() - range.getMinimum()); AffineTransform at = AffineTransform.getScaleInstance(1.0, sy); Highlighter highlighter = textArea.getHighlighter(); // paint Highlight g.setColor(Color.RED); try { for (Highlighter.Highlight hh: highlighter.getHighlights()) { Rectangle r = textArea.modelToView(hh.getStartOffset()); Rectangle s = at.createTransformedShape(r).getBounds(); int h = 2; // Math.max(2, s.height - 2); g.fillRect(x, y + itop + s.y, getIconWidth(), h); } } catch (BadLocationException e) { e.printStackTrace(); } // paint Thumb if (scrollbar.isVisible()) { // JViewport vport = Objects.requireNonNull( // (JViewport) SwingUtilities.getAncestorOfClass(JViewport.class, textArea)); // Rectangle thumbRect = vport.getBounds(); thumbRect.height = range.getExtent(); thumbRect.y = range.getValue(); // vport.getViewPosition().y; g.setColor(THUMB_COLOR); Rectangle s = at.createTransformedShape(thumbRect).getBounds(); g.fillRect(x, y + itop + s.y, getIconWidth(), s.height); } } @Override public int getIconWidth() { return 8; } @Override public int getIconHeight() { JViewport vport = Objects.requireNonNull( (JViewport) SwingUtilities.getAncestorOfClass(JViewport.class, textArea)); return vport.getHeight(); } }); scroll.setVerticalScrollBar(scrollbar); /* // Fixed Versions: 7 (b134) scroll.setRowHeaderView(label); /*/ // 6826074 JScrollPane does not revalidate the component hierarchy after scrolling // https://bugs.openjdk.java.net/browse/JDK-6826074 // https://bugs.openjdk.org/browse/JDK-6826074 // Affected Versions: 6u12,6u16,7 JViewport vp = new JViewport() { @Override public void setViewPosition(Point p) { super.setViewPosition(p); revalidate(); } }; vp.setView(label); scroll.setRowHeader(vp); }} ---- - 縦`JScrollBar`の中ではなく左横などにハイライト位置用の`Icon`を表示したい場合は、`MatteBorder`を利用する方法がある #code{{ JScrollBar scrollBar = new JScrollBar(Adjustable.VERTICAL) { @Override public Dimension getPreferredSize() { Dimension d = super.getPreferredSize(); d.width += getInsets().left; return d; } @Override public void updateUI() { super.updateUI(); setBorder(BorderFactory.createMatteBorder(0, 4, 0, 0, new Icon() { @Override public void paintIcon(Component c, Graphics g, int x, int y) { // ...略... } @Override public int getIconWidth() { return getInsets().left; } @Override public int getIconHeight() { return getHeight(); } })); } }; scroll.setVerticalScrollBar(scrollBar); }} * 参考リンク [#reference] - [[JLabelとIconで作成した検索位置表示バーをマウスで操作する>Swing/ScrollBarSearchHighlighter]] * コメント [#comment] #comment - 行ヘッダーを使用したハイライトは`Java7`以降でのみ有効に機能するようです。 -- &user(読者); &new{2013-08-18 (日) 23:10:11}; -- ご指摘ありがとうございます。仰るとおり、`1.6.0_45`で行ヘッダ版が正常に動作しないことを確認しました。回避方法がないか、`Bug Database`あたりを調べてみようと思います。 -- &user(aterai); &new{2013-08-19 (月) 00:04:59}; -- 修正された時期などから、[https://bugs.openjdk.java.net/browse/JDK-6910490 Bug ID: JDK-6910490 MatteBorder JScrollpane interaction]が原因かもと`MatteBorder`は使用せずに直接`Icon`を`JLabel`に追加するよう変更したけど、改善しない…。 -- &user(aterai); &new{2013-08-19 (月) 11:24:23}; -- [https://bugs.openjdk.java.net/browse/JDK-6826074 Bug ID: JDK-6826074 JScrollPane does not revalidate the component hierarchy after scrolling]が原因(`HeavyWeight`、`LightWeight`だけではなくレイアウトがうまく更新されていない?)のようです。`JViewport#setViewPosition(...)`をオーバーライドして`revalidate()`すれば、`1.7.0`と同様の動作をするようになりました。 -- &user(aterai); &new{2013-08-19 (月) 14:43:11}; -- 修正された時期などから、[https://bugs.openjdk.org/browse/JDK-6910490 Bug ID: JDK-6910490 MatteBorder JScrollpane interaction]が原因かもと`MatteBorder`は使用せずに直接`Icon`を`JLabel`に追加するよう変更したけど、改善しない…。 -- &user(aterai); &new{2013-08-19 (月) 11:24:23}; -- [https://bugs.openjdk.org/browse/JDK-6826074 Bug ID: JDK-6826074 JScrollPane does not revalidate the component hierarchy after scrolling]が原因(`HeavyWeight`、`LightWeight`だけではなくレイアウトがうまく更新されていない?)のようです。`JViewport#setViewPosition(...)`をオーバーライドして`revalidate()`すれば、`1.7.0`と同様の動作をするようになりました。 -- &user(aterai); &new{2013-08-19 (月) 14:43:11}; - `Highlighter.Highlight#getStartOffset()`を使用するように変更。 -- &user(aterai); &new{2013-08-23 (金) 16:14:35}; #comment