1 /* === S Y N F I G ========================================================= */
2 /*! \file valuenoderemove.cpp
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
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.
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.
21 /* ========================================================================= */
23 /* === H E A D E R S ======================================================= */
32 #include "valuenoderemove.h"
33 #include <synfigapp/canvasinterface.h>
35 #include <synfigapp/general.h>
41 using namespace synfig;
42 using namespace synfigapp;
43 using namespace Action;
45 /* === M A C R O S ========================================================= */
47 ACTION_INIT(Action::ValueNodeRemove);
48 ACTION_SET_NAME(Action::ValueNodeRemove,"value_node_remove");
49 ACTION_SET_LOCAL_NAME(Action::ValueNodeRemove,N_("Unexport"));
50 ACTION_SET_TASK(Action::ValueNodeRemove,"remove");
51 ACTION_SET_CATEGORY(Action::ValueNodeRemove,Action::CATEGORY_VALUENODE);
52 ACTION_SET_PRIORITY(Action::ValueNodeRemove,0);
53 ACTION_SET_VERSION(Action::ValueNodeRemove,"0.0");
54 ACTION_SET_CVS_ID(Action::ValueNodeRemove,"$Id$");
56 /* === G L O B A L S ======================================================= */
58 /* === P R O C E D U R E S ================================================= */
60 /* === M E T H O D S ======================================================= */
62 Action::ValueNodeRemove::ValueNodeRemove()
67 Action::ValueNodeRemove::get_param_vocab()
69 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
71 ret.push_back(ParamDesc("value_node",Param::TYPE_VALUENODE)
72 .set_local_name(_("ValueNode"))
79 Action::ValueNodeRemove::is_candidate(const ParamList &x)
81 if(candidate_check(get_param_vocab(),x))
83 ValueNode::Handle value_node=x.find("value_node")->second.get_value_node();
84 if(!value_node->is_exported())
86 // if(value_node->rcount()!=1)
94 Action::ValueNodeRemove::set_param(const synfig::String& name, const Action::Param ¶m)
96 if(name=="value_node" && param.get_type()==Param::TYPE_VALUENODE)
98 value_node=param.get_value_node();
100 if(value_node && !value_node->is_exported())
102 synfig::error("Action::ValueNodeRemove::set_param(): ValueBase node not exported!");
106 return (bool)value_node;
109 return Action::CanvasSpecific::set_param(name,param);
113 Action::ValueNodeRemove::is_ready()const
116 synfig::error("Action::ValueNodeRemove::is_ready(): ValueNode not set!");
120 return Action::CanvasSpecific::is_ready();
124 Action::ValueNodeRemove::perform()
126 // if(value_node->rcount()!=1)
127 // throw Error(_("ValueNode is still being used by something"));
129 old_name=value_node->get_id();
130 parent_canvas=value_node->get_parent_canvas();
131 parent_canvas->remove_value_node(value_node);
133 if(get_canvas_interface())
135 get_canvas_interface()->signal_value_node_deleted()(value_node);
138 //throw Error(_("Not yet implemented"));
140 assert(value_node->is_exported());
142 if(get_canvas()->value_node_list().count(new_name))
143 throw Error(_("A ValueNode with this ID already exists in this canvas"));
145 old_name=value_node->get_id();
147 value_node->set_id(new_name);
149 if(get_canvas_interface())
151 get_canvas_interface()->signal_value_node_changed()(value_node);
157 Action::ValueNodeRemove::undo()
159 parent_canvas->add_value_node(value_node,old_name);
160 if(get_canvas_interface())
162 get_canvas_interface()->signal_value_node_added()(value_node);
165 //throw Error(_("Not yet implemented"));
167 assert(value_node->is_exported());
169 if(get_canvas()->value_node_list().count(old_name))
170 throw Error(_("A ValueNode with the old ID already exists in this canvas (BUG)"));
172 value_node->set_id(old_name);
174 if(get_canvas_interface())
176 get_canvas_interface()->signal_value_node_changed()(value_node);