use of com.archimatetool.editor.diagram.editparts.diagram.DiagramImageEditPart 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 DiagramImageEditPart) {
DiagramImageEditPart part = (DiagramImageEditPart) object;
IDiagramModelObject model = part.getModel();
// Locked
if (model instanceof ILockable && ((ILockable) model).isLocked()) {
continue;
}
IBounds modelBounds = model.getBounds().getCopy();
int currentHeight = modelBounds.getHeight();
int currentWidth = modelBounds.getWidth();
// Already set to default height and width
if (currentHeight == -1 && currentWidth == -1) {
continue;
}
// Get original default size
DiagramImageFigure figure = part.getFigure();
Dimension size = figure.getDefaultSize();
if (size.height == 0 || size.width == 0) {
continue;
}
float originalRatio = ((float) size.height / (float) size.width);
float currentRatio = ((float) currentHeight / (float) currentWidth);
// If the ratio is different within tolerance
if (Math.abs(originalRatio - currentRatio) > 0.01) {
int width = currentWidth;
int height = currentHeight;
if (currentWidth < currentHeight) {
width = (int) (currentHeight / originalRatio);
} else {
height = (int) (currentWidth * originalRatio);
}
modelBounds.setWidth(width);
modelBounds.setHeight(height);
Command cmd = new SetConstraintObjectCommand(model, modelBounds);
result.add(cmd);
}
}
}
return result.unwrap();
}
use of com.archimatetool.editor.diagram.editparts.diagram.DiagramImageEditPart in project archi by archimatetool.
the class DiagramModelImageUIProviderTests method testCreateEditPart.
@Override
public void testCreateEditPart() {
EditPart editPart = provider.createEditPart();
assertTrue(editPart instanceof DiagramImageEditPart);
}
use of com.archimatetool.editor.diagram.editparts.diagram.DiagramImageEditPart in project archi by archimatetool.
the class CanvasImageUIProviderTests method testCreateEditPart.
@Override
public void testCreateEditPart() {
EditPart editPart = provider.createEditPart();
assertTrue(editPart instanceof DiagramImageEditPart);
}
use of com.archimatetool.editor.diagram.editparts.diagram.DiagramImageEditPart in project archi by archimatetool.
the class CanvasModelEditPartFactoryTests method testDiagramImageEditPart.
@Test
public void testDiagramImageEditPart() {
IDiagramModelImage image = IArchimateFactory.eINSTANCE.createDiagramModelImage();
EditPart editPart = editPartFactory.createEditPart(null, image);
assertTrue(editPart instanceof DiagramImageEditPart);
assertEquals(image, editPart.getModel());
}
Aggregations