org.bonitasoft.studio.simulation.properties.contributions.LoopContribution.java Source code

Java tutorial

Introduction

Here is the source code for org.bonitasoft.studio.simulation.properties.contributions.LoopContribution.java

Source

/**
 * Copyright (C) 2010 BonitaSoft S.A.
 * BonitaSoft, 31 rue Gustave Eiffel - 38000 Grenoble
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2.0 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package org.bonitasoft.studio.simulation.properties.contributions;

import org.bonitasoft.studio.common.databinding.BonitaNumberFormat;
import org.bonitasoft.studio.common.databinding.WrappingValidator;
import org.bonitasoft.studio.common.properties.AbstractPropertySectionContribution;
import org.bonitasoft.studio.common.properties.ExtensibleGridPropertySection;
import org.bonitasoft.studio.expression.editor.viewer.ExpressionViewer;
import org.bonitasoft.studio.model.expression.Expression;
import org.bonitasoft.studio.model.expression.ExpressionFactory;
import org.bonitasoft.studio.model.process.Activity;
import org.bonitasoft.studio.model.simulation.SimulationFactory;
import org.bonitasoft.studio.model.simulation.SimulationPackage;
import org.bonitasoft.studio.model.simulation.SimulationTransition;
import org.bonitasoft.studio.simulation.i18n.Messages;
import org.eclipse.core.databinding.UpdateValueStrategy;
import org.eclipse.core.databinding.conversion.NumberToStringConverter;
import org.eclipse.core.databinding.conversion.StringToNumberConverter;
import org.eclipse.core.internal.databinding.validation.StringToDoubleValidator;
import org.eclipse.emf.databinding.EMFDataBindingContext;
import org.eclipse.emf.databinding.edit.EMFEditObservables;
import org.eclipse.emf.databinding.edit.EMFEditProperties;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.edit.command.SetCommand;
import org.eclipse.jface.databinding.swt.SWTObservables;
import org.eclipse.jface.databinding.viewers.ViewerProperties;
import org.eclipse.jface.fieldassist.ControlDecoration;
import org.eclipse.jface.fieldassist.FieldDecoration;
import org.eclipse.jface.fieldassist.FieldDecorationRegistry;
import org.eclipse.jface.layout.GridDataFactory;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.StackLayout;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetWidgetFactory;

/**
 * @author Baptiste Mesta
 *
 */
public class LoopContribution extends AbstractPropertySectionContribution {

    private EMFDataBindingContext context;

    /* (non-Javadoc)
     * @see org.bonitasoft.studio.common.properties.IExtensibleGridPropertySectionContribution#isRelevantFor(org.eclipse.emf.ecore.EObject)
     */
    @Override
    public boolean isRelevantFor(EObject eObject) {
        return eObject instanceof Activity && ((Activity) eObject).getIsLoop();
    }

    /* (non-Javadoc)
     * @see org.bonitasoft.studio.common.properties.IExtensibleGridPropertySectionContribution#refresh()
     */
    @Override
    public void refresh() {
    }

    /* (non-Javadoc)
     * @see org.bonitasoft.studio.common.properties.IExtensibleGridPropertySectionContribution#getLabel()
     */
    @Override
    public String getLabel() {
        return Messages.loopCondition;
    }

