Dialog can be closed by pressing the escape key : Dialog « Swing JFC « Java






Dialog can be closed by pressing the escape key

    

//   TDialog
//   Copyright (C) by Andrea Carboni.
//   This file may be distributed under the terms of the LGPL license.
//


import java.awt.Frame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.JComponent;
import javax.swing.JDialog;
import javax.swing.JRootPane;
import javax.swing.KeyStroke;


/** This dialog can be closed by pressing the escape key
  */

public class TDialog extends JDialog
{
  private boolean bCancel;

  //---------------------------------------------------------------------------

  public TDialog(Frame f, String title, boolean modal)
  {
    super(f, title, modal);

    bCancel = false;

    addWindowListener(new WindowAdapter()
      {
        public void windowClosing(WindowEvent e)
        {
          bCancel = true;
        }
      }
    );
  }

  //---------------------------------------------------------------------------

  protected JRootPane createRootPane()
  {
    ActionListener al = new ActionListener()
    {
      public void actionPerformed(ActionEvent ae)
      {
        hide();
        bCancel = true;
      }
    };

    KeyStroke stroke   = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0);
    JRootPane rootPane = super.createRootPane();

    rootPane.registerKeyboardAction(al, stroke, JComponent.WHEN_IN_FOCUSED_WINDOW);

    return rootPane;
  }

  //---------------------------------------------------------------------------

  /** Packs the dialog, centers it on its parent, shows it and disposes it on exit
    */

  public void showDialog()
  {
    bCancel = false;
    pack();
    setLocationRelativeTo(getParent());
    show();
  }

  //---------------------------------------------------------------------------

  public void setCancelled()
  {
    bCancel = true;
  }

  //---------------------------------------------------------------------------

  public void clearCancelled()
  {
    bCancel = false;
  }

  //---------------------------------------------------------------------------

  public boolean isCancelled()
  {
    return bCancel;
  }
}

   
    
    
    
  








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 which displays indeterminate progress
25.Dialog with Escape KeyDialog with Escape Key
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