Create a SWT dialog shell : Dialog « SWT JFace Eclipse « Java






Create a SWT dialog shell

Create a SWT dialog shell


/*
 * Shell example snippet: create a dialog shell
 *
 * 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.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class Snippet50 {

  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setText("Shell");
    shell.setSize(200, 200);
    shell.open();
    Shell dialog = new Shell(shell);
    dialog.setText("Dialog");
    dialog.setSize(200, 200);
    dialog.open();
    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 dialog shell (prompt for a value)Create a dialog shell (prompt for a value)