MenuSeparatorAdd.java Source code

Java tutorial

Introduction

Here is the source code for MenuSeparatorAdd.java

Source

import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridLayout;
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 MenuSeparatorAdd {
    public static void main(String[] args) {
        Display display = new Display();
        Shell shell = new Shell(display);
        shell.setLayout(new GridLayout());

        // Create the bar menu
        Menu menuBar = new Menu(shell, SWT.BAR);

        // Create the File item's dropdown menu
        Menu fileMenu = new Menu(menuBar);

        // Create all the items in the bar menu
        MenuItem fileItem = new MenuItem(menuBar, SWT.CASCADE);
        fileItem.setText("File");
        fileItem.setMenu(fileMenu);

        // Create all the items in the File dropdown menu
        MenuItem newItem = new MenuItem(fileMenu, SWT.NONE);
        newItem.setText("New");

        //  Create the first separator
        new MenuItem(fileMenu, SWT.SEPARATOR);

        MenuItem saveItem = new MenuItem(fileMenu, SWT.NONE);
        saveItem.setText("Save");

        shell.setMenuBar(menuBar);
        shell.open();
        while (!shell.isDisposed()) {
            if (!display.readAndDispatch()) {
                display.sleep();
            }
        }
    }
}