Swing/ToolTipIcon のバックアップ(No.9)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/ToolTipIcon へ行く。
- 1 (2006-02-13 (月) 14:40:55)
- 2 (2006-02-27 (月) 16:47:01)
- 3 (2006-07-05 (水) 18:40:09)
- 4 (2006-07-05 (水) 19:50:18)
- 5 (2006-09-11 (月) 09:05:15)
- 6 (2007-08-07 (火) 11:48:52)
- 7 (2008-04-05 (土) 20:47:26)
- 8 (2008-06-17 (火) 17:47:53)
- 9 (2010-11-15 (月) 01:00:55)
- 10 (2011-03-25 (金) 22:05:10)
- 11 (2013-03-14 (木) 20:56:58)
- 12 (2013-09-03 (火) 01:28:59)
- 13 (2014-11-25 (火) 02:19:11)
- 14 (2014-11-25 (火) 03:03:31)
- 15 (2016-01-06 (水) 21:32:03)
- 16 (2016-05-27 (金) 13:15:35)
- 17 (2017-09-01 (金) 17:45:21)
- 18 (2018-09-19 (水) 18:03:51)
- 19 (2018-10-30 (火) 16:33:58)
- 20 (2020-10-28 (水) 01:37:37)
- 21 (2022-08-18 (木) 02:50:19)
TITLE:JToolTipにアイコンを表示
Posted by terai at 2006-02-13
JToolTipにアイコンを表示
JToolTipにアイコンを表示します。
- &jnlp;
- &jar;
- &zip;
#screenshot
サンプルコード
JLabel l1 = new JLabel("JLabelを使ってツールチップにアイコン") {
public JToolTip createToolTip() {
JToolTip tip = super.createToolTip();
tip.setLayout(new BorderLayout());
JLabel iconlabel = new JLabel("テスト", icon, SwingConstants.LEFT);
iconlabel.setBorder(BorderFactory.createEmptyBorder(1, 1, 1, 1));
tip.add(iconlabel);
Insets i = tip.getInsets();
Dimension d = iconlabel.getPreferredSize();
int w = d.width+i.left+i.right;
int h = d.height+i.top+i.bottom;
tip.setPreferredSize(new Dimension(w,h));
return tip;
}
}; l1.setToolTipText("");
JLabel l2 = new JLabel("MatteBorderでツールチップにアイコン") {
public JToolTip createToolTip() {
JToolTip tip = super.createToolTip();
Dimension d = tip.getPreferredSize();
int strw = SwingUtilities.computeStringWidth(
tip.getFontMetrics(tip.getFont()), "テスト");
Border b1 = tip.getBorder();
Border b2 = BorderFactory.createMatteBorder(
0, icon.getIconWidth(), 0, 0, icon);
Border b3 = BorderFactory.createEmptyBorder(1,1,1,1);
Border b4 = BorderFactory.createCompoundBorder(b3, b2);
tip.setBorder(BorderFactory.createCompoundBorder(b1, b4));
Insets i = tip.getInsets();
int w = strw+i.left+i.right+3; // 3?
int h = Math.max(d.height, icon.getIconHeight()+i.top+i.bottom);
tip.setPreferredSize(new Dimension(w,h));
return tip;
}
}; l2.setToolTipText("テスト");
JLabel l3 = new JLabel("htmlタグでツールチップにアイコン");
l3.setToolTipText("<html><img src='"+url+"'>テスト</img></html>");
解説
- 上ラベル
- JToolTipにJLabelを追加しています。
- 中ラベル
- MatteBorderを使ってアイコンを表示するように、createToolTipメソッドをオーバーライドしています。
- 下ラベル
- htmlのimgタグをsetToolTipTextメソッドに使ってアイコンを表示しています。