Create a dialog shell (prompt for a value) : Dialog « SWT JFace Eclipse « Java






Create a dialog shell (prompt for a value)

Create a dialog shell (prompt for a value)

/*
 * Shell example snippet: create a dialog shell (prompt for a value)
 *
 * For a list of all SWT example snippets see
 * http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/dev.html#snippets
 */
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;

public class Snippet63 {

  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.pack();
    shell.open();
    final boolean[] result = new boolean[1];
    final Shell dialog = new Shell(shell, SWT.DIALOG_TRIM
        | SWT.APPLICATION_MODAL);
    dialog.setLayout(new RowLayout());
    final Button ok = new Button(dialog, SWT.PUSH);
    ok.setText("Ok");
    Button cancel = new Button(dialog, SWT.PUSH);
    cancel.setText("Cancel");
    Listener listener = new Listener() {
      public void handleEvent(Event event) {
        result[0] = event.widget == ok;
        dialog.close();
      }
    };
    ok.addListener(SWT.Selection, listener);
    cancel.addListener(SWT.Selection, listener);
    dialog.pack();
    dialog.open();
    System.out.println("Prompt ...");
    while (!dialog.isDisposed()) {
      if (!display.readAndDispatch())
        display.sleep();
    }
    System.out.println("Result: " + result[0]);
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch())
        display.sleep();
    }
    display.dispose();
  }
}


           
       








Related examples in the same category

1.TitleAreaDialog: MailDialog
2.Dialog ShellDialog Shell
3.MessageBox ExampleMessageBox Example
4.Number Input DialogNumber Input Dialog
5.Dialog ExamplesDialog Examples
6.Demonstrates FileDialogDemonstrates FileDialog
7.A facade for the save FileDialog
8.How to create your own dialog classesHow to create your own dialog classes
9.Demonstrates the FontDialog classDemonstrates the FontDialog class
10.Demonstrates the ColorDialog classDemonstrates the ColorDialog class
11.Demonstrates the DirectoryDialog classDemonstrates the DirectoryDialog class
12.Demonstrates the custom InputDialog classDemonstrates the custom InputDialog class
13.Demonstrates the MessageBox classDemonstrates the MessageBox class
14.Dialog Example
15.Shell Dialog ExampleShell Dialog Example
16.Color Dialog ExampleColor Dialog Example
17.File Dialog ExampleFile Dialog Example
18.Font Dialog ExampleFont Dialog Example
19.Yes No Icon MessageBoxYes No Icon MessageBox
20.Print Dialog ExamplePrint Dialog Example
21.SWT Dialog ClassSWT Dialog Class
22.Prevent escape from closing a SWT dialogPrevent escape from closing a SWT dialog
23.Create a SWT dialog shellCreate a SWT dialog shell