blob: a642d957b51dc191f305f8e26b404c3d8a08a9da [file] [log] [blame]
/*
*
*/
package comrel.diagram.edit.parts;
import org.eclipse.draw2d.IFigure;
import org.eclipse.draw2d.MarginBorder;
import org.eclipse.draw2d.PositionConstants;
import org.eclipse.draw2d.RectangleFigure;
import org.eclipse.draw2d.RoundedRectangle;
import org.eclipse.draw2d.Shape;
import org.eclipse.draw2d.StackLayout;
import org.eclipse.draw2d.geometry.Dimension;
import org.eclipse.gef.EditPart;
import org.eclipse.gef.EditPolicy;
import org.eclipse.gef.Request;
import org.eclipse.gef.commands.Command;
import org.eclipse.gef.editpolicies.LayoutEditPolicy;
import org.eclipse.gef.editpolicies.NonResizableEditPolicy;
import org.eclipse.gef.requests.CreateRequest;
import org.eclipse.gmf.runtime.diagram.ui.editparts.AbstractBorderedShapeEditPart;
import org.eclipse.gmf.runtime.diagram.ui.editparts.IBorderItemEditPart;
import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart;
import org.eclipse.gmf.runtime.diagram.ui.editpolicies.BorderItemSelectionEditPolicy;
import org.eclipse.gmf.runtime.diagram.ui.editpolicies.CreationEditPolicy;
import org.eclipse.gmf.runtime.diagram.ui.editpolicies.DragDropEditPolicy;
import org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles;
import org.eclipse.gmf.runtime.diagram.ui.figures.BorderItemLocator;
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 comrel.diagram.edit.parts.CartesianQueuedUnitEditPart.CartesianQueuedUnitFigure;
import comrel.diagram.edit.parts.custom.Labels;
import comrel.diagram.edit.policies.CartesianQueuedUnit4CanonicalEditPolicy;
import comrel.diagram.edit.policies.CartesianQueuedUnit4ItemSemanticEditPolicy;
import comrel.diagram.edit.policies.OpenDiagramEditPolicy;
import comrel.diagram.part.ComrelVisualIDRegistry;
/**
* @generated
*/
public class CartesianQueuedUnit4EditPart extends AbstractBorderedShapeEditPart {
/**
* @generated
*/
public static final int VISUAL_ID = 3025;
/**
* @generated
*/
protected IFigure contentPane;
/**
* @generated
*/
protected IFigure primaryShape;
/**
* @generated
*/
public CartesianQueuedUnit4EditPart(View view) {
super(view);
}
/**
* @generated
*/
protected void createDefaultEditPolicies() {
installEditPolicy(EditPolicyRoles.CREATION_ROLE,
new CreationEditPolicy());
super.createDefaultEditPolicies();
installEditPolicy(EditPolicyRoles.SEMANTIC_ROLE,
new CartesianQueuedUnit4ItemSemanticEditPolicy());
installEditPolicy(EditPolicyRoles.DRAG_DROP_ROLE,
new DragDropEditPolicy());
installEditPolicy(EditPolicyRoles.CANONICAL_ROLE,
new CartesianQueuedUnit4CanonicalEditPolicy());
installEditPolicy(EditPolicy.LAYOUT_ROLE, createLayoutEditPolicy());
installEditPolicy(EditPolicyRoles.OPEN_ROLE,
new OpenDiagramEditPolicy());
// 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() {
org.eclipse.gmf.runtime.diagram.ui.editpolicies.LayoutEditPolicy lep = new org.eclipse.gmf.runtime.diagram.ui.editpolicies.LayoutEditPolicy() {
protected EditPolicy createChildEditPolicy(EditPart child) {
View childView = (View) child.getModel();
switch (ComrelVisualIDRegistry.getVisualID(childView)) {
case SingleInputPort2EditPart.VISUAL_ID:
case MultiInputPortEditPart.VISUAL_ID:
return new BorderItemSelectionEditPolicy();
}
EditPolicy result = child
.getEditPolicy(EditPolicy.PRIMARY_DRAG_ROLE);
if (result == null) {
result = new NonResizableEditPolicy();
}
return result;
}
protected Command getMoveChildrenCommand(Request request) {
return null;
}
protected Command getCreateCommand(CreateRequest request) {
return null;
}
};
return lep;
}
/**
* @generated NOT
*/
protected IFigure createNodeShape() {
CartesianQueuedUnitFigure figure = new CartesianQueuedUnitFigure();
RectangleFigure compHelper = (RectangleFigure) figure.getChildren()
.get(1);
RectangleFigure compRef = (RectangleFigure) figure.getChildren().get(2);
Labels.setLabels(compHelper, compRef, true);
return primaryShape = figure;
}
/**
* @generated
*/
public CartesianQueuedUnitFigure getPrimaryShape() {
return (CartesianQueuedUnitFigure) primaryShape;
}
/**
* @generated NOT
*/
protected boolean addFixedChild(EditPart childEditPart) {
if (childEditPart instanceof CartesianQueuedUnitNameTypeLblStrict4EditPart) {
((CartesianQueuedUnitNameTypeLblStrict4EditPart) childEditPart)
.setLabel(getPrimaryShape()
.getFigureCartesianQueuedUnitLabelFigure());
return true;
}
if (childEditPart instanceof CartesianQueuedUnitCartesianQueuedUnitHelperUnitsCompartment4EditPart) {
IFigure pane = getPrimaryShape()
.getCartesianQueuedUnitHelperUnitsCompartmentFigure();
setupContentPane(pane); // FIXME each comparment should handle his content pane in his own way
pane.add(((CartesianQueuedUnitCartesianQueuedUnitHelperUnitsCompartment4EditPart) childEditPart)
.getFigure());
return true;
}
if (childEditPart instanceof CartesianQueuedUnitCartesianQueuedUnitRefactoringUnitCompartment4EditPart) {
IFigure pane = getPrimaryShape()
.getCartesianQueuedUnitRefactoringUnitCompartmentFigure();
setupContentPane(pane); // FIXME each comparment should handle his content pane in his own way
pane.add(((CartesianQueuedUnitCartesianQueuedUnitRefactoringUnitCompartment4EditPart) childEditPart)
.getFigure());
return true;
}
if (childEditPart instanceof SingleInputPort2EditPart) {
BorderItemLocator locator = new BorderItemLocator(getMainFigure(),
PositionConstants.NORTH);
locator.setCurrentSideOfParent(PositionConstants.NORTH); // Position des Ports
locator.setPreferredSideOfParent(PositionConstants.NORTH); // Position des Ports
getBorderedFigure().getBorderItemContainer().add(
((SingleInputPort2EditPart) childEditPart).getFigure(),
locator);
return true;
}
if (childEditPart instanceof MultiInputPortEditPart) {
BorderItemLocator locator = new BorderItemLocator(getMainFigure(),
PositionConstants.NORTH);
locator.setCurrentSideOfParent(PositionConstants.NORTH); // Position des Ports
locator.setPreferredSideOfParent(PositionConstants.NORTH); // Position des Ports
getBorderedFigure().getBorderItemContainer().add(
((MultiInputPortEditPart) childEditPart).getFigure(),
locator);
return true;
}
return false;
}
/**
* @generated NOT
*/
protected boolean removeFixedChild(EditPart childEditPart) {
if (childEditPart instanceof CartesianQueuedUnitNameTypeLblStrict4EditPart) {
return true;
}
if (childEditPart instanceof CartesianQueuedUnitCartesianQueuedUnitHelperUnitsCompartment4EditPart) {
IFigure pane = getPrimaryShape()
.getCartesianQueuedUnitHelperUnitsCompartmentFigure();
setupContentPane(pane); // FIXME each comparment should handle his content pane in his own way
pane.remove(((CartesianQueuedUnitCartesianQueuedUnitHelperUnitsCompartment4EditPart) childEditPart)
.getFigure());
return true;
}
if (childEditPart instanceof CartesianQueuedUnitCartesianQueuedUnitRefactoringUnitCompartment4EditPart) {
IFigure pane = getPrimaryShape()
.getCartesianQueuedUnitRefactoringUnitCompartmentFigure();
setupContentPane(pane); // FIXME each comparment should handle his content pane in his own way
pane.remove(((CartesianQueuedUnitCartesianQueuedUnitRefactoringUnitCompartment4EditPart) childEditPart)
.getFigure());
return true;
}
if (childEditPart instanceof SingleInputPort2EditPart) {
getBorderedFigure().getBorderItemContainer().remove(
((SingleInputPort2EditPart) childEditPart).getFigure());
return true;
}
if (childEditPart instanceof MultiInputPortEditPart) {
// getBorderedFigure().getBorderItemContainer().remove(
// ((MultiInputPortEditPart) childEditPart).getFigure());
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) {
if (editPart instanceof CartesianQueuedUnitCartesianQueuedUnitHelperUnitsCompartment4EditPart) {
return getPrimaryShape()
.getCartesianQueuedUnitHelperUnitsCompartmentFigure();
}
if (editPart instanceof CartesianQueuedUnitCartesianQueuedUnitRefactoringUnitCompartment4EditPart) {
return getPrimaryShape()
.getCartesianQueuedUnitRefactoringUnitCompartmentFigure();
}
if (editPart instanceof IBorderItemEditPart) {
return getBorderedFigure().getBorderItemContainer();
}
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 createMainFigure() {
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(ComrelVisualIDRegistry
.getType(CartesianQueuedUnitNameTypeLblStrict4EditPart.VISUAL_ID));
}
/**
* @generated
*/
public class CartesianQueuedUnitFigure extends RoundedRectangle {
/**
* @generated
*/
private WrappingLabel fFigureCartesianQueuedUnitLabelFigure;
/**
* @generated
*/
private RectangleFigure fCartesianQueuedUnitHelperUnitsCompartmentFigure;
/**
* @generated
*/
private RectangleFigure fCartesianQueuedUnitRefactoringUnitCompartmentFigure;
/**
* @generated
*/
public CartesianQueuedUnitFigure() {
this.setCornerDimensions(new Dimension(getMapMode().DPtoLP(8),
getMapMode().DPtoLP(8)));
this.setBorder(new MarginBorder(getMapMode().DPtoLP(5),
getMapMode().DPtoLP(5), getMapMode().DPtoLP(5),
getMapMode().DPtoLP(5)));
createContents();
}
/**
* @generated
*/
private void createContents() {
fFigureCartesianQueuedUnitLabelFigure = new WrappingLabel();
fFigureCartesianQueuedUnitLabelFigure
.setText("CartesianQueuedUnit");
fFigureCartesianQueuedUnitLabelFigure.setMaximumSize(new Dimension(
getMapMode().DPtoLP(10000), getMapMode().DPtoLP(50)));
this.add(fFigureCartesianQueuedUnitLabelFigure);
fCartesianQueuedUnitHelperUnitsCompartmentFigure = new RectangleFigure();
fCartesianQueuedUnitHelperUnitsCompartmentFigure.setOutline(false);
this.add(fCartesianQueuedUnitHelperUnitsCompartmentFigure);
fCartesianQueuedUnitRefactoringUnitCompartmentFigure = new RectangleFigure();
fCartesianQueuedUnitRefactoringUnitCompartmentFigure
.setOutline(false);
this.add(fCartesianQueuedUnitRefactoringUnitCompartmentFigure);
}
/**
* @generated
*/
public WrappingLabel getFigureCartesianQueuedUnitLabelFigure() {
return fFigureCartesianQueuedUnitLabelFigure;
}
/**
* @generated
*/
public RectangleFigure getCartesianQueuedUnitHelperUnitsCompartmentFigure() {
return fCartesianQueuedUnitHelperUnitsCompartmentFigure;
}
/**
* @generated
*/
public RectangleFigure getCartesianQueuedUnitRefactoringUnitCompartmentFigure() {
return fCartesianQueuedUnitRefactoringUnitCompartmentFigure;
}
}
}