/******************************************************************************* * Copyright (c) 2008, 2012 Obeo. * All rights reserved. This program and the accompanying materials * are 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: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.emf.eef.extended.editor.components; // Start of user code for imports import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.util.BasicDiagnostic; import org.eclipse.emf.common.util.Diagnostic; import org.eclipse.emf.common.util.WrappedException; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EStructuralFeature; import org.eclipse.emf.ecore.EcorePackage; import org.eclipse.emf.ecore.resource.ResourceSet; import org.eclipse.emf.ecore.util.Diagnostician; import org.eclipse.emf.ecore.util.EcoreUtil; import org.eclipse.emf.eef.components.ComponentsFactory; import org.eclipse.emf.eef.components.PropertiesEditionComponent; import org.eclipse.emf.eef.extended.editor.EditorPackage; import org.eclipse.emf.eef.extended.editor.PartFilter; import org.eclipse.emf.eef.extended.editor.parts.EditorViewsRepository; import org.eclipse.emf.eef.extended.editor.parts.PartFilterPropertiesEditionPart; import org.eclipse.emf.eef.mapping.filters.FiltersPackage; import org.eclipse.emf.eef.runtime.api.notify.EStructuralFeatureNotificationFilter; import org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent; import org.eclipse.emf.eef.runtime.api.notify.NotificationFilter; import org.eclipse.emf.eef.runtime.context.PropertiesEditingContext; import org.eclipse.emf.eef.runtime.context.impl.EObjectPropertiesEditionContext; import org.eclipse.emf.eef.runtime.impl.components.SinglePartPropertiesEditingComponent; import org.eclipse.emf.eef.runtime.impl.notify.PropertiesEditionEvent; import org.eclipse.emf.eef.runtime.impl.utils.EEFConverterUtil; import org.eclipse.emf.eef.runtime.policies.PropertiesEditingPolicy; import org.eclipse.emf.eef.runtime.providers.PropertiesEditingProvider; import org.eclipse.emf.eef.runtime.ui.widgets.ButtonsModeEnum; import org.eclipse.emf.eef.runtime.ui.widgets.eobjflatcombo.EObjectFlatComboSettings; import org.eclipse.emf.eef.views.View; import org.eclipse.emf.eef.views.ViewsFactory; import org.eclipse.jface.viewers.Viewer; import org.eclipse.jface.viewers.ViewerFilter; // End of user code /** * @author <a href="mailto:goulwen.lefur@obeo.fr">Goulwen LeFur</a> * */ public class PartFilterBasePropertiesEditionComponent extends SinglePartPropertiesEditingComponent { public static String BASE_PART = "Base"; //$NON-NLS-1$ /** * Settings for filteredPart EObjectFlatComboViewer */ private EObjectFlatComboSettings filteredPartSettings; /** * Settings for contextualComponent EObjectFlatComboViewer */ private EObjectFlatComboSettings contextualComponentSettings; /** * Default constructor * */ public PartFilterBasePropertiesEditionComponent(PropertiesEditingContext editingContext, EObject partFilter, String editing_mode) { super(editingContext, partFilter, editing_mode); parts = new String[] { BASE_PART }; repositoryKey = EditorViewsRepository.class; partKey = EditorViewsRepository.PartFilter.class; } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.runtime.api.component.IPropertiesEditionComponent#initPart(java.lang.Object, int, org.eclipse.emf.ecore.EObject, * org.eclipse.emf.ecore.resource.ResourceSet) * */ public void initPart(Object key, int kind, EObject elt, ResourceSet allResource) { setInitializing(true); if (editingPart != null && key == partKey) { editingPart.setContext(elt, allResource); final PartFilter partFilter = (PartFilter)elt; final PartFilterPropertiesEditionPart basePart = (PartFilterPropertiesEditionPart)editingPart; // init values if (isAccessible(EditorViewsRepository.PartFilter.Naming.name)) basePart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, partFilter.getName())); if (isAccessible(EditorViewsRepository.PartFilter.Settings.mandatory)) { basePart.setMandatory(partFilter.isMandatory()); } if (isAccessible(EditorViewsRepository.PartFilter.Filter.filteredPart)) { // init part filteredPartSettings = new EObjectFlatComboSettings(partFilter, EditorPackage.eINSTANCE.getPartFilter_FilteredPart()); basePart.initFilteredPart(filteredPartSettings); // set the button mode basePart.setFilteredPartButtonMode(ButtonsModeEnum.BROWSE); } if (isAccessible(EditorViewsRepository.PartFilter.Filter.contextualComponent)) { // init part contextualComponentSettings = new EObjectFlatComboSettings(partFilter, EditorPackage.eINSTANCE.getPartFilter_ContextualComponent()); basePart.initContextualComponent(contextualComponentSettings); // set the button mode basePart.setContextualComponentButtonMode(ButtonsModeEnum.BROWSE); } // init filters if (isAccessible(EditorViewsRepository.PartFilter.Filter.filteredPart)) { basePart.addFilterToFilteredPart(new ViewerFilter() { /** * {@inheritDoc} * * @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object) */ public boolean select(Viewer viewer, Object parentElement, Object element) { return (element instanceof View); } }); // Start of user code for additional businessfilters for filteredPart // End of user code } if (isAccessible(EditorViewsRepository.PartFilter.Filter.contextualComponent)) { basePart.addFilterToContextualComponent(new ViewerFilter() { /** * {@inheritDoc} * * @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object) */ public boolean select(Viewer viewer, Object parentElement, Object element) { return (element instanceof String && element.equals("")) || (element instanceof PropertiesEditionComponent); //$NON-NLS-1$ } }); // Start of user code for additional businessfilters for contextualComponent // End of user code } // init values for referenced views // init filters for referenced views } setInitializing(false); } /** * {@inheritDoc} * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#associatedFeature(java.lang.Object) */ public EStructuralFeature associatedFeature(Object editorKey) { if (editorKey == EditorViewsRepository.PartFilter.Naming.name) { return FiltersPackage.eINSTANCE.getBindingFilter_Name(); } if (editorKey == EditorViewsRepository.PartFilter.Settings.mandatory) { return FiltersPackage.eINSTANCE.getBindingFilter_Mandatory(); } if (editorKey == EditorViewsRepository.PartFilter.Filter.filteredPart) { return EditorPackage.eINSTANCE.getPartFilter_FilteredPart(); } if (editorKey == EditorViewsRepository.PartFilter.Filter.contextualComponent) { return EditorPackage.eINSTANCE.getPartFilter_ContextualComponent(); } return super.associatedFeature(editorKey); } /** * {@inheritDoc} * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#updateSemanticModel(org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent) * */ public void updateSemanticModel(final IPropertiesEditionEvent event) { PartFilter partFilter = (PartFilter)semanticObject; if (EditorViewsRepository.PartFilter.Naming.name == event.getAffectedEditor()) { partFilter.setName((java.lang.String)EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String)event.getNewValue())); } if (EditorViewsRepository.PartFilter.Settings.mandatory == event.getAffectedEditor()) { partFilter.setMandatory((Boolean)event.getNewValue()); } if (EditorViewsRepository.PartFilter.Filter.filteredPart == event.getAffectedEditor()) { if (event.getKind() == PropertiesEditionEvent.SET) { filteredPartSettings.setToReference((View)event.getNewValue()); } else if (event.getKind() == PropertiesEditionEvent.ADD) { View eObject = ViewsFactory.eINSTANCE.createView(); EObjectPropertiesEditionContext context = new EObjectPropertiesEditionContext(editingContext, this, eObject, editingContext.getAdapterFactory()); PropertiesEditingProvider provider = (PropertiesEditingProvider)editingContext.getAdapterFactory().adapt(eObject, PropertiesEditingProvider.class); if (provider != null) { PropertiesEditingPolicy policy = provider.getPolicy(context); if (policy != null) { policy.execute(); } } filteredPartSettings.setToReference(eObject); } } if (EditorViewsRepository.PartFilter.Filter.contextualComponent == event.getAffectedEditor()) { if (event.getKind() == PropertiesEditionEvent.SET) { contextualComponentSettings.setToReference((PropertiesEditionComponent)event.getNewValue()); } else if (event.getKind() == PropertiesEditionEvent.ADD) { PropertiesEditionComponent eObject = ComponentsFactory.eINSTANCE.createPropertiesEditionComponent(); EObjectPropertiesEditionContext context = new EObjectPropertiesEditionContext(editingContext, this, eObject, editingContext.getAdapterFactory()); PropertiesEditingProvider provider = (PropertiesEditingProvider)editingContext.getAdapterFactory().adapt(eObject, PropertiesEditingProvider.class); if (provider != null) { PropertiesEditingPolicy policy = provider.getPolicy(context); if (policy != null) { policy.execute(); } } contextualComponentSettings.setToReference(eObject); } } } /** * {@inheritDoc} * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#updatePart(org.eclipse.emf.common.notify.Notification) */ public void updatePart(Notification msg) { super.updatePart(msg); if (editingPart.isVisible()) { PartFilterPropertiesEditionPart basePart = (PartFilterPropertiesEditionPart)editingPart; if (FiltersPackage.eINSTANCE.getBindingFilter_Name().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && basePart != null && isAccessible(EditorViewsRepository.PartFilter.Naming.name)) { if (msg.getNewValue() != null) { basePart.setName(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, msg.getNewValue())); } else { basePart.setName(""); } } if (FiltersPackage.eINSTANCE.getBindingFilter_Mandatory().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && basePart != null && isAccessible(EditorViewsRepository.PartFilter.Settings.mandatory)) basePart.setMandatory((Boolean)msg.getNewValue()); if (EditorPackage.eINSTANCE.getPartFilter_FilteredPart().equals(msg.getFeature()) && basePart != null && isAccessible(EditorViewsRepository.PartFilter.Filter.filteredPart)) basePart.setFilteredPart((EObject)msg.getNewValue()); if (EditorPackage.eINSTANCE.getPartFilter_ContextualComponent().equals(msg.getFeature()) && basePart != null && isAccessible(EditorViewsRepository.PartFilter.Filter.contextualComponent)) basePart.setContextualComponent((EObject)msg.getNewValue()); } } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#getNotificationFilters() */ @Override protected NotificationFilter[] getNotificationFilters() { NotificationFilter filter = new EStructuralFeatureNotificationFilter( FiltersPackage.eINSTANCE.getBindingFilter_Name(), FiltersPackage.eINSTANCE.getBindingFilter_Mandatory(), EditorPackage.eINSTANCE.getPartFilter_FilteredPart(), EditorPackage.eINSTANCE.getPartFilter_ContextualComponent() ); return new NotificationFilter[] {filter,}; } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#isRequired(java.lang.Object, int) * */ public boolean isRequired(Object key, int kind) { return key == EditorViewsRepository.PartFilter.Filter.filteredPart; } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.runtime.api.component.IPropertiesEditionComponent#validateValue(org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent) * */ public Diagnostic validateValue(IPropertiesEditionEvent event) { Diagnostic ret = Diagnostic.OK_INSTANCE; if (event.getNewValue() != null) { try { if (EditorViewsRepository.PartFilter.Naming.name == event.getAffectedEditor()) { Object newValue = event.getNewValue(); if (newValue instanceof String) { newValue = EEFConverterUtil.createFromString(FiltersPackage.eINSTANCE.getBindingFilter_Name().getEAttributeType(), (String)newValue); } ret = Diagnostician.INSTANCE.validate(FiltersPackage.eINSTANCE.getBindingFilter_Name().getEAttributeType(), newValue); } if (EditorViewsRepository.PartFilter.Settings.mandatory == event.getAffectedEditor()) { Object newValue = event.getNewValue(); if (newValue instanceof String) { newValue = EEFConverterUtil.createFromString(FiltersPackage.eINSTANCE.getBindingFilter_Mandatory().getEAttributeType(), (String)newValue); } ret = Diagnostician.INSTANCE.validate(FiltersPackage.eINSTANCE.getBindingFilter_Mandatory().getEAttributeType(), newValue); } } catch (IllegalArgumentException iae) { ret = BasicDiagnostic.toDiagnostic(iae); } catch (WrappedException we) { ret = BasicDiagnostic.toDiagnostic(we); } } return ret; } }