Swing/ClippedLRComboBox のバックアップ(No.8)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/ClippedLRComboBox へ行く。
- 1 (2005-09-12 (月) 13:00:56)
- 2 (2005-09-12 (月) 23:29:51)
- 3 (2006-02-27 (月) 15:33:00)
- 4 (2006-04-08 (土) 20:51:26)
- 5 (2006-04-12 (水) 19:37:05)
- 6 (2006-07-07 (金) 12:26:23)
- 7 (2007-01-11 (木) 14:20:21)
- 8 (2007-09-16 (日) 00:28:21)
- 9 (2008-06-17 (火) 17:50:19)
- 10 (2008-08-13 (水) 15:12:54)
- 11 (2011-03-13 (日) 01:49:33)
- 12 (2012-02-03 (金) 14:26:04)
- 13 (2012-02-03 (金) 16:02:16)
- 14 (2013-03-24 (日) 21:29:51)
- 15 (2014-11-28 (金) 16:24:34)
- 16 (2015-03-01 (日) 16:08:08)
- 17 (2016-05-26 (木) 14:35:58)
- 18 (2017-08-12 (土) 21:43:45)
- 19 (2018-02-24 (土) 19:51:30)
- 20 (2018-04-02 (月) 17:50:03)
- 21 (2020-03-31 (火) 13:50:03)
- 22 (2021-10-08 (金) 17:41:41)
- 23 (2023-07-21 (金) 17:12:28)
TITLE:JComboBoxのItemを左右にクリップして配置
JComboBoxのItemを左右にクリップして配置
編集者:Terai Atsuhiro
作成日:2005-09-12
更新日:2023-07-21 (金) 17:12:28
概要
JComboBoxのItemにテキストをクリップして左右に分けて配置します。
#screenshot
サンプルコード
class MyCellRenderer extends JPanel implements ListCellRenderer {
private final JLabel lbl1 = new JLabel();
private final JLabel lbl2 = new JLabel();
private final Color cfc = UIManager.getColor("ComboBox.foreground");
private final Color cbc = UIManager.getColor("ComboBox.background");
private final Color csfc = UIManager.getColor("ComboBox.selectionForeground");
private final Color csbc = UIManager.getColor("ComboBox.selectionBackground");
private final Color cdfc = UIManager.getColor("ComboBox.disabledForeground");
public MyCellRenderer(Dimension dim, int rightw) {
super(new BorderLayout());
lbl1.setOpaque(true);
lbl2.setOpaque(true);
this.setOpaque(true);
lbl1.setBorder(BorderFactory.createEmptyBorder(0,2,0,0));
lbl2.setPreferredSize(new Dimension(rightw, 0));
lbl2.setBorder(BorderFactory.createEmptyBorder(0,5,0,0));
this.add(lbl1, BorderLayout.CENTER);
this.add(lbl2, BorderLayout.EAST);
this.setPreferredSize(dim);
}
public Component getListCellRendererComponent(
JList list, Object value, int index,
boolean isSelected, boolean cellHasFocus) {
LRItem item = (LRItem)value;
lbl1.setText(item.getLeftText());
lbl2.setText(item.getRightText());
lbl1.setBackground(isSelected ? csbc : cbc);
lbl2.setBackground(isSelected ? csbc : cbc);
this.setBackground(isSelected ? csbc : cbc);
lbl1.setForeground(isSelected ? csfc : cfc);
lbl2.setForeground(cdfc);
return this;
}
}
- &jnlp;
- &jar;
- &zip;
解説
上記のサンプルでは、JLabelを二つ並べたJPanelをレンダラーにすることで、Itemに設定した文字列を左右に表示しています。このため文字列が長い場合、JLabelがこれを自動的にクリップしてくれます。
参考リンク
- JComboBoxのItemを左右に配置
- こちらはhtmlのtableタグを使用して同様の表示(クリップはしない)を行っています。