Shell: open() : Shell « org.eclipse.swt.widgets « Java by API






Shell: open()

import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class MainClass {


  public static void main(String[] a) {
    Display d = new Display();
    Shell s = new Shell(d);
    s.setSize(500,500);
    s.open();
    ChildShell cs = new ChildShell(s);
    while(!s.isDisposed()){
        if(!d.readAndDispatch())
            d.sleep();
    }
    d.dispose();

  }
}
class ChildShell {
  
  ChildShell(Shell parent){
      Shell child = new Shell(parent);
      child.setSize(200,200);
      child.open();        
  }
}


           
       








Related examples in the same category

1.new Shell(shell, SWT.APPLICATION_MODAL | SWT.DIALOG_TRIM) (Make shell a dialog)
2.new Shell(Display arg0)
3.new Shell(Display display, int style)
4.new Shell(Shell parent)
5.Shell: getClientArea()
6.Shell: getDisplay()
7.Shell: setImage(Image img)
8.Shell: setMenuBar(Menu menu)
9.Shell: setRegion(Region reg)
10.Shell: setSize(int width, int height)