TITLE:JTabbedPaneの余白に文字列を表示

Posted by at 2005-12-26

JTabbedPaneの余白に文字列を表示

JTabbedPaneの右側の余白に文字列を表示します。Swing - JTabbedPane with non-tabbed textの投稿からソースコードを引用しています。

  • &jnlp;
  • &jar;
  • &zip;
TabbedPaneWithText.png

サンプルコード

tab = new JTabbedPane() {
  @Override protected void paintComponent(Graphics g) {
    super.paintComponent(g);
    String text = "←ちょっとしたタブの説明など";
    FontMetrics fm = getFontMetrics(getFont());
    int stringWidth = fm.stringWidth(text)+10;
    int x = getSize().width-stringWidth;
    Rectangle lastTab = getUI().getTabBounds(this, getTabCount()-1);
    int tabEnd = lastTab.x + lastTab.width;
    if(x<tabEnd) x = tabEnd;
    g.drawString(text, x+5, 18);
  }
};
View in GitHub: Java, Kotlin

解説

JTabbedPane#paintComponentメソッドをオーバーライドして、タブコンポーネントの右側の余白に文字列を描画しています。

右端に十分な余白が無く、文字列を描画するとタブ上に重なってしまう場合は、最後のタブの横から文字列を描画するようになっています。

参考リンク

コメント