Shell: setMenuBar(Menu menu) : Shell « org.eclipse.swt.widgets « Java by API






Shell: setMenuBar(Menu menu)


import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.MenuItem;
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.setText("A Shell Menu Example");

    Menu m = new Menu(s,SWT.BAR );

    MenuItem file = new MenuItem(m, SWT.CASCADE);
    file.setText("File");
    Menu filemenu = new Menu(s, SWT.DROP_DOWN);
    file.setMenu(filemenu);
    MenuItem openItem = new MenuItem(filemenu, SWT.PUSH);
    openItem.setText("Open");
    MenuItem exitItem = new MenuItem(filemenu, SWT.PUSH);
    exitItem.setText("Exit");
    
    s.setMenuBar(m);

    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: setImage(Image img)
9.Shell: setRegion(Region reg)
10.Shell: setSize(int width, int height)