/* * @(#)CutCommand.java * * Project: JHotdraw - a GUI framework for technical drawings * http://www.jhotdraw.org * http://jhotdraw.sourceforge.net * Copyright: © by the original author(s) and all contributors * License: Lesser GNU Public License (LGPL) * http://www.opensource.org/licenses/lgpl-license.html */ package CH.ifa.draw.standard; import CH.ifa.draw.framework.*; import CH.ifa.draw.util.Undoable; import CH.ifa.draw.util.UndoableAdapter; /** * Delete the selection and move the selected figures to * the clipboard. * * @see Clipboard * * @version <$CURRENT_VERSION$> */ public class CutCommand extends FigureTransferCommand { /** * Constructs a cut command. * @param name the command name * @param newDrawingEditor the DrawingEditor which manages the views */ public CutCommand(String name, DrawingEditor newDrawingEditor) { super(name, newDrawingEditor); } public void execute() { super.execute(); setUndoActivity(createUndoActivity()); getUndoActivity().setAffectedFigures(view().selectionElements()); copyFigures(getUndoActivity().getAffectedFigures(), view().selectionCount()); deleteFigures(getUndoActivity().getAffectedFigures()); view().checkDamage(); } public boolean isExecutableWithView() { return view().selectionCount() > 0; } /** * Factory method for undo activity */ protected Undoable createUndoActivity() { return new CutCommand.UndoActivity(this); } public static class UndoActivity extends UndoableAdapter { private FigureTransferCommand myCommand; public UndoActivity(FigureTransferCommand newCommand) { super(newCommand.view()); myCommand = newCommand; setUndoable(true); setRedoable(true); } public boolean undo() { if (super.undo() && getAffectedFigures().hasMoreElements()) { getDrawingView().clearSelection(); setAffectedFigures(myCommand.insertFigures( getAffectedFigures(), 0, 0)); return true; } return false; } public boolean redo() { // do not call execute directly as the selection might has changed if (isRedoable()) { myCommand.copyFigures(getAffectedFigures(), getDrawingView().selectionCount()); myCommand.deleteFigures(getAffectedFigures()); return true; } return false; } } }