/* * Copyright (c) 2012-2016 Marsha Chechik, Alessio Di Sandro, Michalis Famelis, * Rick Salay. * 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: * Alessio Di Sandro - Implementation. */ package edu.toronto.cs.se.mmint.mid.diagram.edit.parts; import org.eclipse.draw2d.ColorConstants; import org.eclipse.draw2d.FlowLayout; import org.eclipse.draw2d.IFigure; import org.eclipse.draw2d.MarginBorder; import org.eclipse.draw2d.RoundedRectangle; import org.eclipse.draw2d.Shape; import org.eclipse.draw2d.StackLayout; import org.eclipse.draw2d.geometry.Dimension; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EcorePackage; import org.eclipse.gef.EditPart; import org.eclipse.gef.EditPolicy; import org.eclipse.gef.commands.Command; import org.eclipse.gef.editpolicies.LayoutEditPolicy; import org.eclipse.gef.requests.CreateRequest; import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart; import org.eclipse.gmf.runtime.diagram.ui.editparts.ShapeNodeEditPart; import org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles; import org.eclipse.gmf.runtime.diagram.ui.editpolicies.FlowLayoutEditPolicy; import org.eclipse.gmf.runtime.draw2d.ui.figures.ConstrainedToolbarLayout; import org.eclipse.gmf.runtime.draw2d.ui.figures.WrappingLabel; import org.eclipse.gmf.runtime.gef.ui.figures.DefaultSizeNodeFigure; import org.eclipse.gmf.runtime.gef.ui.figures.NodeFigure; import org.eclipse.gmf.runtime.notation.View; import org.eclipse.swt.graphics.Color; import edu.toronto.cs.se.mmint.mid.diagram.edit.policies.ModelRel2ItemSemanticEditPolicy; import edu.toronto.cs.se.mmint.mid.diagram.edit.policies.ModelRelImportedSemanticEditPolicy; import edu.toronto.cs.se.mmint.mid.diagram.edit.policies.ModelRelOpenDiagramEditPolicy; import edu.toronto.cs.se.mmint.mid.diagram.part.MIDVisualIDRegistry; /** * @generated */ public class ModelRel2EditPart extends ShapeNodeEditPart { /** * @generated */ public static final int VISUAL_ID = 2004; /** * @generated */ protected IFigure contentPane; /** * @generated */ protected IFigure primaryShape; /** * @generated */ public ModelRel2EditPart(View view) { super(view); } /** * @generated */ protected void createDefaultEditPolicies() { super.createDefaultEditPolicies(); installEditPolicy(EditPolicyRoles.SEMANTIC_ROLE, new ModelRel2ItemSemanticEditPolicy()); installEditPolicy(EditPolicy.LAYOUT_ROLE, createLayoutEditPolicy()); installEditPolicy(EditPolicyRoles.OPEN_ROLE, new ModelRelOpenDiagramEditPolicy()); installEditPolicy(EditPolicyRoles.SEMANTIC_ROLE, new ModelRelImportedSemanticEditPolicy()); // XXX need an SCR to runtime to have another abstract superclass that would let children add reasonable editpolicies // removeEditPolicy(org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles.CONNECTION_HANDLES_ROLE); } /** * @generated */ protected LayoutEditPolicy createLayoutEditPolicy() { FlowLayoutEditPolicy lep = new FlowLayoutEditPolicy() { protected Command createAddCommand(EditPart child, EditPart after) { return null; } protected Command createMoveChildCommand(EditPart child, EditPart after) { return null; } protected Command getCreateCommand(CreateRequest request) { return null; } }; return lep; } /** * @generated */ protected IFigure createNodeShape() { return primaryShape = new ModelRelFigure(); } /** * @generated */ public ModelRelFigure getPrimaryShape() { return (ModelRelFigure) primaryShape; } /** * @generated */ protected boolean addFixedChild(EditPart childEditPart) { if (childEditPart instanceof WrappingLabel7EditPart) { ((WrappingLabel7EditPart) childEditPart).setLabel(getPrimaryShape().getFigureModelRelLabelFigure()); return true; } if (childEditPart instanceof WrappingLabel8EditPart) { ((WrappingLabel8EditPart) childEditPart).setLabel(getPrimaryShape().getFigureCustomModelRelLabelFigure()); return true; } return false; } /** * @generated */ protected boolean removeFixedChild(EditPart childEditPart) { if (childEditPart instanceof WrappingLabel7EditPart) { return true; } if (childEditPart instanceof WrappingLabel8EditPart) { return true; } return false; } /** * @generated */ protected void addChildVisual(EditPart childEditPart, int index) { if (addFixedChild(childEditPart)) { return; } super.addChildVisual(childEditPart, -1); } /** * @generated */ protected void removeChildVisual(EditPart childEditPart) { if (removeFixedChild(childEditPart)) { return; } super.removeChildVisual(childEditPart); } /** * @generated */ protected IFigure getContentPaneFor(IGraphicalEditPart editPart) { return getContentPane(); } /** * @generated */ protected NodeFigure createNodePlate() { DefaultSizeNodeFigure result = new DefaultSizeNodeFigure(40, 40); return result; } /** * Creates figure for this edit part. * * Body of this method does not depend on settings in generation model * so you may safely remove <i>generated</i> tag and modify it. * * @generated */ protected NodeFigure createNodeFigure() { NodeFigure figure = createNodePlate(); figure.setLayoutManager(new StackLayout()); IFigure shape = createNodeShape(); figure.add(shape); contentPane = setupContentPane(shape); return figure; } /** * Default implementation treats passed figure as content pane. * Respects layout one may have set for generated figure. * @param nodeShape instance of generated figure class * @generated */ protected IFigure setupContentPane(IFigure nodeShape) { if (nodeShape.getLayoutManager() == null) { ConstrainedToolbarLayout layout = new ConstrainedToolbarLayout(); layout.setSpacing(5); nodeShape.setLayoutManager(layout); } return nodeShape; // use nodeShape itself as contentPane } /** * @generated */ public IFigure getContentPane() { if (contentPane != null) { return contentPane; } return super.getContentPane(); } /** * @generated */ protected void setForegroundColor(Color color) { if (primaryShape != null) { primaryShape.setForegroundColor(color); } } /** * @generated */ protected void setBackgroundColor(Color color) { if (primaryShape != null) { primaryShape.setBackgroundColor(color); } } /** * @generated */ protected void setLineWidth(int width) { if (primaryShape instanceof Shape) { ((Shape) primaryShape).setLineWidth(width); } } /** * @generated */ protected void setLineType(int style) { if (primaryShape instanceof Shape) { ((Shape) primaryShape).setLineStyle(style); } } /** * @generated */ public EditPart getPrimaryChildEditPart() { return getChildBySemanticHint(MIDVisualIDRegistry.getType(WrappingLabel7EditPart.VISUAL_ID)); } /** * @generated */ protected void handleNotificationEvent(Notification event) { if (event.getNotifier() == getModel() && EcorePackage.eINSTANCE.getEModelElement_EAnnotations().equals(event.getFeature())) { handleMajorSemanticChange(); } else { super.handleNotificationEvent(event); } } /** * @generated */ public class ModelRelFigure extends RoundedRectangle { /** * @generated */ private WrappingLabel fFigureModelRelLabelFigure; /** * @generated */ private WrappingLabel fFigureCustomModelRelLabelFigure; /** * @generated */ public ModelRelFigure() { FlowLayout layoutThis = new FlowLayout(); layoutThis.setStretchMinorAxis(false); layoutThis.setMinorAlignment(FlowLayout.ALIGN_LEFTTOP); layoutThis.setMajorAlignment(FlowLayout.ALIGN_LEFTTOP); layoutThis.setMajorSpacing(5); layoutThis.setMinorSpacing(5); layoutThis.setHorizontal(true); this.setLayoutManager(layoutThis); this.setCornerDimensions(new Dimension(getMapMode().DPtoLP(12), getMapMode().DPtoLP(12))); this.setLineWidth(3); this.setForegroundColor(THIS_FORE); this.setBackgroundColor(THIS_BACK); this.setMinimumSize(new Dimension(getMapMode().DPtoLP(0), getMapMode().DPtoLP(60))); this.setBorder( new MarginBorder( getMapMode().DPtoLP(7), getMapMode().DPtoLP(7), getMapMode().DPtoLP(7), getMapMode().DPtoLP(7))); createContents(); } /** * @generated */ private void createContents() { fFigureCustomModelRelLabelFigure = new WrappingLabel(); fFigureCustomModelRelLabelFigure.setText(""); fFigureCustomModelRelLabelFigure.setForegroundColor(ColorConstants.darkGray); this.add(fFigureCustomModelRelLabelFigure); fFigureModelRelLabelFigure = new WrappingLabel(); fFigureModelRelLabelFigure.setText(""); fFigureModelRelLabelFigure.setForegroundColor(ColorConstants.darkGray); this.add(fFigureModelRelLabelFigure); } /** * @generated */ public WrappingLabel getFigureModelRelLabelFigure() { return fFigureModelRelLabelFigure; } /** * @generated */ public WrappingLabel getFigureCustomModelRelLabelFigure() { return fFigureCustomModelRelLabelFigure; } } /** * @generated */ static final Color THIS_FORE = new Color(null, 44, 109, 163); /** * @generated */ static final Color THIS_BACK = new Color(null, 226, 226, 231); }