1 | // Aseprite |
---|---|
2 | // Copyright (C) 2001-2015 David Capello |
3 | // |
4 | // This program is distributed under the terms of |
5 | // the End-User License Agreement for Aseprite. |
6 | |
7 | #ifdef HAVE_CONFIG_H |
8 | #include "config.h" |
9 | #endif |
10 | |
11 | #include "app/cmd/remove_layer.h" |
12 | |
13 | #include "doc/layer.h" |
14 | #include "doc/layer.h" |
15 | |
16 | namespace app { |
17 | namespace cmd { |
18 | |
19 | using namespace doc; |
20 | |
21 | RemoveLayer::RemoveLayer(Layer* layer) |
22 | : AddLayer(layer->parent(), layer, layer->getPrevious()) |
23 | { |
24 | } |
25 | |
26 | void RemoveLayer::onExecute() |
27 | { |
28 | AddLayer::onUndo(); |
29 | } |
30 | |
31 | void RemoveLayer::onUndo() |
32 | { |
33 | AddLayer::onRedo(); |
34 | } |
35 | |
36 | void RemoveLayer::onRedo() |
37 | { |
38 | AddLayer::onUndo(); |
39 | } |
40 | |
41 | } // namespace cmd |
42 | } // namespace app |
43 |