Search in sources :

Example 1 with AbstractConnectedEditPart

use of com.archimatetool.editor.diagram.editparts.AbstractConnectedEditPart in project archi by archimatetool.

the class ResetAspectRatioAction method createCommand.

private Command createCommand(List<?> objects) {
    CompoundCommand result = new CompoundCommand();
    for (Object object : objects) {
        if (object instanceof AbstractConnectedEditPart) {
            AbstractConnectedEditPart editPart = (AbstractConnectedEditPart) object;
            AbstractDiagramModelObjectFigure figure = (AbstractDiagramModelObjectFigure) editPart.getFigure();
            IDiagramModelObject dmo = editPart.getModel();
            // Diagram Image object with image or Iconic type with image and Fill setting
            if (!isDiagramObjectWithImage(dmo) && !isIconicWithImageFill(dmo, figure)) {
                continue;
            }
            // Locked
            if (dmo instanceof ILockable && ((ILockable) dmo).isLocked()) {
                continue;
            }
            IBounds modelBounds = dmo.getBounds().getCopy();
            int currentHeight = modelBounds.getHeight();
            int currentWidth = modelBounds.getWidth();
            // Sanity check
            if (currentHeight < 1 || currentWidth < 1) {
                continue;
            }
            float currentRatio = ((float) currentHeight / (float) currentWidth);
            float otherRatio = 0;
            // Image object type
            if (dmo instanceof IDiagramModelImage) {
                // This will return the image's proper size (unsized) if there is an image, else the object's size
                Dimension size = figure.getDefaultSize();
                if (size.height == 0 || size.width == 0) {
                    continue;
                }
                otherRatio = ((float) size.height / (float) size.width);
            } else // Iconic and fill type is fill and has an image
            {
                Rectangle imageBounds = figure.getIconicDelegate().getImage().getBounds();
                otherRatio = ((float) imageBounds.height / (float) imageBounds.width);
            }
            // If the ratio is different (within tolerance)
            if (otherRatio != 0 && Math.abs(otherRatio - currentRatio) > 0.01) {
                if (currentWidth < currentHeight) {
                    currentWidth = (int) (currentHeight / otherRatio);
                } else {
                    currentHeight = (int) (currentWidth * otherRatio);
                }
                modelBounds.setWidth(currentWidth);
                modelBounds.setHeight(currentHeight);
                Command cmd = new SetConstraintObjectCommand(dmo, modelBounds);
                result.add(cmd);
            }
        }
    }
    return result.unwrap();
}
Also used : AbstractDiagramModelObjectFigure(com.archimatetool.editor.diagram.figures.AbstractDiagramModelObjectFigure) AbstractConnectedEditPart(com.archimatetool.editor.diagram.editparts.AbstractConnectedEditPart) IBounds(com.archimatetool.model.IBounds) Rectangle(org.eclipse.swt.graphics.Rectangle) IDiagramModelObject(com.archimatetool.model.IDiagramModelObject) Dimension(org.eclipse.draw2d.geometry.Dimension) CompoundCommand(org.eclipse.gef.commands.CompoundCommand) SetConstraintObjectCommand(com.archimatetool.editor.diagram.commands.SetConstraintObjectCommand) SetConstraintObjectCommand(com.archimatetool.editor.diagram.commands.SetConstraintObjectCommand) CompoundCommand(org.eclipse.gef.commands.CompoundCommand) Command(org.eclipse.gef.commands.Command) IDiagramModelImage(com.archimatetool.model.IDiagramModelImage) IDiagramModelObject(com.archimatetool.model.IDiagramModelObject) ILockable(com.archimatetool.model.ILockable)

Example 2 with AbstractConnectedEditPart

use of com.archimatetool.editor.diagram.editparts.AbstractConnectedEditPart in project archi by archimatetool.

the class DefaultEditPartSizeAction method createDefaultSizeCommand.

