blob: 18bd8bd30f96841767ce9614405c66e0a10f5495 [file] [log] [blame]
h2. Extension Points
h3(#eeflifecyclemanagerprovider). IEEFLifecycleManagerProvider
This extension point can be used in order to replace the original appearance and behavior of any existing widget or to provide the appearance and behavior of a custom widget description.
bc.. <extension
point="org.eclipse.eef.ide.ui.eefLifecycleManagerProvider">
<descriptor
class="org.eclipse.eef.sample.internal.extensions.SampleLifecycleManagerProvider"
description="Provides EEF Lifecycle Managers"
id="org.eclipse.eef.sample.eefLifecycleManagerProvider"
label="EEF Sample Lifecycle Manager Provider">
</descriptor>
</extension>
p. Example of IEEFLifecycleManagerProvider contribution. In this example, we are providing a contribution to provider an IEEFLifecycleManager for a custom widget description. Once EEF has retrieved the description of the user interface to create, it will navigate in this description in order to build the necessary widgets and containers. For each description of containers or widgets found, it will ask the IEEFLifecycleManagerProviders registered if they can handle the description. The first lifecycle manager provider which can handle the given description will thus be used to create the lifecycle manager for this description using the whole available context. The lifecycle manager returned will have the following responsibilities:
* Creation of the SWT widgets for the description - IEEFLifecycleManager#createControls(...)
* Registration of the listeners between the widgets - IEEFLifecycleManager#aboutToBeShown(...)
* Refresh of the widgets - IEEFLifecycleManager#refresh(...)
* Unregistration of the listeners - IEEFLifecycleManager#aboutToBeDisposed(...)
* Removal of all additional resources - IEEFLifecycleManager#dispose(...)
In order to perform those duties, the architecture of EEF encourages the creator of an IEEFLifecycleManager to separate the user interface-related behavior from the business behavior by using a controller to handle the business part. The controller should implement @org.eclipse.eef.core.api.controllers.IEEFController@ in order to perform basic task in a similar fashion as other controllers. There are several abstract classes available in order to build a new controller quite easily:
* @org.eclipse.eef.core.api.controllers.AbstractEEFController@
* @org.eclipse.eef.core.api.controllers.AbstractEEFWidgetController@
* @org.eclipse.eef.core.api.controllers.AbstractEEFCustomWidgetController@
The AbstractEEFController provides support for the validation and the refresh. The AbstractEEFWidgetController, which extends the AbstractEEFController, adds support for the refresh of the label and the help of the widgets and finally the AbstractEEFCustomWidgetController, which extends the AbstractEEFWidgetController, adds on top of that utility methods for the execution of command expressions.
bc.. package org.eclipse.eef.sample.internal.extensions;
import org.eclipse.eef.EEFControlDescription;
import org.eclipse.eef.core.api.EditingContextAdapter;
import org.eclipse.eef.ide.ui.api.widgets.IEEFLifecycleManager;
import org.eclipse.eef.ide.ui.api.widgets.IEEFLifecycleManagerProvider;
import org.eclipse.sirius.common.interpreter.api.IInterpreter;
import org.eclipse.sirius.common.interpreter.api.IVariableManager;
public class SampleLifecycleManagerProvider implements IEEFLifecycleManagerProvider {
private static final String DESCRIPTION_IDENTIFIER = "org.eclipse.eef.sample.customwidget";
@Override
public boolean canHandle(EEFControlDescription controlDescription) {
// Only handle the control with our description
return DESCRIPTION_IDENTIFIER.equals(controlDescription.getIdentifier());
}
@Override
public IEEFLifecycleManager getLifecycleManager(EEFControlDescription controlDescription, IVariableManager variableManager, IInterpreter interpreter, EditingContextAdapter contextAdapter) {
// Returns a lifecycle manager for the control supported
return new SampleLifecycleManager(controlDescription, variableManager, interpreter, contextAdapter);
}
}
p. This example requires at least the following dependencies:
* org.eclipse.sirius.common.interpreter
* org.eclipse.eef
* org.eclipse.eef.core
* org.eclipse.eef.ide.ui
h3(#eeftabdescriptorprovider). IEEFTabDescriptorProvider
This extension point allows the contribution of an @org.eclipse.eef.ide.ui.api.widgets.IEEFLifecycleManagerProvider@ which can be used to create an instance of @org.eclipse.eef.ide.ui.api.widgets.IEEFLifecycleManager@ for the description of some controls. With this mechanism, you can not only provide the compulsory lifecycle manager of a custom widget but you can also replace the default lifecycle manager of any widget or container which gives you the ability to change the behavior and appearance of each part of the user interface (excluding groups and pages).
bc.. <extension
point="org.eclipse.eef.properties.ui.eefTabDescriptorProvider">
<descriptor
class="org.eclipse.eef.sample.internal.extensions.SampleTabDescriptorProvider"
description="Provides EEF Tab descriptors"
id="org.eclipse.eef.sample.eefTabDescriptorProvider"
label="EEF Sample Tab Descriptor Provider">
</descriptor>
</extension>
p. Example of IEEFTabDescriptorProvider contribution. In this example, we are providing a contribution used to add new tabs to the Properties view created by EEF. In order to link an editor with the EEF-based Properties view, you will first need to use the method org.eclipse.core.runtime.IAdaptable.getAdapter(Class) of your editor to return an EEF-based property sheet page.
bc.. @Override
public Object getAdapter(@SuppressWarnings("rawtypes") Class type) {
if (type == IPropertySheetPage.class) {
// Must be unique for your editor, should be stored in a static constant
String contributorId = "org.eclipse.eef.sample.contributorId";
return new EEFTabbedPropertySheetPage(type, contributorId);
}
return super.getAdapter(type);
}
p. Once the Eclipse platform has retrieved this EEF-based tabbed property sheet page, EEF will look for the list of tabs to display in this property view using all its IEEFTabDescriptorProvider. Here is an implementation of an example:
bc.. package org.eclipse.eef.sample.internal.extensions;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.eclipse.eef.EEFViewDescription;
import org.eclipse.eef.core.api.EEFExpressionUtils;
import org.eclipse.eef.core.api.EEFPage;
import org.eclipse.eef.core.api.EEFView;
import org.eclipse.eef.core.api.EEFViewFactory;
import org.eclipse.eef.core.api.EditingContextAdapter;
import org.eclipse.eef.ide.ui.properties.api.EEFTabDescriptor;
import org.eclipse.eef.properties.ui.api.IEEFTabDescriptor;
import org.eclipse.eef.properties.ui.api.IEEFTabDescriptorProvider;
import org.eclipse.eef.properties.ui.api.IEEFTabbedPropertySheetPageContributor;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.sirius.common.interpreter.api.IVariableManager;
import org.eclipse.sirius.common.interpreter.api.VariableManagerFactory;
import org.eclipse.ui.IWorkbenchPart;
public class SampleTabDescriptorProvider implements IEEFTabDescriptorProvider {
@Override
public Collection<IEEFTabDescriptor> get(IWorkbenchPart part, ISelection selection, IEEFTabbedPropertySheetPageContributor contributor) {
if (selection instanceof IStructuredSelection) {
IStructuredSelection structuredSelection = (IStructuredSelection) selection;
Object[] objects = structuredSelection.toArray();
// We will first retrieve the description of the user interface
EEFViewDescription viewDescription = this.getViewDescription(objects);
EEFView eefView = this.createEEFView(viewDescription, objects);
List<IEEFTabDescriptor> descriptors = new ArrayList<IEEFTabDescriptor>();
List<EEFPage> eefPages = eefView.getPages();
for (EEFPage eefPage : eefPages) {
descriptors.add(new EEFTabDescriptor(eefPage));
}
return descriptors;
}
return new ArrayList<IEEFTabDescriptor>();
}
private EEFViewDescription getViewDescription(Object object) {
// Programmatically create the description of the view or load it from an EMF model
return null;
}
private EEFView createEEFView(EEFViewDescription viewDescription, Object object) {
IVariableManager variableManager = new VariableManagerFactory().createVariableManager();
variableManager.put(EEFExpressionUtils.SELF, object);
// See the documentation regarding the interpreter and the editing context adapter
EEFView eefView = new EEFViewFactory().createEEFView(viewDescription, variableManager, new SampleInterpreter(), new SampleEditingContextAdapter(), object);
return eefView;
}
}
p. This example requires at least the following dependencies:
* org.eclipse.sirius.common.interpreter
* org.eclipse.eef
* org.eclipse.eef.core
* org.eclipse.eef.ide.ui.properties
* org.eclipse.eef.properties.ui
* org.eclipse.ui.workbench
* org.eclipse.jface
h3(#eeftabdescriptorfilter). IEEFTabDescriptorFilter
This extension point allows to filter tabs contributed to the EEF tabbed property sheet page by implementing org.eclipse.eef.properties.ui.api.IEEFTabDescriptorFilter.
bc.. <extension
point="org.eclipse.eef.properties.ui.eefTabDescriptorFilter">
<descriptor
class="org.eclipse.eef.sample.internal.extensions.SampleTabDescriptorFilter"
description="Provides EEF Tab filter"
id="org.eclipse.eef.sample.eefTabDescriptorFilter"
label="EEF Sample Tab Descriptor Filter">
</descriptor>
</extension>
p. Example of IEEFTabDescriptorFilter contribution. In this example, we are providing a contribution used to filter legacy tabs to the Properties view created by EEF.
bc.. import org.eclipse.eef.properties.ui.api.IEEFTabDescriptor;
import org.eclipse.eef.properties.ui.api.IEEFTabDescriptorFilter;
public class SampleTabDescriptorFilter implements IEEFTabDescriptorFilter {
@Override
public boolean filter(IEEFTabDescriptor tabDescriptor) {
// Write here a useful condition
return false;
}
}
p. This example requires at least the following dependencies:
* org.eclipse.eef.common
* org.eclipse.eef.properties.ui
h3(#eefextreferenceviewerfilterprovider). IEEFExtReferenceViewerFilterProvider
This extension point allows the contribution of an org.eclipse.eef.ide.ui.ext.widgets.reference.api.IEEFExtReferenceViewerFilterProvider which can be used to filter the content of the tree viewers used to display the objects that can be selected and where an object can be created using the reference widget.
bc.. <extension
point="org.eclipse.eef.ide.ui.ext.widgets.reference.eefExtReferenceViewerFilterProvider">
<descriptor
class="org.eclipse.sirius.ui.properties.ext.widgets.reference.internal.EEFExtReferenceViewerFilterProvider"
description="%viewerFilterProvider.Description"
id="org.eclipse.sirius.ui.properties.ext.widgets.reference.viewerFilterProvider"
label="%viewerFilterProvider.Label">
</descriptor>
</extension>
p. Example of the contribution of a viewer filter provider. This contribution will let a plugin filter the content displayed in the tree viewers used to show where a new value can be created and which value can be selected for a reference. Eclipse Sirius provides the following basic implementation which is used to filter everything not contained in a semantic resource:
bc.. import java.util.ArrayList;
import java.util.List;
import org.eclipse.eef.ide.ui.ext.widgets.reference.api.IEEFExtReferenceViewerFilterProvider;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerFilter;
import org.eclipse.sirius.business.api.session.Session;
import org.eclipse.sirius.business.api.session.SessionManager;
public class EEFExtReferenceViewerFilterProvider implements IEEFExtReferenceViewerFilterProvider {
@Override
public List<ViewerFilter> getViewerFilters(ContextKind contextKind) {
List<ViewerFilter> viewerFilters = new ArrayList<>();
ViewerFilter viewFilter = new ViewerFilter() {
@Override
public boolean select(Viewer viewer, Object parentElement, Object element) {
// Used to filter aird, odesign, etc
if (element instanceof Resource) {
Session session = SessionManager.INSTANCE.getSession((Resource) element);
return session != null;
}
return true;
}
};
viewerFilters.add(viewFilter);
return viewerFilters;
}
}
p. This example requires at least the following dependencies:
* org.eclipse.eef.ide.ui.ext.widgets.reference
* org.eclipse.emf.ecore
* org.eclipse.jface.viewers
* org.eclipse.sirius