Swing/TabbedPaneWithText のバックアップ(No.5)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/TabbedPaneWithText へ行く。
- 1 (2005-12-26 (月) 12:36:53)
- 2 (2006-01-06 (金) 05:07:45)
- 3 (2006-02-27 (月) 16:57:08)
- 4 (2007-03-05 (月) 01:54:21)
- 5 (2007-09-27 (木) 01:20:23)
- 6 (2007-10-23 (火) 17:09:12)
- 7 (2011-05-05 (木) 08:27:15)
- 8 (2012-10-28 (日) 22:32:37)
- 9 (2013-03-18 (月) 19:29:57)
- 10 (2013-03-21 (木) 15:47:25)
- 11 (2013-09-06 (金) 15:31:52)
- 12 (2014-11-25 (火) 03:03:31)
- 13 (2015-02-04 (水) 18:53:38)
- 14 (2015-03-04 (水) 17:19:20)
- 15 (2017-01-20 (金) 13:20:23)
- 16 (2017-12-19 (火) 16:21:48)
- 17 (2019-02-14 (木) 12:45:11)
- 18 (2019-02-18 (月) 13:44:59)
- 19 (2020-12-05 (土) 16:18:33)
- 20 (2023-04-05 (水) 13:41:03)
TITLE:JTabbedPaneの余白に文字列を表示
JTabbedPaneの余白に文字列を表示
編集者:Terai Atsuhiro
作成日:2005-12-26
更新日:2023-04-05 (水) 13:41:21
概要
JTabbedPaneの右側の余白に文字列を表示します。JTabbedPane with non-tabbed textの投稿からソースコードを引用しています。
#screenshot
サンプルコード
tab = new JTabbedPane() {
public 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);
}
};
- &jnlp;
- &jar;
- &zip;
解説
JTabbedPane#paintComponentメソッドをオーバーライドして、タブコンポーネントの右側の余白に文字列を描画しています。
右端に十分な余白が無く、文字列を描画するとタブ上に重なってしまう場合は、最後のタブの横から文字列を描画するようになっています。