Swing/BorderSeparator のバックアップ(No.22)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/BorderSeparator へ行く。
- 1 (2006-02-27 (月) 15:28:49)
- 2 (2006-04-12 (水) 19:34:47)
- 3 (2006-11-10 (金) 13:51:31)
- 4 (2007-04-09 (月) 18:01:27)
- 5 (2007-05-27 (日) 01:31:08)
- 6 (2007-08-13 (月) 14:44:44)
- 7 (2008-06-19 (木) 14:29:25)
- 8 (2008-09-04 (木) 17:43:39)
- 9 (2008-11-23 (日) 21:41:10)
- 10 (2010-12-13 (月) 00:05:32)
- 11 (2013-02-20 (水) 15:28:56)
- 12 (2013-03-24 (日) 21:28:07)
- 13 (2013-10-18 (金) 15:53:08)
- 14 (2015-01-14 (水) 15:44:15)
- 15 (2015-03-12 (木) 15:09:25)
- 16 (2015-03-19 (木) 16:30:59)
- 17 (2015-03-25 (水) 17:01:05)
- 18 (2016-09-07 (水) 15:37:42)
- 19 (2017-10-17 (火) 15:19:21)
- 20 (2018-09-27 (木) 20:51:20)
- 21 (2019-05-22 (水) 19:34:28)
- 22 (2020-09-26 (土) 17:34:34)
- 23 (2022-05-31 (火) 17:36:21)
- category: swing folder: BorderSeparator title: JComboBoxのアイテムをBorderで修飾してグループ分け tags: [JComboBox, Border, ListCellRenderer, MatteBorder] author: aterai pubdate: 2005-09-19T09:10:06+09:00 description: JComboBoxのアイテムをBorderを使用して修飾してグループ分けします。 image:
概要
JComboBox
のアイテムをBorder
を使用して修飾してグループ分けします。
Screenshot
Advertisement
サンプルコード
JComboBox combobox = new JComboBox();
JSeparator sep = new JSeparator();
ListCellRenderer lcr = combobox.getRenderer();
combobox.setRenderer(new ListCellRenderer() {
@Override public Component getListCellRendererComponent(
JList list, Object value, int index,
boolean isSelected, boolean cellHasFocus) {
MyItem item = (MyItem) value;
JLabel label = (JLabel) lcr.getListCellRendererComponent(
list, item, index, isSelected, cellHasFocus);
if (item.hasSeparator()) {
label.setBorder(
BorderFactory.createMatteBorder(1, 0, 0, 0, Color.GRAY));
} else {
label.setBorder(BorderFactory.createEmptyBorder());
}
return label;
}
});
DefaultComboBoxModel model = new DefaultComboBoxModel();
model.addElement(new MyItem("aaaa"));
model.addElement(new MyItem("eeeeeeeee", true));
model.addElement(new MyItem("bbb12"));
combobox.setModel(model);
combobox.setEditable(true);
View in GitHub: Java, Kotlinclass MyItem {
private final String item;
private final boolean flag;
public MyItem(String str) {
this(str, false);
}
public MyItem(String str, boolean flg) {
item = str;
flag = flg;
}
@Override public String toString() {
return item;
}
public boolean hasSeparator() {
return flag;
}
}
// ...
解説
レンダラーの中で、JLabel
をMatteBorder
で修飾し、JSeparator
を使用せずにItem
をグループ分けしているように見せかけています。
JComboBox
が編集可- フィールド表示には
ListCellRenderer
ではなくJTextField
が使用されるため、JComboBoxにJSeparatorを挿入する方法より簡単に区切りを表現可能
- フィールド表示には
JComboBox
が編集不可- JComboBox Items with Separators - Santhosh Kumar's Weblogのようにフィールド表示(
index!=-1
の場合)で区切りが表示されないようにする必要があるcombobox.setRenderer(new ListCellRenderer() { @Override public Component getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { MyItem item = (MyItem) value; JLabel label = (JLabel) lcr.getListCellRendererComponent( list, item, index, isSelected, cellHasFocus); if (index != -1 && item.hasSeparator()) { label.setBorder( BorderFactory.createMatteBorder(1, 0, 0, 0, Color.GRAY)); } else { label.setBorder(BorderFactory.createEmptyBorder()); } return label; } });
- JComboBox Items with Separators - Santhosh Kumar's Weblogのようにフィールド表示(