Added copyright lines for files I've edited this year.
[synfig.git] / synfig-studio / trunk / src / synfigapp / actions / valuenoderemove.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuenoderemove.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2008 Chris Moore
10 **
11 **      This package is free software; you can redistribute it and/or
12 **      modify it under the terms of the GNU General Public License as
13 **      published by the Free Software Foundation; either version 2 of
14 **      the License, or (at your option) any later version.
15 **
16 **      This package is distributed in the hope that it will be useful,
17 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 **      General Public License for more details.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === H E A D E R S ======================================================= */
25
26 #ifdef USING_PCH
27 #       include "pch.h"
28 #else
29 #ifdef HAVE_CONFIG_H
30 #       include <config.h>
31 #endif
32
33 #include "valuenoderemove.h"
34 #include <synfigapp/canvasinterface.h>
35
36 #include <synfigapp/general.h>
37
38 #endif
39
40 using namespace std;
41 using namespace etl;
42 using namespace synfig;
43 using namespace synfigapp;
44 using namespace Action;
45
46 /* === M A C R O S ========================================================= */
47
48 ACTION_INIT_NO_GET_LOCAL_NAME(Action::ValueNodeRemove);
49 ACTION_SET_NAME(Action::ValueNodeRemove,"value_node_remove");
50 ACTION_SET_LOCAL_NAME(Action::ValueNodeRemove,N_("Unexport"));
51 ACTION_SET_TASK(Action::ValueNodeRemove,"remove");
52 ACTION_SET_CATEGORY(Action::ValueNodeRemove,Action::CATEGORY_VALUENODE);
53 ACTION_SET_PRIORITY(Action::ValueNodeRemove,0);
54 ACTION_SET_VERSION(Action::ValueNodeRemove,"0.0");
55 ACTION_SET_CVS_ID(Action::ValueNodeRemove,"$Id$");
56
57 /* === G L O B A L S ======================================================= */
58
59 /* === P R O C E D U R E S ================================================= */
60
61 /* === M E T H O D S ======================================================= */
62
63 Action::ValueNodeRemove::ValueNodeRemove()
64 {
65 }
66
67 synfig::String
68 Action::ValueNodeRemove::get_local_name()const
69 {
70         // TRANSLATORS: This is used in the 'history' dialog when a ValueNode is unexported.
71         return strprintf(_("Unexport '%s'"), old_name.c_str());
72 }
73
74 Action::ParamVocab
75 Action::ValueNodeRemove::get_param_vocab()
76 {
77         ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
78
79         ret.push_back(ParamDesc("value_node",Param::TYPE_VALUENODE)
80                 .set_local_name(_("ValueNode"))
81         );
82
83         return ret;
84 }
85
86 bool
87 Action::ValueNodeRemove::is_candidate(const ParamList &x)
88 {
89         if(candidate_check(get_param_vocab(),x))
90         {
91                 ValueNode::Handle value_node=x.find("value_node")->second.get_value_node();
92                 if(!value_node->is_exported())
93                         return false;
94 //              if(value_node->rcount()!=1)
95 //                      return false;
96                 return true;
97         }
98         return false;
99 }
100
101 bool
102 Action::ValueNodeRemove::set_param(const synfig::String& name, const Action::Param &param)
103 {
104         if(name=="value_node" && param.get_type()==Param::TYPE_VALUENODE)
105         {
106                 value_node=param.get_value_node();
107
108                 if(value_node && !value_node->is_exported())
109                 {
110                         synfig::error("Action::ValueNodeRemove::set_param(): ValueBase node not exported!");
111                         value_node=0;
112                 }
113
114                 return (bool)value_node;
115         }
116
117         return Action::CanvasSpecific::set_param(name,param);
118 }
119
120 bool
121 Action::ValueNodeRemove::is_ready()const
122 {
123         if(!value_node)
124                 synfig::error("Action::ValueNodeRemove::is_ready(): ValueNode not set!");
125
126         if(!value_node)
127                 return false;
128         return Action::CanvasSpecific::is_ready();
129 }
130
131 void
132 Action::ValueNodeRemove::perform()
133 {
134 //      if(value_node->rcount()!=1)
135 //              throw Error(_("ValueNode is still being used by something"));
136
137         old_name=value_node->get_id();
138         parent_canvas=value_node->get_parent_canvas();
139         parent_canvas->remove_value_node(value_node);
140
141         if(get_canvas_interface())
142         {
143                 get_canvas_interface()->signal_value_node_deleted()(value_node);
144         }
145
146         //throw Error(_("Not yet implemented"));
147 /*
148         assert(value_node->is_exported());
149
150         if(get_canvas()->value_node_list().count(new_name))
151                 throw Error(_("A ValueNode with this ID already exists in this canvas"));
152
153         old_name=value_node->get_id();
154
155         value_node->set_id(new_name);
156
157         if(get_canvas_interface())
158         {
159                 get_canvas_interface()->signal_value_node_changed()(value_node);
160         }
161 */
162 }
163
164 void
165 Action::ValueNodeRemove::undo()
166 {
167         parent_canvas->add_value_node(value_node,old_name);
168         if(get_canvas_interface())
169         {
170                 get_canvas_interface()->signal_value_node_added()(value_node);
171         }
172
173         //throw Error(_("Not yet implemented"));
174 /*
175         assert(value_node->is_exported());
176
177         if(get_canvas()->value_node_list().count(old_name))
178                 throw Error(_("A ValueNode with the old ID already exists in this canvas (BUG)"));
179
180         value_node->set_id(old_name);
181
182         if(get_canvas_interface())
183         {
184                 get_canvas_interface()->signal_value_node_changed()(value_node);
185         }
186 */
187 }