org.jboss.tools.common.verification.ui.vrules.wizard.runtime2.VerifyDialog.java Source code

Java tutorial

Introduction

Here is the source code for org.jboss.tools.common.verification.ui.vrules.wizard.runtime2.VerifyDialog.java

Source

/*******************************************************************************
 * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc.
 * Distributed under license by Red Hat, Inc. All rights reserved.
 * This program is 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:
 *     Exadel, Inc. and Red Hat, Inc. - initial API and implementation
 ******************************************************************************/
package org.jboss.tools.common.verification.ui.vrules.wizard.runtime2;

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.layout.*;
import org.eclipse.swt.widgets.*;
import org.jboss.tools.common.model.ui.action.*;
import org.jboss.tools.common.model.ui.wizards.query.*;

public class VerifyDialog extends Dialog implements IQueryDialog {
    AbstractQueryWizardView view;

    protected VerifyDialog(Shell shell) {
        super(shell);
    }

    public void setView(AbstractQueryWizardView view) {
        this.view = view;
    }

    public Dialog getDialog() {
        return this;
    }

    protected Control createDialogArea(Composite parent) {
        Composite composite = new Composite(parent, SWT.NONE);
        GridLayout gridLayout = new GridLayout(1, false);
        gridLayout.marginHeight = 0;
        gridLayout.marginWidth = 0;
        gridLayout.horizontalSpacing = 0;
        gridLayout.verticalSpacing = 0;
        composite.setLayout(gridLayout);

        Label dialogAreaSeparator = new Label(composite, SWT.HORIZONTAL | SWT.SEPARATOR);
        dialogAreaSeparator.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));

        Control pageArea = view.createControl(composite);
        GridData gd = new GridData(GridData.FILL_BOTH);
        pageArea.setLayoutData(gd);

        gd = new GridData(GridData.FILL_BOTH);

        Point p = view.getPreferredSize();
        gd.widthHint = (p == null) ? -1 : p.x;
        gd.heightHint = (p == null) ? -1 : p.y;
        composite.setLayoutData(gd);
        return composite;
    }

    protected Control createButtonBar(Composite parent) {
        CommandBar commandBar = view.getCommandBar();
        commandBar.addCommandBarListener(view);
        Composite composite = new Composite(parent, SWT.NONE);
        GridLayout gridLayout = new GridLayout(1, false);
        gridLayout.marginHeight = 0;
        gridLayout.marginWidth = 0;
        gridLayout.horizontalSpacing = 0;
        gridLayout.verticalSpacing = 0;
        composite.setLayout(gridLayout);
        GridData gd = new GridData(GridData.FILL_BOTH);
        composite.setLayoutData(gd);

        Label titleBarSeparator = new Label(composite, SWT.HORIZONTAL | SWT.SEPARATOR);
        titleBarSeparator.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));

        CommandBarLayout cbl = new CommandBarLayout();
        cbl.buttonHeight = convertHorizontalDLUsToPixels(20);
        cbl.buttonWidth = convertHorizontalDLUsToPixels(IDialogConstants.BUTTON_WIDTH);
        cbl.gap = convertHorizontalDLUsToPixels(IDialogConstants.BUTTON_MARGIN);
        cbl.left = 10;
        cbl.right = 10;
        cbl.top = 11;
        cbl.bottom = 10;
        commandBar.setLayout(cbl);
        commandBar.setCommands(getCommands());
        commandBar.setDefaultCommand(view.getDefaultCommand());
        Control control = commandBar.createControl(composite);
        commandBar.getLayout().alignment = SWT.RIGHT;
        gd = new GridData(GridData.FILL_BOTH);
        gd.heightHint = commandBar.getControl().computeSize(SWT.DEFAULT, SWT.DEFAULT).y;
        control.setLayoutData(gd);
        if (view.getHelpKey() == null)
            commandBar.setEnabled(AbstractQueryWizardView.HELP, false);

        return composite;
    }

    protected String[] getCommands() {
        return view.getCommands();
    }

}