Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcletavernie2013-04-12 12:13:21 +0000
committercletavernie2013-04-12 12:13:21 +0000
commit4eae91fe29fbc87a56421a72d1231e52207b1693 (patch)
tree4266e7858106b3188474500f59b51b5ea93a9a3b /sandbox/org.eclipse.papyrus.infra.gmfdiag.css.palette
parentb9f6bf6cb7cf5939f55f41d86017a00e6be74e46 (diff)
downloadorg.eclipse.papyrus-4eae91fe29fbc87a56421a72d1231e52207b1693.tar.gz
org.eclipse.papyrus-4eae91fe29fbc87a56421a72d1231e52207b1693.tar.xz
org.eclipse.papyrus-4eae91fe29fbc87a56421a72d1231e52207b1693.zip
384569: [Palette - CSS] There should be an "apply CSS Style" post-action available in the palette customization tool
https://bugs.eclipse.org/bugs/show_bug.cgi?id=384569 Sandbox commit
Diffstat (limited to 'sandbox/org.eclipse.papyrus.infra.gmfdiag.css.palette')
-rw-r--r--sandbox/org.eclipse.papyrus.infra.gmfdiag.css.palette/src/org/eclipse/papyrus/infra/gmfdiag/css/palette/aspect/CSSStylePostAction.java63
1 files changed, 18 insertions, 45 deletions
diff --git a/sandbox/org.eclipse.papyrus.infra.gmfdiag.css.palette/src/org/eclipse/papyrus/infra/gmfdiag/css/palette/aspect/CSSStylePostAction.java b/sandbox/org.eclipse.papyrus.infra.gmfdiag.css.palette/src/org/eclipse/papyrus/infra/gmfdiag/css/palette/aspect/CSSStylePostAction.java
index 705314caefb..be1ac3b3187 100644
--- a/sandbox/org.eclipse.papyrus.infra.gmfdiag.css.palette/src/org/eclipse/papyrus/infra/gmfdiag/css/palette/aspect/CSSStylePostAction.java
+++ b/sandbox/org.eclipse.papyrus.infra.gmfdiag.css.palette/src/org/eclipse/papyrus/infra/gmfdiag/css/palette/aspect/CSSStylePostAction.java
@@ -11,28 +11,18 @@
*****************************************************************************/
package org.eclipse.papyrus.infra.gmfdiag.css.palette.aspect;
-import java.util.Collections;
import java.util.List;
-import java.util.Map;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.NullProgressMonitor;
-import org.eclipse.core.runtime.Status;
-import org.eclipse.emf.transaction.Transaction;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
-import org.eclipse.emf.workspace.AbstractEMFOperation;
-import org.eclipse.gef.EditPart;
-import org.eclipse.gef.EditPartViewer;
-import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart;
-import org.eclipse.gmf.runtime.diagram.ui.parts.DiagramGraphicalViewer;
-import org.eclipse.gmf.runtime.diagram.ui.util.EditPartUtil;
+import org.eclipse.gmf.runtime.common.core.command.CommandResult;
+import org.eclipse.gmf.runtime.common.core.command.ICommand;
+import org.eclipse.gmf.runtime.emf.commands.core.command.AbstractTransactionalCommand;
import org.eclipse.gmf.runtime.notation.NotationPackage;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.papyrus.infra.emf.utils.EMFHelper;
-import org.eclipse.papyrus.infra.gmfdiag.css.palette.Activator;
import org.eclipse.papyrus.infra.gmfdiag.properties.databinding.custom.AddCustomStyleListValueCommand;
import org.eclipse.papyrus.infra.widgets.editors.StringCombo;
import org.eclipse.papyrus.infra.widgets.providers.EmptyContentProvider;
@@ -101,47 +91,30 @@ public class CSSStylePostAction extends ModelPostAction {
//We should not depend on the properties view to edit the custom style.
//FIXME: Move CustomStyleValueCommand to infra.gmfdiag.common (or infra.gmfdiag.tools)
- @Override
- public void run(final EditPart editPart) {
- TransactionalEditingDomain domain = (TransactionalEditingDomain)EMFHelper.resolveEditingDomain(editPart);
+ public ICommand getPostCommand(final IAdaptable viewAdapter) {
+ TransactionalEditingDomain domain = (TransactionalEditingDomain)EMFHelper.resolveEditingDomain(viewAdapter);
if(domain != null) {
- boolean isActivating = false;
- Map<String, Boolean> options = null;
-
- EditPartViewer viewer = editPart.getViewer();
- if(viewer instanceof DiagramGraphicalViewer) {
- isActivating = ((DiagramGraphicalViewer)viewer).isInitializing();
- }
-
- if(isActivating || !EditPartUtil.isWriteTransactionInProgress((IGraphicalEditPart)editPart, false, false)) {
- options = Collections.singletonMap(Transaction.OPTION_UNPROTECTED, Boolean.TRUE);
- }
-
- AbstractEMFOperation transactionalCommand = new AbstractEMFOperation(domain, "Change css style", options) {
+ AbstractTransactionalCommand transactionalCommand = new AbstractTransactionalCommand(domain, "Change css style", null) {
@Override
- protected IStatus doExecute(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
- if(editPart instanceof IAdaptable) {
- View notationView = (View)((IAdaptable)editPart).getAdapter(View.class);
- if(notationView != null) {
- String value = getValue();
- if(value != null) {
- AddCustomStyleListValueCommand command = new AddCustomStyleListValueCommand(getEditingDomain(), notationView, CSS_CLASS, NotationPackage.eINSTANCE.getStringListValueStyle(), NotationPackage.eINSTANCE.getStringListValueStyle_StringListValue(), value);
- command.execute();
- return Status.OK_STATUS;
- }
+ protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
+ View notationView = (View)viewAdapter.getAdapter(View.class);
+ if(notationView != null) {
+ String value = getValue();
+ if(value != null) {
+ AddCustomStyleListValueCommand command = new AddCustomStyleListValueCommand(getEditingDomain(), notationView, CSS_CLASS, NotationPackage.eINSTANCE.getStringListValueStyle(), NotationPackage.eINSTANCE.getStringListValueStyle_StringListValue(), value);
+ command.execute();
+ return CommandResult.newOKCommandResult();
}
}
- return Status.OK_STATUS;
+ return CommandResult.newOKCommandResult();
}
};
- try {
- transactionalCommand.execute(new NullProgressMonitor(), null);
- } catch (ExecutionException ex) {
- Activator.log.error(ex);
- }
+ return transactionalCommand;
}
+
+ return null;
}
}

Back to the top