Selecting Combo Sample : ComboBox « Swing JFC « Java






Selecting Combo Sample

Selecting Combo Sample
  
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.ItemSelectable;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.io.PrintWriter;
import java.io.StringWriter;

import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;

public class SelectingComboSample {
  static private String selectedString(ItemSelectable is) {
    Object selected[] = is.getSelectedObjects();
    return ((selected.length == 0) ? "null" : (String) selected[0]);
  }

  public static void main(String args[]) {
    String labels[] = { "A", "B", "C", "D","E", "F", "G", "H","J", "I" };
    JFrame frame = new JFrame("Selecting JComboBox");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container contentPane = frame.getContentPane();

    JComboBox comboBox = new JComboBox(labels);
    contentPane.add(comboBox, BorderLayout.SOUTH);

    final JTextArea textArea = new JTextArea();
    textArea.setEditable(false);
    JScrollPane sp = new JScrollPane(textArea);
    contentPane.add(sp, BorderLayout.CENTER);

    ItemListener itemListener = new ItemListener() {
      public void itemStateChanged(ItemEvent itemEvent) {
        StringWriter sw = new StringWriter();
        PrintWriter pw = new PrintWriter(sw);
        int state = itemEvent.getStateChange();
        String stateString = ((state == ItemEvent.SELECTED) ? "Selected": "Deselected");
        pw.print("Item: " + itemEvent.getItem());
        pw.print(", State: " + stateString);
        ItemSelectable is = itemEvent.getItemSelectable();
        pw.print(", Selected: " + selectedString(is));
        pw.println();
        textArea.append(sw.toString());
      }
    };
    comboBox.addItemListener(itemListener);

    ActionListener actionListener = new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        StringWriter sw = new StringWriter();
        PrintWriter pw = new PrintWriter(sw);
        pw.print("Command: " + actionEvent.getActionCommand());
        ItemSelectable is = (ItemSelectable) actionEvent.getSource();
        pw.print(", Selected: " + selectedString(is));
        pw.println();
        textArea.append(sw.toString());
      }
    };
    comboBox.addActionListener(actionListener);

    frame.setSize(400, 200);
    frame.setVisible(true);
  }
}

           
         
    
  








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.MultiKey ComboMultiKey Combo
16.PopupCombo SamplePopupCombo Sample
17.Dual Sample: JList and ComboBoxDual Sample: JList and ComboBox
18.ComboBox SampleComboBox Sample
19.Color ComboBox: ComboBoxEditor DemoColor ComboBox: ComboBoxEditor Demo
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
39.A frame with a sample text label and a combo box for selecting font faces