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 / valuenoderemove.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuenoderemove.cpp
3 **      \brief Template File
4 **
5 **      $Id: valuenoderemove.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 "valuenoderemove.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::ValueNodeRemove);
46 ACTION_SET_NAME(Action::ValueNodeRemove,"value_node_remove");
47 ACTION_SET_LOCAL_NAME(Action::ValueNodeRemove,_("Unexport"));
48 ACTION_SET_TASK(Action::ValueNodeRemove,"remove");
49 ACTION_SET_CATEGORY(Action::ValueNodeRemove,Action::CATEGORY_VALUENODE);
50 ACTION_SET_PRIORITY(Action::ValueNodeRemove,0);
51 ACTION_SET_VERSION(Action::ValueNodeRemove,"0.0");
52 ACTION_SET_CVS_ID(Action::ValueNodeRemove,"$Id: valuenoderemove.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::ValueNodeRemove::ValueNodeRemove()
61 {
62 }
63
64 Action::ParamVocab
65 Action::ValueNodeRemove::get_param_vocab()
66 {
67         ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
68         
69         ret.push_back(ParamDesc("value_node",Param::TYPE_VALUENODE)
70                 .set_local_name(_("ValueNode"))
71         );
72         
73         return ret;
74 }
75
76 bool
77 Action::ValueNodeRemove::is_canidate(const ParamList &x)
78 {
79         if(canidate_check(get_param_vocab(),x))
80         {
81                 ValueNode::Handle value_node=x.find("value_node")->second.get_value_node();
82                 if(!value_node->is_exported())
83                         return false;
84 //              if(value_node->rcount()!=1)
85 //                      return false;
86                 return true;
87         }
88         return false;
89 }
90
91 bool
92 Action::ValueNodeRemove::set_param(const synfig::String& name, const Action::Param &param)
93 {
94         if(name=="value_node" && param.get_type()==Param::TYPE_VALUENODE)
95         {
96                 value_node=param.get_value_node();
97                 
98                 if(value_node && !value_node->is_exported())
99                 {
100                         synfig::error("Action::ValueNodeRemove::set_param(): ValueBase node not exported!");
101                         value_node=0;
102                 }
103                 
104                 return (bool)value_node;
105         }
106
107         return Action::CanvasSpecific::set_param(name,param);
108 }
109
110 bool
111 Action::ValueNodeRemove::is_ready()const
112 {
113         if(!value_node)
114                 synfig::error("Action::ValueNodeRemove::is_ready(): ValueNode not set!");
115
116         if(!value_node)
117                 return false;
118         return Action::CanvasSpecific::is_ready();
119 }
120
121 void
122 Action::ValueNodeRemove::perform()
123 {       
124 //      if(value_node->rcount()!=1)
125 //              throw Error(_("ValueNode is still being used by something"));
126
127         old_name=value_node->get_id();
128         parent_canvas=value_node->get_parent_canvas();
129         parent_canvas->remove_value_node(value_node);
130
131         if(get_canvas_interface())
132         {
133                 get_canvas_interface()->signal_value_node_deleted()(value_node);
134         }
135         
136         //throw Error(_("Not yet implemented"));
137 /*
138         assert(value_node->is_exported());
139
140         if(get_canvas()->value_node_list().count(new_name))
141                 throw Error(_("A ValueNode with this ID already exists in this canvas"));
142         
143         old_name=value_node->get_id();
144
145         value_node->set_id(new_name);   
146         
147         if(get_canvas_interface())
148         {
149                 get_canvas_interface()->signal_value_node_changed()(value_node);
150         }
151 */
152 }
153
154 void
155 Action::ValueNodeRemove::undo()
156 {
157         parent_canvas->add_value_node(value_node,old_name);
158         if(get_canvas_interface())
159         {
160                 get_canvas_interface()->signal_value_node_added()(value_node);
161         }
162         
163         //throw Error(_("Not yet implemented"));
164 /*
165         assert(value_node->is_exported());
166
167         if(get_canvas()->value_node_list().count(old_name))
168                 throw Error(_("A ValueNode with the old ID already exists in this canvas (BUG)"));
169         
170         value_node->set_id(old_name);   
171         
172         if(get_canvas_interface())
173         {
174                 get_canvas_interface()->signal_value_node_changed()(value_node);
175         }
176 */
177 }