Undo Example 3 : Undo Redo « Swing JFC « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing JFC » Undo RedoScreenshots 
Undo Example 3
Undo Example 3
 
/*
Core SWING Advanced Programming 
By Kim Topley
ISBN: 0 13 083292 8       
Publisher: Prentice Hall  
*/

import java.awt.BorderLayout;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.InputEvent;
import java.awt.event.KeyEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTree;
import javax.swing.KeyStroke;
import javax.swing.UIManager;
import javax.swing.event.UndoableEditListener;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.TreeNode;
import javax.swing.tree.TreePath;
import javax.swing.undo.AbstractUndoableEdit;
import javax.swing.undo.CannotRedoException;
import javax.swing.undo.CannotUndoException;
import javax.swing.undo.UndoManager;
import javax.swing.undo.UndoableEditSupport;

public class UndoExample3 extends JFrame {
  public UndoExample3() {
    super("Undo/Redo Example 3");

    DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("root");
    DefaultMutableTreeNode node = new DefaultMutableTreeNode("Apollo 8");
    rootNode.add(node);
    node.add(new DefaultMutableTreeNode("Borman"));
    node.add(new DefaultMutableTreeNode("Lovell"));
    node.add(new DefaultMutableTreeNode("Anders"));

    node = new DefaultMutableTreeNode("Apollo 11");
    rootNode.add(node);
    node.add(new DefaultMutableTreeNode("Armstrong"));
    node.add(new DefaultMutableTreeNode("Aldrin"));
    node.add(new DefaultMutableTreeNode("Collins"));

    node = new DefaultMutableTreeNode("Apollo 12");
    rootNode.add(node);
    node.add(new DefaultMutableTreeNode("Conrad"));
    node.add(new DefaultMutableTreeNode("Gordon"));
    node.add(new DefaultMutableTreeNode("Bean"));

    UndoableTree tree = new UndoableTree(rootNode);

    getContentPane().add(new JScrollPane(tree), BorderLayout.CENTER);

    // Create the undo manager and actions
    UndoManager manager = new UndoManager();
    tree.addUndoableEditListener(manager);

    Action undoAction = new UndoAction(manager);
    Action redoAction = new RedoAction(manager);

    // Add the actions to buttons
    JPanel panel = new JPanel();
    JButton undoButton = new JButton("Undo");
    JButton redoButton = new JButton("Redo");
    undoButton.addActionListener(undoAction);
    redoButton.addActionListener(redoAction);
    panel.add(undoButton);
    panel.add(redoButton);
    getContentPane().add(panel, BorderLayout.SOUTH);

    // Assign the actions to keys
    ((JComponentgetContentPane()).registerKeyboardAction(undoAction,
        KeyStroke.getKeyStroke(KeyEvent.VK_Z, InputEvent.CTRL_MASK),
        JComponent.WHEN_IN_FOCUSED_WINDOW);
    ((JComponentgetContentPane()).registerKeyboardAction(redoAction,
        KeyStroke.getKeyStroke(KeyEvent.VK_Y, InputEvent.CTRL_MASK),
        JComponent.WHEN_IN_FOCUSED_WINDOW);
  }

  // The Undo action
  public class UndoAction extends AbstractAction {
    public UndoAction(UndoManager manager) {
      this.manager = manager;
    }

    public void actionPerformed(ActionEvent evt) {
      try {
        manager.undo();
      catch (CannotUndoException e) {
        Toolkit.getDefaultToolkit().beep();
      }
    }

    private UndoManager manager;
  }

  // The Redo action
  public class RedoAction extends AbstractAction {
    public RedoAction(UndoManager manager) {
      this.manager = manager;
    }

    public void actionPerformed(ActionEvent evt) {
      try {
        manager.redo();
      catch (CannotRedoException e) {
        Toolkit.getDefaultToolkit().beep();
      }
    }

    private UndoManager manager;
  }

  public static void main(String[] args) {
    try {
        UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    catch (Exception evt) {}
  
    JFrame f = new UndoExample3();
    f.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent evt) {
        System.exit(0);
      }
    });
    f.pack();
    f.setVisible(true);
  }
}

class UndoableTree extends JTree {
  // Only one constructor for brevity
  public UndoableTree(TreeNode root) {
    super(root);
  }

  public void addUndoableEditListener(UndoableEditListener l) {
    support.addUndoableEditListener(l);
  }

  public void removeUndoableEditListener(UndoableEditListener l) {
    support.removeUndoableEditListener(l);
  }

  public void collapsePath(TreePath path) {
    boolean wasExpanded = isExpanded(path);

    super.collapsePath(path);

    boolean isExpanded = isExpanded(path);
    if (isExpanded != wasExpanded) {
      support.postEdit(new CollapseEdit(path));
    }
  }

  public void expandPath(TreePath path) {
    boolean wasExpanded = isExpanded(path);

    super.expandPath(path);

    boolean isExpanded = isExpanded(path);
    if (isExpanded != wasExpanded) {
      support.postEdit(new ExpandEdit(path));
    }
  }

  private void undoExpansion(TreePath path) {
    super.collapsePath(path);
  }

  private void undoCollapse(TreePath path) {
    super.expandPath(path);
  }

  private class CollapseEdit extends AbstractUndoableEdit {
    public CollapseEdit(TreePath path) {
      this.path = path;
    }

    public void undo() throws CannotUndoException {
      super.undo();
      UndoableTree.this.undoCollapse(path);
    }

    public void redo() throws CannotRedoException {
      super.redo();
      UndoableTree.this.undoExpansion(path);
    }

    public String getPresentationName() {
      return "node collapse";
    }

    private TreePath path;
  }

  private class ExpandEdit extends AbstractUndoableEdit {
    public ExpandEdit(TreePath path) {
      this.path = path;
    }

    public void undo() throws CannotUndoException {
      super.undo();
      UndoableTree.this.undoExpansion(path);
    }

    public void redo() throws CannotRedoException {
      super.redo();
      UndoableTree.this.undoCollapse(path);
    }

    public String getPresentationName() {
      return "node expansion";
    }

    private TreePath path;
  }

  private UndoableEditSupport support = new UndoableEditSupport(this);
}


           
         
  
Related examples in the same category
1. The use of UndoableToggleEditThe use of UndoableToggleEdit
2. The use of StateEdit(able)The use of StateEdit(able)
3. The use of UndoManagerThe use of UndoManager
4. A sample app showing the use of UndoableToggleEdit and CompoundEditA sample app showing the use of UndoableToggleEdit and CompoundEdit
5. An example that shows lots of little UndoManager detailsAn example that shows lots of little UndoManager details
6. Undo redo textareaUndo redo textarea
7. Undo managerUndo manager
8. Simple GUI demo of UndoManager and friendsSimple GUI demo of UndoManager and friends
9. Undo Example 1Undo Example 1
10. Undo Example 2Undo Example 2
11. Undo Example 4Undo Example 4
12. Undo Example 5Undo Example 5
13. Undo Example 6Undo Example 6
14. Undoable Drawing Panel 2Undoable Drawing Panel 2
15. Undo DrawingUndo Drawing
16. Undo Example 7Undo Example 7
17. Creating TextArea with Undo, Redo Capabilities
18. Add Undo and Redo to a text component
19. Add undo support to the StyleFrame exampleAdd undo support to the StyleFrame example
20. Adding Undo and Redo to a Text Component
21. Create a redo action and add it to the text component (JTextComponent)
22. Listen for undo and redo events
23. Create an undo action and add it to the text component
24. Bind the undo action to ctl-Z
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.