TITLE:JTabbedPaneのタブを等幅にしてタイトルをクリップ

JTabbedPaneのタブを等幅にしてタイトルをクリップ

編集者:Terai Atsuhiro
作成日:2005-08-08
更新日:2022-12-16 (金) 13:56:00

概要

JTabbedPaneのタブを等幅にし、長いタイトルはクリップして表示します。

#screenshot

サンプルコード

 tab1.setUI(new javax.swing.plaf.basic.BasicTabbedPaneUI() {
   protected int calculateTabWidth(int tabPlacement, int tabIndex,
                                   FontMetrics metrics) {
     int i = tabPane.getTabCount();
     Insets insets = tabPane.getInsets();
     int width = tabPane.getWidth()-insets.left-insets.right;
     return (int)(width/i)-2;
   }
   protected void paintText(Graphics g, int tabPlacement,
       Font font, FontMetrics metrics, int tabIndex,
       String title, Rectangle textRect, 
       boolean isSelected) {
     Rectangle tabRect = rects[tabIndex];
     String clippedText = SwingUtilities.layoutCompoundLabel(
       (JComponent) tabPane,
       metrics, title, getIconForTab(tabIndex),
       SwingUtilities.CENTER,
       SwingUtilities.CENTER,
       SwingUtilities.CENTER,
       SwingUtilities.TRAILING,
       tabRect,
       new Rectangle(),
       textRect,
       textIconGap);
     super.paintText(g, tabPlacement, font, metrics, tabIndex,
                     clippedText, textRect, isSelected);
   }
 });
  • &jnlp;
  • &jar;
  • &zip;

解説

上記のサンプルでは、JTabbedPaneのタブ幅が、すべて等しくなるように設定しています。タイトル文字列のほうが、このタブ幅より長い場合は、SwingUtilities.layoutCompoundLabelメソッドで文字列をクリップして表示します。

タイトルがクリップされていても、ツールチップで元の文字列を表示することができます。

コメント