/* * This file is part of LaTeXDraw. * Copyright (c) 2005-2017 Arnaud BLOUIN * LaTeXDraw is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later version. * LaTeXDraw is distributed without any warranty; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. */ package net.sf.latexdraw.actions.shape; import java.util.List; import java.util.stream.Collectors; import net.sf.latexdraw.models.ShapeFactory; import net.sf.latexdraw.models.interfaces.shape.IShape; import org.malai.action.Action; import org.malai.action.ActionImpl; /** * This action copies the selected shapes. * @author Arnaud BLOUIN */ public class CopyShapes extends ActionImpl { /** The selection action. */ protected SelectShapes selection; /** The copied shapes from the selection. */ protected List<IShape> copiedShapes; /** The number of times that the shapes have been copied. Use to compute the gap while pasting. */ protected int nbTimeCopied; @Override protected void doActionBody() { copiedShapes = selection.getShapes().stream().map(ShapeFactory.INST::duplicate).collect(Collectors.toList()); } @Override public boolean unregisteredBy(final Action action) { return action instanceof CopyShapes; } @Override public RegistrationPolicy getRegistrationPolicy() { return RegistrationPolicy.UNLIMITED; } @Override public boolean canDo() { return selection != null && !selection.getShapes().isEmpty(); } /** * @param sel The selected shapes to copy or cut. */ public void setSelection(final SelectShapes sel) { selection = sel; } public SelectShapes getSelection() { return selection; } @Override public void flush() { super.flush(); copiedShapes.clear(); selection = null; } }