com.ibm.team.rtc.extensions.workitem.copy.internal.ConfigurationPage.java Source code

Java tutorial

Introduction

Here is the source code for com.ibm.team.rtc.extensions.workitem.copy.internal.ConfigurationPage.java

Source

/**
 * The MIT License (MIT)
 *
 * Copyright (c) 2015 Sandeep Somavarapu
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
package com.ibm.team.rtc.extensions.workitem.copy.internal;

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.wizard.WizardPage;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;

public class ConfigurationPage extends WizardPage {

    private final EvaluationContext fContext;

    public ConfigurationPage(EvaluationContext context) {
        super("Configuration", "Configuration", null);
        fContext = context;
    }

    public void createControl(Composite parent) {
        initializeDialogUnits(parent);

        Composite container = new Composite(parent, SWT.NONE);
        GridLayout layout = new GridLayout();
        layout.marginWidth = 0;
        layout.marginHeight = 0;
        layout.numColumns = 2;
        container.setLayout(layout);

        Label label = new Label(container, SWT.NONE);
        label.setText("Replacement Text:");
        final Text text = new Text(container, SWT.BORDER); //$NON-NLS-1$
        GridData data = new GridData(SWT.FILL, SWT.TOP, true, false);
        text.setLayoutData(data);
        text.addModifyListener(new ModifyListener() {
            public void modifyText(ModifyEvent e) {
                fContext.configuration.replacementText = text.getText();
            }
        });

        label = new Label(container, SWT.NONE);
        label.setText("Default Category:");
        final Text categoryText = new Text(container, SWT.BORDER); //$NON-NLS-1$
        data = new GridData(SWT.FILL, SWT.TOP, true, false);
        categoryText.setLayoutData(data);
        categoryText.addModifyListener(new ModifyListener() {
            public void modifyText(ModifyEvent e) {
                fContext.configuration.categoryPath = categoryText.getText();
            }
        });

        label = new Label(container, SWT.NONE);
        label.setText("Tags:");
        final Text tagsText = new Text(container, SWT.BORDER); //$NON-NLS-1$
        data = new GridData(SWT.FILL, SWT.TOP, true, false);
        tagsText.setLayoutData(data);
        tagsText.addModifyListener(new ModifyListener() {
            public void modifyText(ModifyEvent e) {
                fContext.configuration.tags = tagsText.getText();
            }
        });

        label = new Label(container, SWT.NONE);
        label.setText("Copy Attachments:");
        final Button copyAttachmentsButton = new Button(container, SWT.CHECK); //$NON-NLS-1$
        copyAttachmentsButton.setSelection(fContext.configuration.copyAttachments);
        data = new GridData(SWT.FILL, SWT.TOP, true, false);
        copyAttachmentsButton.setLayoutData(data);
        copyAttachmentsButton.addSelectionListener(new SelectionListener() {
            @Override
            public void widgetSelected(SelectionEvent e) {
                fContext.configuration.copyAttachments = copyAttachmentsButton.getSelection();
            }

            @Override
            public void widgetDefaultSelected(SelectionEvent e) {
            }
        });

        label = new Label(container, SWT.NONE);
        label.setText("Copy Links:");
        final Button copyLinksButton = new Button(container, SWT.CHECK); //$NON-NLS-1$
        copyLinksButton.setSelection(fContext.configuration.copyLinks);
        data = new GridData(SWT.FILL, SWT.TOP, true, false);
        copyLinksButton.setLayoutData(data);
        copyLinksButton.addSelectionListener(new SelectionListener() {
            @Override
            public void widgetSelected(SelectionEvent e) {
                fContext.configuration.copyLinks = copyLinksButton.getSelection();
            }

            @Override
            public void widgetDefaultSelected(SelectionEvent e) {
            }
        });

        label = new Label(container, SWT.NONE);
        label.setText("Copy Rank:");
        final Button copyRankButton = new Button(container, SWT.CHECK); //$NON-NLS-1$
        copyRankButton.setSelection(fContext.configuration.copyRankingValue);
        data = new GridData(SWT.FILL, SWT.TOP, true, false);
        copyRankButton.setLayoutData(data);
        copyRankButton.addSelectionListener(new SelectionListener() {
            @Override
            public void widgetSelected(SelectionEvent e) {
                fContext.configuration.copyRankingValue = copyRankButton.getSelection();
            }

            @Override
            public void widgetDefaultSelected(SelectionEvent e) {
            }
        });

        setControl(container);
        Dialog.applyDialogFont(container);
    }
}