Creating and using Dialog Boxes : Dialog « Swing JFC « Java






Creating and using Dialog Boxes

Creating and using Dialog Boxes
   
// : c14:Dialogs.java
// Creating and using Dialog Boxes.
// <applet code=Dialogs width=125 height=75></applet>
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JApplet;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;

class MyDialog extends JDialog {
  public MyDialog(JFrame parent) {
    super(parent, "My dialog", true);
    Container cp = getContentPane();
    cp.setLayout(new FlowLayout());
    cp.add(new JLabel("Here is my dialog"));
    JButton ok = new JButton("OK");
    ok.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        dispose(); // Closes the dialog
      }
    });
    cp.add(ok);
    setSize(150, 125);
  }
}

public class Dialogs extends JApplet {
  private JButton b1 = new JButton("Dialog Box");

  private MyDialog dlg = new MyDialog(null);

  public void init() {
    b1.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        dlg.show();
      }
    });
    getContentPane().add(b1);
  }

  public static void main(String[] args) {
    run(new Dialogs(), 125, 75);
  }

  public static void run(JApplet applet, int width, int height) {
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().add(applet);
    frame.setSize(width, height);
    applet.init();
    applet.start();
    frame.setVisible(true);
  }
} ///:~



           
         
    
    
  








Related examples in the same category

1.Dialog boxes and creating your own componentsDialog boxes and creating your own components
2.A frame that can easily support internal frame dialogsA frame that can easily support internal frame dialogs
3.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
4.See the differences between various types of option panesSee the differences between various types of option panes
5.Vote DialogVote Dialog
6.Create simple about dialogCreate simple about dialog
7.Dialog separatorDialog separator
8.Message dialogMessage dialog
9.Error message dialogError message dialog
10.Information dialog with customized logoInformation dialog with customized logo
11.Input dialog with user-defined logoInput dialog with user-defined logo
12.Confirmation dialogConfirmation dialog
13.Default button for dialog: press Enter to activateDefault button for dialog: press Enter to activate
14.Simple dialog for asking a yes no questionSimple dialog for asking a yes no question
15.Class to Prompt the User for an ID and Password
16.Simple Save Dialog demoSimple Save Dialog demo
17.Demonstrate JOptionPaneDemonstrate JOptionPane
18.Create Color Sample PopupCreate Color Sample Popup
19.Simple Input DialogSimple Input Dialog
20.No button dialogNo button dialog
21.Message Dialog demo Message Dialog demo
22.Escape Key close Dialog
23.Dialog can be closed by pressing the escape key
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