Shell: setImage(Image img) : Shell « org.eclipse.swt.widgets « Java by API






Shell: setImage(Image img)

import org.eclipse.swt.graphics.Image;
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.setImage(new Image(d, "c:\\icons\\yourico.ico"));
      s.setText("A Shell Example");
      s.open();
      while(!s.isDisposed()){
          if(!d.readAndDispatch())
              d.sleep();
      }
      d.dispose();  
    }
}


           
       








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: open()
8.Shell: setMenuBar(Menu menu)
9.Shell: setRegion(Region reg)
10.Shell: setSize(int width, int height)