new Decorations(shell, SWT.NO_TRIM) : Decorations « org.eclipse.swt.widgets « Java by API






new Decorations(shell, SWT.NO_TRIM)

import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Decorations;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;

public class MainClass {

  public static void main(String[] a) {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setText("Sash One");


    // The SWT.BORDER style
    Decorations d = new Decorations(shell, SWT.NO_TRIM);
    d.setLayoutData(new GridData(GridData.FILL_BOTH));
    d.setLayout(new FillLayout());
    Label l = new Label(d, SWT.CENTER);
    l.setText("SWT.NO_TRIM");
    
    d.setBounds(20,20,100,100);

    
    shell.pack();
    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    display.dispose();
  }
}


           
       








Related examples in the same category

1.new Decorations(shell, SWT.BORDER)
2.new Decorations(shell, SWT.CLOSE)
3.new Decorations(shell, SWT.MIN)
4.new Decorations(shell, SWT.MAX)
5.new Decorations(shell, SWT.RESIZE)
6.new Decorations(shell, SWT.TITLE)
7.new Decorations(shell, SWT.ON_TOP)
8.new Decorations(shell, SWT.TOOL)