private Command createDefaultSizeCommand(List<?> objects) {
    CompoundCommand command = new CompoundCommand();
    for (Object object : objects) {
        if (object instanceof AbstractConnectedEditPart) {
            AbstractConnectedEditPart editPart = (AbstractConnectedEditPart) object;
            IDiagramModelObject model = editPart.getModel();
            // Locked
            if (model instanceof ILockable && ((ILockable) model).isLocked()) {
                continue;
            }
            AbstractDiagramModelObjectFigure figure = (AbstractDiagramModelObjectFigure) editPart.getFigure();
            IBounds bounds = model.getBounds().getCopy();
            // If the object has an icon image and set to image fill and isn't a container with childrem
            if (model instanceof IIconic && ((IIconic) model).getImagePosition() == IIconic.ICON_POSITION_FILL && figure.hasIconImage() && !(model instanceof IDiagramModelContainer && !((IDiagramModelContainer) model).getChildren().isEmpty())) {
                Rectangle imageBounds = figure.getIconicDelegate().getImage().getBounds();
                bounds.setWidth(imageBounds.width);
                bounds.setHeight(imageBounds.height);
            } else {
                Dimension defaultSize = ((IDiagramModelObjectFigure) figure).getDefaultSize();
                bounds.setWidth(defaultSize.width);
                bounds.setHeight(defaultSize.height);
            }
            if (bounds.getWidth() != model.getBounds().getWidth() || bounds.getHeight() != model.getBounds().getHeight()) {
                Command cmd = new SetConstraintObjectCommand(model, bounds);
                command.add(cmd);
            }
        }
    }
    return command.unwrap();
}
Also used : IIconic(com.archimatetool.model.IIconic) AbstractDiagramModelObjectFigure(com.archimatetool.editor.diagram.figures.AbstractDiagramModelObjectFigure) AbstractConnectedEditPart(com.archimatetool.editor.diagram.editparts.AbstractConnectedEditPart) IBounds(com.archimatetool.model.IBounds) Rectangle(org.eclipse.swt.graphics.Rectangle) IDiagramModelObject(com.archimatetool.model.IDiagramModelObject) Dimension(org.eclipse.draw2d.geometry.Dimension) IDiagramModelObjectFigure(com.archimatetool.editor.diagram.figures.IDiagramModelObjectFigure) IDiagramModelContainer(com.archimatetool.model.IDiagramModelContainer) CompoundCommand(org.eclipse.gef.commands.CompoundCommand) SetConstraintObjectCommand(com.archimatetool.editor.diagram.commands.SetConstraintObjectCommand) SetConstraintObjectCommand(com.archimatetool.editor.diagram.commands.SetConstraintObjectCommand) CompoundCommand(org.eclipse.gef.commands.CompoundCommand) Command(org.eclipse.gef.commands.Command) IDiagramModelObject(com.archimatetool.model.IDiagramModelObject) ILockable(com.archimatetool.model.ILockable)

Aggregations

SetConstraintObjectCommand (com.archimatetool.editor.diagram.commands.SetConstraintObjectCommand)2 AbstractConnectedEditPart (com.archimatetool.editor.diagram.editparts.AbstractConnectedEditPart)2 AbstractDiagramModelObjectFigure (com.archimatetool.editor.diagram.figures.AbstractDiagramModelObjectFigure)2 IBounds (com.archimatetool.model.IBounds)2 IDiagramModelObject (com.archimatetool.model.IDiagramModelObject)2 ILockable (com.archimatetool.model.ILockable)2 Dimension (org.eclipse.draw2d.geometry.Dimension)2 Command (org.eclipse.gef.commands.Command)2 CompoundCommand (org.eclipse.gef.commands.CompoundCommand)2 Rectangle (org.eclipse.swt.graphics.Rectangle)2 IDiagramModelObjectFigure (com.archimatetool.editor.diagram.figures.IDiagramModelObjectFigure)1 IDiagramModelContainer (com.archimatetool.model.IDiagramModelContainer)1 IDiagramModelImage (com.archimatetool.model.IDiagramModelImage)1 IIconic (com.archimatetool.model.IIconic)1