Package name.abuchen.portfolio.ui

Source Code of name.abuchen.portfolio.ui.PageBook

package name.abuchen.portfolio.ui;

import org.eclipse.swt.custom.StackLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;

public class PageBook extends Composite
{
    private StackLayout layout;

    public PageBook(Composite parent, int style)
    {
        super(parent, style);

        this.layout = new StackLayout();
        setLayout(layout);
    }

    public void showPage(Control page)
    {
        if (page.isDisposed() || page.getParent() != this) { return; }

        layout.topControl = page;
        layout(true);
    }
}
TOP

Related Classes of name.abuchen.portfolio.ui.PageBook

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.