/* * DBeaver - Universal Database Manager * Copyright (C) 2010-2017 Serge Rider (serge@jkiss.org) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jkiss.dbeaver.ext.erd.command; import org.eclipse.draw2d.geometry.Dimension; import org.eclipse.draw2d.geometry.Point; import org.eclipse.draw2d.geometry.Rectangle; import org.eclipse.gef.commands.Command; import org.jkiss.dbeaver.ext.erd.model.ERDEntity; import org.jkiss.dbeaver.ext.erd.part.DiagramPart; import org.jkiss.dbeaver.ext.erd.part.EntityPart; import java.util.Collection; /** * Add entity to diagram */ public class EntityAddCommand extends Command { private DiagramPart diagramPart; private Collection<ERDEntity> entities; private Point location; public EntityAddCommand(DiagramPart diagram, Collection<ERDEntity> entities, Point location) { this.diagramPart = diagram; this.entities = entities; this.location = location; } @Override public void execute() { Point curLocation = location == null ? null : new Point(location); for (ERDEntity entity : entities) { diagramPart.getDiagram().addTable(entity, true); //diagramPart.getDiagram().addRelations(monitor, entity, true); if (curLocation != null) { // Put new entities in specified location for (Object diagramChild : diagramPart.getChildren()) { if (diagramChild instanceof EntityPart) { EntityPart entityPart = (EntityPart) diagramChild; if (entityPart.getTable() == entity) { final Rectangle newBounds = new Rectangle(); final Dimension size = entityPart.getFigure().getPreferredSize(); newBounds.x = curLocation.x; newBounds.y = curLocation.y; newBounds.width = size.width; newBounds.height = size.height; entityPart.modifyBounds(newBounds); curLocation.x += size.width + 20; break; } } } } } } @Override public void undo() { for (ERDEntity entity : entities) { diagramPart.getDiagram().removeTable(entity, true); } } }