我正在尝试在类似绘画的程序中设置UndoManager,但失败了。我一直在查看的示例程序是文本编辑器(Example),它们调用类addUndoableEditListener的方法JTextComponent

我应该如何设置UndoManager以使用画布?

public class Pisi extends JFrame implements MouseMotionListener, MouseListener,
    UndoableEditListener {
ArrayList<ArrayList<Point>> store = new ArrayList<ArrayList<Point>>();
ArrayList<Point> pts = new ArrayList<Point>();
ArrayList<Point> newRed;
ArrayList<Point> currentRed = new ArrayList<Point>();
JPanel panel;
Point start;
static int xsize = 500;
static int ysize = 350;
int listNumber = 0;
int lastPointed = -1;
int pointed = -1;
int clicked = -1;
UndoManager undoManager = new UndoManager();
UndoAction undoAction = new UndoAction();
RedoAction redoAction = new RedoAction();
protected MyUndoableEditListener l = new MyUndoableEditListener();


public Pisi() {
    panel = new JPanel() {
        @Override
        public void paintComponent(Graphics g) {
            super.paintComponent(g);
        }
    };
    setSize(xsize, ysize);
    setResizable(false);
    getContentPane().setLayout(null);
    getContentPane().add(panel);
    setLocationRelativeTo(null);
    setVisible(true);
    panel.setLocation(0, -11);
    this.addMouseMotionListener(this);
    this.addMouseListener(this);
    **this.addUndoableEditListener(this);**
}

public static void main(String[] args) {
    Pisi d = new Pisi();
}

*... more code...*
}


所有输入将不胜感激。

最佳答案

您需要为所有应该撤消/重做的用户操作创建编辑类。这些类必须实现UndoableEdit (最好通过子类AbstractUndoableEdit)。然后,您可以将这些编辑类与UndoManagerUndoableEditSupport的实例一起使用。

您可以将UndoableEdit对象直接添加到UndoManager(它具有addEdit方法)。如果要管理UndoableEditListener对象(例如,通知菜单项或按钮),则可以为此使用UndoableEditSupport-它具有您要查找的addUndoableEditListener。

09-25 21:53