pastecommand.java

来自「开源(Open Source)项目JHotDraw的文档和源程序」· Java 代码 · 共 54 行

JAVA
54
字号
/*
 * @(#)PasteCommand.java 5.2
 *
 */

package CH.ifa.draw.standard;

import java.util.*;
import java.awt.*;
import CH.ifa.draw.util.*;
import CH.ifa.draw.framework.*;

/**
 * Command to insert the clipboard into the drawing.
 * @see Clipboard
 */
public class PasteCommand extends FigureTransferCommand {

   /**
    * Constructs a paste command.
    * @param name the command name
    * @param image the pathname of the image
    * @param view the target view
    */
    public PasteCommand(String name, DrawingView view) {
        super(name, view);
    }

    public void execute() {
        Point lastClick = fView.lastClick();
        FigureSelection selection = (FigureSelection)Clipboard.getClipboard().getContents();
        if (selection != null) {
            Vector figures = (Vector)selection.getData(FigureSelection.TYPE);
            if (figures.size() == 0)
                return;

            Rectangle r = bounds(figures.elements());
            fView.clearSelection();

            insertFigures(figures, lastClick.x-r.x, lastClick.y-r.y);
            fView.checkDamage();
        }
    }

    Rectangle bounds(Enumeration k) {
        Rectangle r = ((Figure) k.nextElement()).displayBox();
        while (k.hasMoreElements())
            r.add(((Figure) k.nextElement()).displayBox());
        return r;
    }
}


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?