Initial attempt at i18n support using gettext
[synfig.git] / synfig-studio / trunk / src / synfigapp / actions / valuenoderename.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuenoderename.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 "valuenoderename.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::ValueNodeRename);
48 ACTION_SET_NAME(Action::ValueNodeRename,"value_node_rename");
49 ACTION_SET_LOCAL_NAME(Action::ValueNodeRename,N_("Rename ValueNode"));
50 ACTION_SET_TASK(Action::ValueNodeRename,"rename");
51 ACTION_SET_CATEGORY(Action::ValueNodeRename,Action::CATEGORY_VALUENODE);
52 ACTION_SET_PRIORITY(Action::ValueNodeRename,0);
53 ACTION_SET_VERSION(Action::ValueNodeRename,"0.0");
54 ACTION_SET_CVS_ID(Action::ValueNodeRename,"$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::ValueNodeRename::ValueNodeRename()
63 {
64 }
65
66 Action::ParamVocab
67 Action::ValueNodeRename::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_Const"))
73         );
74
75         ret.push_back(ParamDesc("name",Param::TYPE_STRING)
76                 .set_local_name(_("Name"))
77                 .set_desc(_("The new name of the ValueNode"))
78                 .set_user_supplied()
79         );
80
81         return ret;
82 }
83
84 bool
85 Action::ValueNodeRename::is_candidate(const ParamList &x)
86 {
87         if(candidate_check(get_param_vocab(),x))
88         {
89                 if(x.find("value_node")->second.get_value_node()->is_exported())
90                         return true;
91         }
92         return false;
93 }
94
95 bool
96 Action::ValueNodeRename::set_param(const synfig::String& name, const Action::Param &param)
97 {
98         if(name=="value_node" && param.get_type()==Param::TYPE_VALUENODE)
99         {
100                 value_node=param.get_value_node();
101
102                 if(value_node && !value_node->is_exported())
103                 {
104                         synfig::error("Action::ValueNodeRename::set_param(): ValueBase node not exported!");
105                         value_node=0;
106                 }
107
108                 return (bool)value_node;
109         }
110
111         if(name=="name" && param.get_type()==Param::TYPE_STRING)
112         {
113                 new_name=param.get_string();
114
115                 return true;
116         }
117
118         return Action::CanvasSpecific::set_param(name,param);
119 }
120
121 bool
122 Action::ValueNodeRename::is_ready()const
123 {
124         if(!value_node)
125                 synfig::error("Action::ValueNodeRename::is_ready(): ValueNode not set!");
126
127         if(new_name.empty())
128                 synfig::error("Action::ValueNodeRename::is_ready(): ValueNode not set!");
129
130         if(!value_node || new_name.empty())
131                 return false;
132         return Action::CanvasSpecific::is_ready();
133 }
134
135 void
136 Action::ValueNodeRename::perform()
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_renamed()(value_node);
150         }
151 }
152
153 void
154 Action::ValueNodeRename::undo()
155 {
156         assert(value_node->is_exported());
157
158         if(get_canvas()->value_node_list().count(old_name))
159                 throw Error(_("A ValueNode with the old ID already exists in this canvas (BUG)"));
160
161         value_node->set_id(old_name);
162
163         if(get_canvas_interface())
164         {
165                 get_canvas_interface()->signal_value_node_renamed()(value_node);
166         }
167 }