    /* (non-Javadoc)
     * @see org.bonitasoft.studio.common.properties.IExtensibleGridPropertySectionContribution#createControl(org.eclipse.swt.widgets.Composite, org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetWidgetFactory, org.bonitasoft.studio.common.properties.ExtensibleGridPropertySection)
     */
    @Override
    public void createControl(Composite composite, TabbedPropertySheetWidgetFactory widgetFactory,
            ExtensibleGridPropertySection extensibleGridPropertySection) {
        SimulationTransition transition;
        if (((Activity) eObject).getLoopTransition() == null) {
            transition = SimulationFactory.eINSTANCE.createSimulationTransition();
            editingDomain.getCommandStack().execute(new SetCommand(editingDomain, eObject,
                    SimulationPackage.Literals.SIMULATION_ACTIVITY__LOOP_TRANSITION, transition));
        } else {
            transition = ((Activity) eObject).getLoopTransition();
        }

        composite.setLayout(new GridLayout(2, false));
        Composite radioComposite = widgetFactory.createComposite(composite);
        radioComposite.setLayout(new FillLayout());
        radioComposite.setLayoutData(GridDataFactory.fillDefaults().create());
        Button expressionRadio = widgetFactory.createButton(radioComposite, "Expression", SWT.RADIO);
        Button probaRadio = widgetFactory.createButton(radioComposite, "Probability", SWT.RADIO);

        final Composite stackComposite = widgetFactory.createComposite(composite);
        stackComposite.setLayoutData(GridDataFactory.fillDefaults().hint(300, SWT.DEFAULT).create());
        final StackLayout stackLayout = new StackLayout();
        stackComposite.setLayout(stackLayout);

        final Composite probaComposite = widgetFactory.createComposite(stackComposite);
        FillLayout layout = new FillLayout();
        layout.marginWidth = 10;
        probaComposite.setLayout(layout);
        Text probaText = widgetFactory.createText(probaComposite, "", SWT.BORDER);

        ControlDecoration controlDecoration = new ControlDecoration(probaText, SWT.LEFT | SWT.TOP);
        FieldDecoration fieldDecoration = FieldDecorationRegistry.getDefault()
                .getFieldDecoration(FieldDecorationRegistry.DEC_ERROR);
        controlDecoration.setImage(fieldDecoration.getImage());
        controlDecoration.setDescriptionText(Messages.mustBeAPercentage);

        final Composite expressionComposite = widgetFactory.createComposite(stackComposite);
        FillLayout layout2 = new FillLayout();
        layout2.marginWidth = 10;
        expressionComposite.setLayout(layout2);
        ExpressionViewer expressionText = new ExpressionViewer(expressionComposite, SWT.BORDER, widgetFactory,
                editingDomain, SimulationPackage.Literals.SIMULATION_TRANSITION__EXPRESSION);
        Expression selection = transition.getExpression();
        if (selection == null) {
            selection = ExpressionFactory.eINSTANCE.createExpression();
            editingDomain.getCommandStack().execute(SetCommand.create(editingDomain, transition,
                    SimulationPackage.Literals.SIMULATION_TRANSITION__EXPRESSION, selection));
        }
        context.bindValue(ViewerProperties.singleSelection().observe(expressionText),
                EMFEditProperties.value(editingDomain, SimulationPackage.Literals.SIMULATION_TRANSITION__EXPRESSION)
                        .observe(eObject));
        expressionText.setInput(eObject);

        boolean useExpression = transition.isUseExpression();
        if (useExpression) {
            stackLayout.topControl = expressionComposite;
        } else {
            stackLayout.topControl = probaComposite;
        }
        expressionRadio.setSelection(useExpression);
        probaRadio.setSelection(!useExpression);

        expressionRadio.addSelectionListener(new SelectionAdapter() {
            @Override
            public void widgetSelected(SelectionEvent e) {
                if (((Button) e.getSource()).getSelection()) {
                    stackLayout.topControl = expressionComposite;
                } else {
                    stackLayout.topControl = probaComposite;
                }
                stackComposite.layout();
            }
        });

        context = new EMFDataBindingContext();
        context.bindValue(SWTObservables.observeSelection(expressionRadio), EMFEditObservables.observeValue(
                editingDomain, transition, SimulationPackage.Literals.SIMULATION_TRANSITION__USE_EXPRESSION));
        context.bindValue(SWTObservables.observeText(probaText, SWT.Modify),
                EMFEditObservables.observeValue(editingDomain, transition,
                        SimulationPackage.Literals.SIMULATION_TRANSITION__PROBABILITY),
                new UpdateValueStrategy()
                        .setConverter(
                                StringToNumberConverter.toDouble(BonitaNumberFormat.getPercentInstance(), false))
                        .setAfterGetValidator(new WrappingValidator(controlDecoration,
                                new StringToDoubleValidator(StringToNumberConverter
                                        .toDouble(BonitaNumberFormat.getPercentInstance(), false)))),
                new UpdateValueStrategy().setConverter(
                        NumberToStringConverter.fromDouble(BonitaNumberFormat.getPercentInstance(), false)));

    }

    /* (non-Javadoc)
     * @see org.bonitasoft.studio.common.properties.IExtensibleGridPropertySectionContribution#dispose()
     */
    @Override
    public void dispose() {
    }

}