Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_03 / synfig-studio / src / synfigapp / actions / canvasremove.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file canvasremove.cpp
3 **      \brief Template File
4 **
5 **      $Id: canvasremove.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #ifdef USING_PCH
26 #       include "pch.h"
27 #else
28 #ifdef HAVE_CONFIG_H
29 #       include <config.h>
30 #endif
31
32 #include "canvasremove.h"
33 #include <synfigapp/canvasinterface.h>
34
35 #endif
36
37 using namespace std;
38 using namespace etl;
39 using namespace synfig;
40 using namespace synfigapp;
41 using namespace Action;
42
43 /* === M A C R O S ========================================================= */
44
45 ACTION_INIT(Action::CanvasRemove);
46 ACTION_SET_NAME(Action::CanvasRemove,"canvas_remove");
47 ACTION_SET_LOCAL_NAME(Action::CanvasRemove,"Remove Canvas");
48 ACTION_SET_TASK(Action::CanvasRemove,"remove");
49 ACTION_SET_CATEGORY(Action::CanvasRemove,Action::CATEGORY_CANVAS);
50 ACTION_SET_PRIORITY(Action::CanvasRemove,0);
51 ACTION_SET_VERSION(Action::CanvasRemove,"0.0");
52 ACTION_SET_CVS_ID(Action::CanvasRemove,"$Id: canvasremove.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $");
53
54 /* === G L O B A L S ======================================================= */
55
56 /* === P R O C E D U R E S ================================================= */
57
58 /* === M E T H O D S ======================================================= */
59
60 Action::CanvasRemove::CanvasRemove()
61 {
62 }
63
64 Action::ParamVocab
65 Action::CanvasRemove::get_param_vocab()
66 {
67         ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
68         
69         return ret;
70 }
71
72 bool
73 Action::CanvasRemove::is_canidate(const ParamList &x)
74 {
75         if(canidate_check(get_param_vocab(),x))
76         {
77                 Canvas::Handle canvas=x.find("canvas")->second.get_canvas();
78                 assert(canvas);
79                 // We cannot remove the root canvas.
80                 if(canvas->is_root())
81                         return false;
82                 
83                 return true;
84         }
85         return false;
86 }
87
88 bool
89 Action::CanvasRemove::set_param(const synfig::String& name, const Action::Param &param)
90 {
91         return Action::CanvasSpecific::set_param(name,param);
92 }
93
94 bool
95 Action::CanvasRemove::is_ready()const
96 {
97         return Action::CanvasSpecific::is_ready();
98 }
99
100 void
101 Action::CanvasRemove::perform()
102 {
103         // We cannot remove the root canvas.
104         if(get_canvas()->is_root())
105                 throw Error(_("You cannot remove the root canvas!"));
106
107         if(get_canvas()->is_inline())
108                 throw Error(_("You cannot remove an inline canvas!"));
109         
110         parent_canvas=get_canvas()->parent();
111         canvas_id=get_canvas()->get_id();
112         
113         assert(parent_canvas);
114         
115         parent_canvas->remove_child_canvas(get_canvas());
116         
117         if(get_canvas_interface())
118         {
119                 get_canvas_interface()->signal_canvas_removed()(get_canvas());
120         }
121         else synfig::warning("CanvasInterface not set on action");
122 }
123
124 void
125 Action::CanvasRemove::undo()
126 {
127         parent_canvas->add_child_canvas(get_canvas(), canvas_id);
128
129         if(get_canvas_interface())
130         {
131                 get_canvas_interface()->signal_canvas_added()(get_canvas());
132         }
133         else synfig::warning("CanvasInterface not set on action");
134 }