JComboBoxのアイテムをBorderで修飾してグループ分け
Total: 10446
, Today: 1
, Yesterday: 0
Posted by aterai at
Last-modified:
概要
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);
// ...
class 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;
}
}
// ...
View in GitHub: Java, Kotlin解説
レンダラーの中で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のようにフィールド表示(