I use DefaultComboBoxModel to add specific items to my JComboBox (String text, Icon icon). But something goes wrong. When I add those two items to my combo model it looks like this:
ComboBoxWindow:
[icon ]
[icon value]
In summary, my code for combobox looks like this:
private JComboBox combobox;
...
DefaultComboBoxModel model = new DefaultComboBoxModel();
combobox = new JComboBox(model);
...
/*
* I use JButton for 'sending' hex value taken from JTextField to 'combobox'
* with help of 'addToComboBox()' method
*/
public void addToComboBox() {
String value = field.getText().toString(); // getin' text from 'left' JTextField
Color color = tcc.getColor(); // getin' color from some other JLabel
ColorSwatch icon = new ColorSwatch(10, true); // using some custom method to create little square icon
icon.setColor(color); // seting color of created icon
combobox.addItem(icon);
combobox.addItem(value);
}
I considered using ListCellRenderer, but I don't know how can I 'tell' it that it should render, for example, a JLabel component by using 'value' and 'icon' simultaneously. It's very important for me to have possibility to add those items dynamically by using a JButton.
I did it & it works now just fine :) Basicaly 1. I've used a DefaultComboBoxModel, 2. I've added it to my JComboBox, 3. I've added a custom ListCellRenderer which 'translates' taken string (e.g. '#FFFFFF') to a icon & proper text and at the end creates a JLabel with that newborn icon and text.
And with renderer like this I can just add items to my combobox...
...and we are home now. Hope that code will help someone :)