Swing Action Demo : Various Event Listener « Event « Java






Swing Action Demo

Swing Action Demo
  
/*
Definitive Guide to Swing for Java 2, Second Edition
By John Zukowski     
ISBN: 1-893115-78-X
Publisher: APress
*/

import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Container;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemListener;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Enumeration;
import java.util.Vector;

import javax.swing.AbstractButton;
import javax.swing.Action;
import javax.swing.BorderFactory;
import javax.swing.ButtonGroup;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JRadioButton;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.JTextPane;
import javax.swing.border.Border;
import javax.swing.event.ChangeListener;
import javax.swing.text.JTextComponent;

public class ListActions {
  public static void main(String args[]) {
    JFrame frame = new JFrame("TextAction List");
    Container contentPane = frame.getContentPane();

    String components[] = { "JTextField", "JPasswordField", "JTextArea",
        "JTextPane", "JEditorPane" };

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

    ActionListener actionListener = new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        // Determine which component selected
        String command = actionEvent.getActionCommand();
        JTextComponent component = null;
        if (command.equals("JTextField")) {
          component = new JTextField();
        } else if (command.equals("JPasswordField")) {
          component = new JPasswordField();
        } else if (command.equals("JTextArea")) {
          component = new JTextArea();
        } else if (command.equals("JTextPane")) {
          component = new JTextPane();
        } else {
          component = new JEditorPane();
        }

        // Process action list
        Action actions[] = component.getActions();
        // Java 2 specific code to sort
        Comparator comparator = new Comparator() {
          public int compare(Object a1, Object a2) {
            int returnValue = 0;
            if ((a1 instanceof Action) && (a2 instanceof Action)) {
              String firstName = (String) ((Action) a1)
                  .getValue(Action.NAME);
              String secondName = (String) ((Action) a2)
                  .getValue(Action.NAME);
              returnValue = firstName.compareTo(secondName);
            }
            return returnValue;
          }
        };
        Arrays.sort(actions, comparator);
        // end Java 2 specific code
        StringWriter sw = new StringWriter();
        PrintWriter pw = new PrintWriter(sw, true);
        int count = actions.length;
        pw.println("Count: " + count);
        for (int i = 0; i < count; i++) {
          pw.print(actions[i].getValue(Action.NAME));
          pw.print(" : ");
          pw.println(actions[i].getClass().getName());
        }
        pw.close();
        textArea.setText(sw.toString());
        textArea.setCaretPosition(0);
      }
    };

    final Container componentsContainer = RadioButtonUtils
        .createRadioButtonGrouping(components, "Pick to List Actions",
            actionListener);

    contentPane.add(componentsContainer, BorderLayout.WEST);
    frame.setSize(400, 250);
    frame.setVisible(true);
  }
}

class RadioButtonUtils {
  private RadioButtonUtils() {
    // private constructor so you can't create instances
  }

  public static Enumeration getSelectedElements(Container container) {
    Vector selections = new Vector();
    Component components[] = container.getComponents();
    for (int i = 0, n = components.length; i < n; i++) {
      if (components[i] instanceof AbstractButton) {
        AbstractButton button = (AbstractButton) components[i];
        if (button.isSelected()) {
          selections.addElement(button.getText());
        }
      }
    }
    return selections.elements();
  }

  public static Container createRadioButtonGrouping(String elements[]) {
    return createRadioButtonGrouping(elements, null, null, null, null);
  }

  public static Container createRadioButtonGrouping(String elements[],
      String title) {
    return createRadioButtonGrouping(elements, title, null, null, null);
  }

  public static Container createRadioButtonGrouping(String elements[],
      String title, ItemListener itemListener) {
    return createRadioButtonGrouping(elements, title, null, itemListener,
        null);
  }

  public static Container createRadioButtonGrouping(String elements[],
      String title, ActionListener actionListener) {
    return createRadioButtonGrouping(elements, title, actionListener, null,
        null);
  }

  public static Container createRadioButtonGrouping(String elements[],
      String title, ActionListener actionListener,
      ItemListener itemListener) {
    return createRadioButtonGrouping(elements, title, actionListener,
        itemListener, null);
  }

