Color ComboBox: ComboBoxEditor Demo : ComboBox « Swing JFC « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing JFC » ComboBoxScreenshots 
Color ComboBox: ComboBoxEditor Demo
Color ComboBox: ComboBoxEditor Demo
 
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.ComboBoxEditor;
import javax.swing.DefaultListCellRenderer;
import javax.swing.JButton;
import javax.swing.JColorChooser;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.ListCellRenderer;
import javax.swing.event.EventListenerList;

public class ColorComboBox {
  static class ColorCellRenderer implements ListCellRenderer {
    protected DefaultListCellRenderer defaultRenderer = new DefaultListCellRenderer();

    // width doesn't matter as combobox will size
    private final static Dimension preferredSize = new Dimension(020);

    public Component getListCellRendererComponent(JList list, Object value,
        int index, boolean isSelected, boolean cellHasFocus) {
      JLabel renderer = (JLabeldefaultRenderer
          .getListCellRendererComponent(list, value, index,
              isSelected, cellHasFocus);
      if (value instanceof Color) {
        renderer.setBackground((Colorvalue);
      }
      renderer.setPreferredSize(preferredSize);
      return renderer;
    }
  }

  public static void main(String args[]) {
    Color colors[] Color.black, Color.blue, Color.cyan, Color.darkGray,
        Color.gray, Color.green, Color.lightGray, Color.magenta,
        Color.orange, Color.pink, Color.red, Color.white, Color.yellow };
    JFrame frame = new JFrame("Color JComboBox");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container contentPane = frame.getContentPane();

    final JComboBox comboBox = new JComboBox(colors);
    comboBox.setMaximumRowCount(5);
    comboBox.setEditable(true);
    comboBox.setRenderer(new ColorCellRenderer());
    Color color = (ColorcomboBox.getSelectedItem();
    ComboBoxEditor editor = new ColorComboBoxEditor(color);
    comboBox.setEditor(editor);
    contentPane.add(comboBox, BorderLayout.NORTH);

    final JLabel label = new JLabel();
    label.setOpaque(true);
    label.setBackground((ColorcomboBox.getSelectedItem());
    contentPane.add(label, BorderLayout.CENTER);

    ActionListener actionListener = new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        Color selectedColor = (ColorcomboBox.getSelectedItem();
        label.setBackground(selectedColor);
      }
    };
    comboBox.addActionListener(actionListener);

    frame.setSize(300200);
    frame.setVisible(true);
  }
}

class ColorComboBoxEditor implements ComboBoxEditor {
  final protected JButton editor;

  transient protected EventListenerList listenerList = new EventListenerList();

  public ColorComboBoxEditor(Color initialColor) {
    editor = new JButton("");
    editor.setBackground(initialColor);
    ActionListener actionListener = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        Color currentBackground = editor.getBackground();
        Color color = JColorChooser.showDialog(editor, "Color Chooser",
            currentBackground);
        if ((color != null&& (currentBackground != color)) {
          editor.setBackground(color);
          fireActionEvent(color);
        }
      }
    };
    editor.addActionListener(actionListener);
  }

  public void addActionListener(ActionListener l) {
    listenerList.add(ActionListener.class, l);
  }

  public Component getEditorComponent() {
    return editor;
  }

  public Object getItem() {
    return editor.getBackground();
  }

  public void removeActionListener(ActionListener l) {
    listenerList.remove(ActionListener.class, l);
  }

  public void selectAll() {
    // ignore
  }

  public void setItem(Object newValue) {
    if (newValue instanceof Color) {
      Color color = (ColornewValue;
      editor.setBackground(color);
    else {
      // Try to decode
      try {
        Color color = Color.decode(newValue.toString());
        editor.setBackground(color);
      catch (NumberFormatException e) {
        // ignore - value unchanged
      }
    }
  }

  protected void fireActionEvent(Color color) {
    Object listeners[] = listenerList.getListenerList();
    for (int i = listeners.length - 2; i >= 0; i -= 2) {
      if (listeners[i== ActionListener.class) {
        ActionEvent actionEvent = new ActionEvent(editor,
            ActionEvent.ACTION_PERFORMED, color.toString());
        ((ActionListenerlisteners[i + 1])
            .actionPerformed(actionEvent);
      }
    }
  }
}

           
         
  
Related examples in the same category
1. Combobox combines a button or editable field and a drop-down list.
2. Using drop-down listsUsing drop-down lists
3. A fancy example of JComboBox with a custom renderer and editorA fancy example of JComboBox with a custom renderer and editor
4. Editable ComboBoxEditable ComboBox
5. Create a simple combobox
6. Font Chooser ComboBoxFont Chooser ComboBox
7. Color combobox rendererColor combobox renderer
8. Select the combobox by choose the nearby labelSelect the combobox by choose the nearby label
9. ComoboBox loads and saves items automatically from a fileComoboBox loads and saves items automatically from a file
10. Sharing a Model between a JList and JComboBoxSharing a Model between a JList and JComboBox
11. ComboBox Demo 2ComboBox Demo 2
12. Custom ComboBox with ImageCustom ComboBox with Image
13. ComboBox DemoComboBox Demo
14. List: Shared Data SampleList: Shared Data Sample
15. Selecting Combo SampleSelecting Combo Sample
16. MultiKey ComboMultiKey Combo
17. PopupCombo SamplePopupCombo Sample
18. Dual Sample: JList and ComboBoxDual Sample: JList and ComboBox
19. ComboBox SampleComboBox Sample
20. Determining When the Menu of a JComboBox Component Is Displayed
21. Listening for Action Events from a JComboBox Component
22. Listening for Changes to the Selected Item in a JComboBox Component
23. Setting the Number of Visible Items in the Menu of a JComboBox Component
24. Displaying the Menu in a JComboBox Component Using a Keystroke If the Selected Item Is Not Unique
25. Displaying the Menu in a JComboBox Component Using a Keystroke
26. Determining If the Menu of a JComboBox Component Is Visible
27. Selecting an Item in a JComboBox Component with Multiple Keystrokes
28. Adding and Removing an Item in a JComboBox Component
29. Add an item after the first item
30. Add an item to the end of the list
31. Remove first item
32. Remove the last item
33. Remove all items
34. Getting the Items in a JComboBox Component
35. Getting and Setting the Selected Item in a JComboBox Component
36. If the combobox is editable, the new value can be any value
37. Creating a read-only and editable JComboBox Component
38. ArrayListComboBoxModel DemoArrayListComboBoxModel Demo
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.