Initial revision
[ardour.git] / libs / pbd3 / undo.cc
1 /* 
2     Copyright (C) 2001 Brett Viren & Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include <iostream>
22
23 #include <pbd/undo.h>
24
25 using namespace std;
26 using namespace sigc;
27
28 UndoCommand::UndoCommand ()
29 {
30 }
31
32 UndoCommand::UndoCommand (const UndoCommand& rhs)
33 {
34         _name = rhs._name;
35         clear ();
36         undo_actions.insert(undo_actions.end(),rhs.undo_actions.begin(),rhs.undo_actions.end());
37         redo_actions.insert(redo_actions.end(),rhs.redo_actions.begin(),rhs.redo_actions.end());
38 }
39
40 UndoCommand& 
41 UndoCommand::operator= (const UndoCommand& rhs)
42 {
43         if (this == &rhs) return *this;
44         _name = rhs._name;
45         clear ();
46         undo_actions.insert(undo_actions.end(),rhs.undo_actions.begin(),rhs.undo_actions.end());
47         redo_actions.insert(redo_actions.end(),rhs.redo_actions.begin(),rhs.redo_actions.end());
48         return *this;
49 }
50
51 void
52 UndoCommand::add_undo (const UndoAction& action)
53 {
54         undo_actions.push_back (action);
55 }
56
57 void
58 UndoCommand::add_redo (const UndoAction& action)
59 {
60         redo_actions.push_back (action);
61         redo_actions.back()(); // operator()
62 }
63
64 void
65 UndoCommand::add_redo_no_execute (const UndoAction& action)
66 {
67         redo_actions.push_back (action);
68 }
69
70 void
71 UndoCommand::clear ()
72 {
73         undo_actions.clear ();
74         redo_actions.clear ();
75 }
76
77 void
78 UndoCommand::undo ()
79 {
80         for (list<UndoAction>::reverse_iterator i = undo_actions.rbegin(); i != undo_actions.rend(); ++i) {
81                 (*i)();
82         }
83 }
84
85 void
86 UndoCommand::redo ()
87 {
88         for (list<UndoAction>::iterator i = redo_actions.begin(); i != redo_actions.end(); ++i) {
89                 (*i)();
90         }
91 }
92
93 void
94 UndoHistory::add (UndoCommand uc)
95 {
96         UndoList.push_back (uc);
97 }
98
99 void
100 UndoHistory::undo (unsigned int n)
101 {
102         while (n--) {
103                 if (UndoList.size() == 0) {
104                         return;
105                 }
106                 UndoCommand uc = UndoList.back ();
107                 UndoList.pop_back ();
108                 uc.undo ();
109                 RedoList.push_back (uc);
110         }
111 }
112
113 void
114 UndoHistory::redo (unsigned int n)
115 {
116         while (n--) {
117                 if (RedoList.size() == 0) {
118                         return;
119                 }
120                 UndoCommand cmd = RedoList.back ();
121                 RedoList.pop_back ();
122                 cmd.redo ();
123                 UndoList.push_back (cmd);
124         }
125 }
126
127 void
128 UndoHistory::clear_redo ()
129 {
130         RedoList.clear ();
131 }
132
133 void
134 UndoHistory::clear_undo ()
135 {
136         UndoList.clear ();
137 }
138
139 void
140 UndoHistory::clear ()
141 {
142         RedoList.clear ();
143         UndoList.clear ();
144 }