blob: a8661c6c939301f861b7df4ecb0311381c4c995b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2013 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Edagr Mueller - initial API and implementation
* Eugen Neufeld - Refactoring
******************************************************************************/
package org.eclipse.emf.ecp.view.spi.core.swt;
import org.eclipse.core.databinding.Binding;
import org.eclipse.core.databinding.UpdateValueStrategy;
import org.eclipse.core.databinding.property.value.IValueProperty;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecp.edit.spi.swt.util.PreSetValidationStrategy;
import org.eclipse.emf.ecp.view.spi.context.ViewModelContext;
import org.eclipse.emf.ecp.view.spi.model.VControl;
import org.eclipse.emf.ecp.view.template.model.VTViewTemplateProvider;
import org.eclipse.emfforms.spi.common.report.ReportService;
import org.eclipse.emfforms.spi.common.validation.PreSetValidationService;
import org.eclipse.emfforms.spi.core.services.databinding.DatabindingFailedException;
import org.eclipse.emfforms.spi.core.services.databinding.EMFFormsDatabinding;
import org.eclipse.emfforms.spi.core.services.label.EMFFormsLabelProvider;
import org.eclipse.swt.events.DisposeEvent;
import org.eclipse.swt.events.DisposeListener;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
/**
* Renderer for {@link org.eclipse.swt.widgets.Control Controls}.
*
* @author Eugen Neufeld
*
*/
public abstract class SimpleControlSWTControlSWTRenderer extends SimpleControlSWTRenderer {
private Binding[] bindings;
private Control control;
/**
* Default constructor.
*
* @param vElement the view model element to be rendered
* @param viewContext the view context
* @param reportService The {@link ReportService}
* @param emfFormsDatabinding The {@link EMFFormsDatabinding}
* @param emfFormsLabelProvider The {@link EMFFormsLabelProvider}
* @param vtViewTemplateProvider The {@link VTViewTemplateProvider}
* @since 1.6
*/
public SimpleControlSWTControlSWTRenderer(VControl vElement, ViewModelContext viewContext,
ReportService reportService,
EMFFormsDatabinding emfFormsDatabinding, EMFFormsLabelProvider emfFormsLabelProvider,
VTViewTemplateProvider vtViewTemplateProvider) {
super(vElement, viewContext, reportService, emfFormsDatabinding, emfFormsLabelProvider, vtViewTemplateProvider);
}
/**
* Creates the control itself.
*
* @param parent the {@link Composite} to render onto
* @return the rendered control
* @throws DatabindingFailedException if the databinding of the control fails
*/
@Override
protected final Control createControl(Composite parent) throws DatabindingFailedException {
control = createSWTControl(parent);
if (control == null) {
return null;
}
bindings = createBindings(control);
control.addDisposeListener(new DisposeListener() {
@Override
public void widgetDisposed(DisposeEvent e) {
disposeBindings();
}
});
return control;
}
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.ecp.view.spi.core.swt.AbstractControlSWTRenderer#rootDomainModelChanged()
*/
@Override
protected void rootDomainModelChanged() throws DatabindingFailedException {
disposeBindings();
bindings = createBindings(control);
super.rootDomainModelChanged();
}
/**
* Disposes all bindings of this renderer.
*/
private void disposeBindings() {
if (bindings != null) {
for (final Binding binding : bindings) {
binding.dispose();
}
}
}
/**
* Create a {@link PreSetValidationStrategy}.
*
* @param delegate a delegate {@link UpdateValueStrategy}
*
* @return a {@link PreSetValidationStrategy}
* @throws DatabindingFailedException in case the necessary feature can not be obtained
*
* @since 1.13
*/
protected UpdateValueStrategy withPreSetValidation(UpdateValueStrategy delegate)
throws DatabindingFailedException {
if (getViewModelContext().hasService(PreSetValidationService.class)) {
return new PreSetValidationStrategy(getVElement(), getFeature(), delegate);
}
return delegate;
}
/**
* Retrieves the associated {@link EStructuralFeature} of this renderer.
*
* @return the feature
* @throws DatabindingFailedException in case the necessary feature can not be obtained
*
* @since 1.13
*/
protected EStructuralFeature getFeature() throws DatabindingFailedException {
final EMFFormsDatabinding databindingService = getEMFFormsDatabinding();
final IValueProperty valueProperty = databindingService.getValueProperty(
getVElement().getDomainModelReference(),
getViewModelContext().getDomainModel());
return EStructuralFeature.class.cast(valueProperty.getValueType());
}
/**
* Create the {@link Binding Bindings} for this controls.
*
* @param control the {@link Control} to create the binding for
* @return all the bindings created by this renderer
* @throws DatabindingFailedException if the creation of the bindings fails.
* @since 1.6
*/
protected abstract Binding[] createBindings(Control control) throws DatabindingFailedException;
/**
* Creates the Control.
*
* @param parent the {@link Composite} to use as a parent
* @return the created control
* @throws DatabindingFailedException if the creation of the control fails due to databinding problems
* @since 1.6
*/
protected abstract Control createSWTControl(Composite parent) throws DatabindingFailedException;
}