ControlSizeLocation.java Source code

Java tutorial

Introduction

Here is the source code for ControlSizeLocation.java

Source

import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class ControlSizeLocation {

    public static void main(String[] args) {
        Display display = new Display();
        Shell shell = new Shell(display);
        shell.setLayout(new FillLayout());
        Button button = new Button(shell, SWT.PUSH);

        shell.setSize(260, 120);
        shell.open();

        System.out.println("------------------------------");
        System.out.println("getBounds: " + button.getBounds());
        System.out.println("getLocation: " + button.getLocation());
        System.out.println("getSize: " + button.getSize());

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

}