Example usage for org.eclipse.swt.widgets Composite getMonitor

List of usage examples for org.eclipse.swt.widgets Composite getMonitor

Introduction

In this page you can find the example usage for org.eclipse.swt.widgets Composite getMonitor.

Prototype

public Monitor getMonitor() 

Source Link

Document

Returns the receiver's monitor.

Usage

From source file:org.eclipse.swt.examples.controlexample.ControlExample.java

/**
 * Creates an instance of a ControlExample embedded inside
 * the supplied parent Composite.//  ww  w  . j a va  2  s. c  o m
 *
 * @param parent the container of the example
 */
public ControlExample(Composite parent) {
    initResources();
    tabFolder = new TabFolder(parent, SWT.NONE);
    tabs = createTabs();
    for (Tab tab : tabs) {
        TabItem item = new TabItem(tabFolder, SWT.NONE);
        item.setText(tab.getTabText());
        item.setControl(tab.createTabFolderPage(tabFolder));
        item.setData(tab);
    }

    /* Workaround: if the tab folder is wider than the screen,
     * Mac platforms clip instead of somehow scrolling the tab items.
     * We try to recover some width by using shorter tab names. */
    Point size = parent.computeSize(SWT.DEFAULT, SWT.DEFAULT);
    Rectangle monitorArea = parent.getMonitor().getClientArea();
    boolean isMac = SWT.getPlatform().equals("cocoa");
    if (size.x > monitorArea.width && isMac) {
        TabItem[] tabItems = tabFolder.getItems();
        for (int i = 0; i < tabItems.length; i++) {
            tabItems[i].setText(tabs[i].getShortTabText());
        }
    }
    startup = false;
}