Mega Code Archive

 
Categories / Java Tutorial / SWT
 

Shell with SWT SHELL_TRIMSWT TOOL style

import org.eclipse.swt.SWT; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class ShellStyleTrimTool {   public static void main(String[] args) {     final Display display = new Display();     Shell shell = new Shell(display, SWT.SHELL_TRIM | SWT.TOOL);     shell.setLayout(new GridLayout());     Button button = new Button(shell, SWT.PUSH | SWT.LEFT);     button.setText("Button");     shell.open();     while (!shell.isDisposed()) {       if (!display.readAndDispatch()) {         display.sleep();       }     }   } }