Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Toolbox/UndoRedoStack.cpp @ 2114:c23eef785569
update year to 2024
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 24 Jan 2024 16:44:04 +0100 |
parents | 07964689cb0b |
children | 16c01cc201e7 |
rev | line source |
---|---|
408 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
2114
c23eef785569
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2077
diff
changeset
|
5 * Copyright (C) 2017-2024 Osimis S.A., Belgium |
c23eef785569
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2077
diff
changeset
|
6 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
408 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
9 * modify it under the terms of the GNU Lesser General Public License |
408 | 10 * as published by the Free Software Foundation, either version 3 of |
11 * the License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
16 * Lesser General Public License for more details. |
408 | 17 * |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
18 * You should have received a copy of the GNU Lesser General Public |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
19 * License along with this program. If not, see |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
20 * <http://www.gnu.org/licenses/>. |
408 | 21 **/ |
22 | |
23 | |
24 #include "UndoRedoStack.h" | |
25 | |
1455
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1270
diff
changeset
|
26 #include <OrthancException.h> |
408 | 27 |
28 #include <cassert> | |
29 | |
30 namespace OrthancStone | |
31 { | |
32 void UndoRedoStack::Clear(UndoRedoStack::Stack::iterator from) | |
33 { | |
34 for (Stack::iterator it = from; it != stack_.end(); ++it) | |
35 { | |
36 assert(*it != NULL); | |
37 delete *it; | |
38 } | |
39 | |
40 stack_.erase(from, stack_.end()); | |
41 } | |
42 | |
43 | |
44 UndoRedoStack::UndoRedoStack() : | |
45 current_(stack_.end()) | |
46 { | |
47 } | |
48 | |
49 | |
50 UndoRedoStack::~UndoRedoStack() | |
51 { | |
52 Clear(stack_.begin()); | |
53 } | |
54 | |
55 | |
56 void UndoRedoStack::Add(ICommand* command) | |
57 { | |
58 if (command == NULL) | |
59 { | |
60 throw Orthanc::OrthancException(Orthanc::ErrorCode_NullPointer); | |
61 } | |
62 | |
63 Clear(current_); | |
64 | |
65 stack_.push_back(command); | |
66 current_ = stack_.end(); | |
67 } | |
68 | |
69 | |
70 void UndoRedoStack::Undo() | |
71 { | |
72 if (current_ != stack_.begin()) | |
73 { | |
74 --current_; | |
75 | |
76 assert(*current_ != NULL); | |
77 (*current_)->Undo(); | |
78 } | |
79 } | |
80 | |
81 void UndoRedoStack::Redo() | |
82 { | |
83 if (current_ != stack_.end()) | |
84 { | |
85 assert(*current_ != NULL); | |
86 (*current_)->Redo(); | |
87 | |
88 ++current_; | |
89 } | |
90 } | |
91 } |