Initial attempt at i18n support using gettext
[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 **
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 #include <synfigapp/general.h>
36
37 #endif
38
39 using namespace std;
40 using namespace etl;
41 using namespace synfig;
42 using namespace synfigapp;
43 using namespace Action;
44
45 /* === M A C R O S ========================================================= */
46
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$");
55
56 /* === G L O B A L S ======================================================= */
57
58 /* === P R O C E D U R E S ================================================= */
59
60 /* === M E T H O D S ======================================================= */
61
62 Action::ValueNodeRemove::ValueNodeRemove()
63 {
64 }
65
66 Action::ParamVocab
67 Action::ValueNodeRemove::get_param_vocab()
68 {
69         ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
70
71         ret.push_back(ParamDesc("value_node",Param::TYPE_VALUENODE)
72                 .set_local_name(_("ValueNode"))
73         );
74
75         return ret;
76 }
77
78 bool
79 Action::ValueNodeRemove::is_candidate(const ParamList &x)
80 {
81         if(candidate_check(get_param_vocab(),x))
82         {
83                 ValueNode::Handle value_node=x.find("value_node")->second.get_value_node();
84                 if(!value_node->is_exported())
85                         return false;
86 //              if(value_node->rcount()!=1)
87 //                      return false;
88                 return true;
89         }
90         return false;
91 }
92
93 bool
94 Action::ValueNodeRemove::set_param(const synfig::String& name, const Action::Param &param)
95 {
96         if(name=="value_node" && param.get_type()==Param::TYPE_VALUENODE)
97         {
98                 value_node=param.get_value_node();
99
100                 if(value_node && !value_node->is_exported())
101                 {
102                         synfig::error("Action::ValueNodeRemove::set_param(): ValueBase node not exported!");
103                         value_node=0;
104                 }
105
106                 return (bool)value_node;
107         }
108
109         return Action::CanvasSpecific::set_param(name,param);
110 }
111
112 bool
113 Action::ValueNodeRemove::is_ready()const
114 {
115         if(!value_node)
116                 synfig::error("Action::ValueNodeRemove::is_ready(): ValueNode not set!");
117
118         if(!value_node)
119                 return false;
120         return Action::CanvasSpecific::is_ready();
121 }
122
123 void
124 Action::ValueNodeRemove::perform()
125 {
126 //      if(value_node->rcount()!=1)
127 //              throw Error(_("ValueNode is still being used by something"));
128
129         old_name=value_node->get_id();
130         parent_canvas=value_node->get_parent_canvas();
131         parent_canvas->remove_value_node(value_node);
132
133         if(get_canvas_interface())
134         {
135                 get_canvas_interface()->signal_value_node_deleted()(value_node);
136         }
137
138         //throw Error(_("Not yet implemented"));
139 /*
140         assert(value_node->is_exported());
141
142         if(get_canvas()->value_node_list().count(new_name))
143                 throw Error(_("A ValueNode with this ID already exists in this canvas"));
144
145         old_name=value_node->get_id();
146
147         value_node->set_id(new_name);
148
149         if(get_canvas_interface())
150         {
151                 get_canvas_interface()->signal_value_node_changed()(value_node);
152         }
153 */
154 }
155
156 void
157 Action::ValueNodeRemove::undo()
158 {
159         parent_canvas->add_value_node(value_node,old_name);
160         if(get_canvas_interface())
161         {
162                 get_canvas_interface()->signal_value_node_added()(value_node);
163         }
164
165         //throw Error(_("Not yet implemented"));
166 /*
167         assert(value_node->is_exported());
168
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)"));
171
172         value_node->set_id(old_name);
173
174         if(get_canvas_interface())
175         {
176                 get_canvas_interface()->signal_value_node_changed()(value_node);
177         }
178 */
179 }