  public static Container createRadioButtonGrouping(String elements[],
      String title, ActionListener actionListener,
      ItemListener itemListener, ChangeListener changeListener) {
    JPanel panel = new JPanel(new GridLayout(0, 1));
    //   If title set, create titled border
    if (title != null) {
      Border border = BorderFactory.createTitledBorder(title);
      panel.setBorder(border);
    }
    //   Create group
    ButtonGroup group = new ButtonGroup();
    JRadioButton aRadioButton;
    //   For each String passed in:
    //   Create button, add to panel, and add to group
    for (int i = 0, n = elements.length; i < n; i++) {
      aRadioButton = new JRadioButton(elements[i]);
      panel.add(aRadioButton);
      group.add(aRadioButton);
      if (actionListener != null) {
        aRadioButton.addActionListener(actionListener);
      }
      if (itemListener != null) {
        aRadioButton.addItemListener(itemListener);
      }
      if (changeListener != null) {
        aRadioButton.addChangeListener(changeListener);
      }
    }
    return panel;
  }
}

           
         
    
  








Related examples in the same category

1.Display the addXXXListener methods of any Swing classDisplay the addXXXListener methods of any Swing class
2.Show events as they happenShow events as they happen
3.A demonstration of the ChangeEvents generated by the BoundedRangeModelA demonstration of the ChangeEvents generated by the BoundedRangeModel
4.An application that shows the Action class in, well, actionAn application that shows the Action class in, well, action
5.Showing how to add Actions for KeyStrokesShowing how to add Actions for KeyStrokes
6.SketchSketch
7.EventListenerList enabled Secret LabelEventListenerList enabled Secret Label
8.TextAction exampleTextAction example
9.StateChange ListenerStateChange Listener
10.CheckBox Item ListenerCheckBox Item Listener
11.AncestorListener DemoAncestorListener Demo
12.KeyStroke SampleKeyStroke Sample
13.Focus Next Component SampleFocus Next Component Sample
14.PropertyChangeListener SamplePropertyChangeListener Sample
15.Timer SampleTimer Sample
16.KeyListener, ActionListener Demo 1KeyListener, ActionListener Demo 1
17.KeyListener, ActionListener Demo 2KeyListener, ActionListener Demo 2
18.Action, Mouse FocusAction, Mouse Focus
19.Load Save ActionLoad Save Action
20.Demonstrating the WindowListener with a WindowAdapterDemonstrating the WindowListener with a WindowAdapter
21.Demonstrating the ActionListenerDemonstrating the ActionListener
22.Demonstrating the AdjustmentListenerDemonstrating the AdjustmentListener
23.Demonstrating the AncestorListener
24.Demonstrating the ComponentListenerDemonstrating the ComponentListener
25.A ComponentAdapter.
26.JAR Archives: Pack Progress Monitor
27.A position of a window on the screen.
28.Using ComponentListener to catch the JFrame Maximization event
29.Demonstrating the ContainerListenerDemonstrating the ContainerListener
30.Demonstrating the FocusListenerDemonstrating the FocusListener
31.Demonstrating the HyperlinkListenerDemonstrating the HyperlinkListener
32.Demonstrating the InternalFrameListenerDemonstrating the InternalFrameListener
33.Demonstrating the ItemListenerDemonstrating the ItemListener
34.Implement a graphical list selection monitorImplement a graphical list selection monitor
35.ItemListener for JRadioButton
36.Demonstrating the KeyListenerDemonstrating the KeyListener
37.Demonstrating the MenuListenerDemonstrating the MenuListener
38.Demonstrating the MouseListener and MouseMotionListenerDemonstrating the MouseListener and MouseMotionListener
39.Demonstrating the MouseWheelListenerDemonstrating the MouseWheelListener
40.Demonstrating the PopupMenuListenerDemonstrating the PopupMenuListener
41.Demonstrating the WindowListener
42.implements VetoableChangeListener to block focus change events
43.Responding to KeystrokesResponding to Keystrokes
44.Focus Event DemoFocus Event Demo
45.Container Event DemoContainer Event Demo
46.Component Event DemoComponent Event Demo
47.Window Event DemoWindow Event Demo
48.Handle a window closing event
49.Installs/resets a ComponentListener to resize the given window to minWidth/Height if needed