Package org.eclipse.nebula.widgets.nattable.examples.runner

Source Code of org.eclipse.nebula.widgets.nattable.examples.runner.StandaloneNatExampleRunner

/*******************************************************************************
* Copyright (c) 2012 Original authors and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.examples.runner;

import org.eclipse.nebula.widgets.nattable.examples.INatExample;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class StandaloneNatExampleRunner {

    public static void run(INatExample example) {
        run(800, 800, example);
    }

    public static void run(int shellWidth, int shellHeight, INatExample example) {
        // Setup
        Display display = Display.getDefault();
        Shell shell = new Shell(display, SWT.SHELL_TRIM);
        shell.setLayout(new FillLayout());
        shell.setSize(shellWidth, shellHeight);
        shell.setText(example.getName());

        // Create example control
        Control exampleControl = example.createExampleControl(shell);

        // Start
        example.onStart();

        shell.open();

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

        // Stop
        example.onStop();

        exampleControl.dispose();

        shell.dispose();
        display.dispose();
    }

}
TOP

Related Classes of org.eclipse.nebula.widgets.nattable.examples.runner.StandaloneNatExampleRunner

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.