Swing/ScrollTabToVisible のバックアップ(No.3)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/ScrollTabToVisible へ行く。
- title: JTabbedPaneのTabAreaをスクロール tags: [JTabbedPane, JViewport, JSlider] author: aterai pubdate: 2009-05-18T14:51:20+09:00 description: JTabbedPaneのTabAreaをJSliderを使ってスクロールします。
概要
JTabbedPane
のTabArea
をJSlider
を使ってスクロールします。
Screenshot
Advertisement
サンプルコード
private static void scrollTabAt(JTabbedPane tp, int index) {
JViewport vp = null;
for(Component c:tp.getComponents()) {
if("TabbedPane.scrollableViewport".equals(c.getName())) {
vp = (JViewport)c;
break;
}
}
if(vp==null) return;
final JViewport viewport = vp;
for(int i=0;i<tp.getTabCount();i++)
tp.setForegroundAt(i, i==index?Color.RED:Color.BLACK);
Dimension d = tp.getSize();
Rectangle r = tp.getBoundsAt(index);
int gw = (d.width-r.width)/2;
r.grow(gw, 0);
viewport.scrollRectToVisible(r);
}
View in GitHub: Java, Kotlin解説
JTabbedPane#setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT)
としたJTabbedPane
のTabArea
は、名前がTabbedPane.scrollableViewport
なJViewport
に配置されています。
上記のサンプルでは、このJViewport
を取得して、JViewport#scrollRectToVisible(Rectangle)
メソッドを使用し、矢印ボタンをクリックせずにTabArea
のスクロールを行っています。