Dialog with Escape Key : Dialog « Swing JFC « Java






Dialog with Escape Key

Dialog with Escape Key
   
import java.awt.BorderLayout;
import java.awt.Dialog;
import java.awt.Frame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.InputMap;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JRootPane;
import javax.swing.KeyStroke;

public class FrameKey {

  public static void main(String args[]) {
    final JFrame frame = new JFrame("Frame Key");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Action actionListener = new AbstractAction() {
      public void actionPerformed(ActionEvent actionEvent) {
        JDialog dialog = new EscapeDialog(frame, "Hey");
        JButton button = new JButton("Okay");
        ActionListener innerActionListener = new ActionListener() {
          public void actionPerformed(ActionEvent actionEvent) {
            System.out.println("Dialog Button Selected");
          }
        };
        button.addActionListener(innerActionListener);
        dialog.getContentPane().add(button, BorderLayout.SOUTH);
        dialog.setSize(200, 200);
        dialog.show();
      }
    };

    JPanel content = (JPanel) frame.getContentPane();
    KeyStroke stroke = KeyStroke.getKeyStroke("M");

    InputMap inputMap = content
        .getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
    inputMap.put(stroke, "OPEN");
    content.getActionMap().put("OPEN", actionListener);

    frame.setSize(300, 300);
    frame.setVisible(true);
  }
}

class EscapeDialog extends JDialog {
  public EscapeDialog() {
    this((Frame) null, false);
  }

  public EscapeDialog(Frame owner) {
    this(owner, false);
  }

  public EscapeDialog(Frame owner, boolean modal) {
    this(owner, null, modal);
  }

  public EscapeDialog(Frame owner, String title) {
    this(owner, title, false);
  }

  public EscapeDialog(Frame owner, String title, boolean modal) {
    super(owner, title, modal);
  }

  public EscapeDialog(Dialog owner) {
    this(owner, false);
  }

  public EscapeDialog(Dialog owner, boolean modal) {
    this(owner, null, modal);
  }

  public EscapeDialog(Dialog owner, String title) {
    this(owner, title, false);
  }

  public EscapeDialog(Dialog owner, String title, boolean modal) {
    super(owner, title, modal);
  }

  protected JRootPane createRootPane() {
    JRootPane rootPane = new JRootPane();
    KeyStroke stroke = KeyStroke.getKeyStroke("ESCAPE");
    Action actionListener = new AbstractAction() {
      public void actionPerformed(ActionEvent actionEvent) {
        setVisible(false);
      }
    };
    InputMap inputMap = rootPane
        .getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
    inputMap.put(stroke, "ESCAPE");
    rootPane.getActionMap().put("ESCAPE", actionListener);

    return rootPane;
  }
}

           
         
    
    
  








Related examples in the same category

1.Creating and using Dialog BoxesCreating and using Dialog Boxes
2.Dialog boxes and creating your own componentsDialog boxes and creating your own components
3.A frame that can easily support internal frame dialogsA frame that can easily support internal frame dialogs
4.An example of using the JOptionPane with a custom list of options in anAn example of using the JOptionPane with a custom list of options in an
5.See the differences between various types of option panesSee the differences between various types of option panes
6.Vote DialogVote Dialog
7.Create simple about dialogCreate simple about dialog
8.Dialog separatorDialog separator
9.Message dialogMessage dialog
10.Error message dialogError message dialog
11.Information dialog with customized logoInformation dialog with customized logo
12.Input dialog with user-defined logoInput dialog with user-defined logo
13.Confirmation dialogConfirmation dialog
14.Default button for dialog: press Enter to activateDefault button for dialog: press Enter to activate
15.Simple dialog for asking a yes no questionSimple dialog for asking a yes no question
16.Class to Prompt the User for an ID and Password
17.Simple Save Dialog demoSimple Save Dialog demo
18.Demonstrate JOptionPaneDemonstrate JOptionPane
19.Create Color Sample PopupCreate Color Sample Popup
20.Simple Input DialogSimple Input Dialog
21.No button dialogNo button dialog
22.Message Dialog demo Message Dialog demo
23.Escape Key close Dialog
24.Dialog can be closed by pressing the escape key
25.Dialog which displays indeterminate progress
26.Modal Message Dialog
27.A frame with a menu whose File->Connect action shows a password dialogA frame with a menu whose File->Connect action shows a password dialog
28.A sample modal dialog that displays a message and waits for the user to click the Ok button