• title: JTabbedPaneのTabAreaをスクロール tags: [JTabbedPane, JViewport, JSlider] author: aterai pubdate: 2009-05-18T14:51:20+09:00 description: JTabbedPaneのTabAreaをJSliderを使ってスクロールします。

概要

JTabbedPaneTabAreaJSliderを使ってスクロールします。

サンプルコード

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)としたJTabbedPaneTabAreaは、名前がTabbedPane.scrollableViewportJViewportに配置されています。

上記のサンプルでは、このJViewportを取得して、JViewport#scrollRectToVisible(Rectangle)メソッドを使用し、矢印ボタンをクリックせずにTabAreaのスクロールを行っています。

コメント