blob: 8da254c81d016f1fddd802153de342d215231238 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2018 Fondazione Bruno Kessler.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Luca Cristoforetti - initial API and implementation
******************************************************************************/
package org.polarsys.chess.diagramsCreator.commands;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.elk.core.service.DiagramLayoutEngine;
import org.eclipse.gmf.runtime.diagram.ui.parts.DiagramEditor;
import org.eclipse.gmf.runtime.notation.Diagram;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.papyrus.infra.ui.editor.IMultiDiagramEditor;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.handlers.HandlerUtil;
import org.eclipse.uml2.uml.Class;
import org.eclipse.uml2.uml.StateMachine;
import org.polarsys.chess.diagramsCreator.actions.ShowSMDElementsAction;
import org.polarsys.chess.service.gui.utils.SelectionUtil;
import eu.fbk.eclipse.standardtools.utils.ui.utils.DialogUtil;
/**
* This class is triggered by a menu entry. Creates a new State Machine Diagram, populates it
* with the components of the model and runs the automatic layout.
* @author cristofo
*
*/
public class CreateSMDHandler extends AbstractHandler {
private static final String DIALOG_TITLE = "SMD creator";
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
final ISelection selection = HandlerUtil.getActiveWorkbenchWindow(event).getActivePage().getSelection();
final Object umlObject = SelectionUtil.getInstance().getUmlSelectedObject(selection);
final ShowSMDElementsAction action = ShowSMDElementsAction.getInstance();
if (umlObject instanceof StateMachine) {
try {
final Diagram diagram = action.addSMD((Class) umlObject);
action.populateDiagram(diagram);
} catch (Exception e) {
e.printStackTrace();
}
// Call the Eclipse Layout Kernel engine
// Get the active editor, which is expected to contain the diagram for applying layout
IEditorPart editorPart = HandlerUtil.getActiveEditor(event);
if (editorPart instanceof IMultiDiagramEditor) {
editorPart = ((IMultiDiagramEditor) editorPart).getActiveEditor();
}
if (editorPart instanceof DiagramEditor) {
Object diagramPart = null;
final boolean zoomToFit = false;
// Call the layout, twice for better results
DiagramLayoutEngine.invokeLayout(editorPart, diagramPart, false, false, false, zoomToFit);
DiagramLayoutEngine.invokeLayout(editorPart, diagramPart, false, false, false, zoomToFit);
}
} else {
DialogUtil.getInstance().showMessage_GenericMessage(DIALOG_TITLE, "Please select a State Machine from the <<SystemView>> package");
}
return null;
}
}