Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_07 / src / synfigapp / actions / grouprename.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file grouprename.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 "grouprename.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::GroupRename);
46 ACTION_SET_NAME(Action::GroupRename,"group_rename");
47 ACTION_SET_LOCAL_NAME(Action::GroupRename,"Rename Group");
48 ACTION_SET_TASK(Action::GroupRename,"rename");
49 ACTION_SET_CATEGORY(Action::GroupRename,Action::CATEGORY_GROUP);
50 ACTION_SET_PRIORITY(Action::GroupRename,0);
51 ACTION_SET_VERSION(Action::GroupRename,"0.0");
52 ACTION_SET_CVS_ID(Action::GroupRename,"$Id$");
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::GroupRename::GroupRename()
61 {
62 }
63
64 Action::ParamVocab
65 Action::GroupRename::get_param_vocab()
66 {
67         ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
68
69         ret.push_back(ParamDesc("group",Param::TYPE_STRING)
70                 .set_local_name(_("Old Group"))
71                 .set_desc(_("Name of the Group to rename"))
72         );
73
74         ret.push_back(ParamDesc("new_group",Param::TYPE_STRING)
75                 .set_local_name(_("New Group"))
76                 .set_desc(_("New name for group"))
77         );
78
79         return ret;
80 }
81
82 bool
83 Action::GroupRename::is_candidate(const ParamList &x)
84 {
85         return candidate_check(get_param_vocab(),x);
86 }
87
88 bool
89 Action::GroupRename::set_param(const synfig::String& name, const Action::Param &param)
90 {
91         if(name=="group" && param.get_type()==Param::TYPE_STRING)
92         {
93                 old_group_name=param.get_string();
94
95                 return true;
96         }
97
98         if(name=="new_group" && param.get_type()==Param::TYPE_STRING)
99         {
100                 new_group_name=param.get_string();
101
102                 return true;
103         }
104
105         return Action::CanvasSpecific::set_param(name,param);
106 }
107
108 bool
109 Action::GroupRename::is_ready()const
110 {
111         if(old_group_name.empty()||new_group_name.empty())
112                 return false;
113         return Action::CanvasSpecific::is_ready();
114 }
115
116 void
117 Action::GroupRename::perform()
118 {
119         if(get_canvas()->get_groups().count(new_group_name)!=0)
120         {
121                 throw Error(_("A group with the name \"%s\" already exists!"),new_group_name.c_str());
122         }
123         get_canvas()->rename_group(old_group_name,new_group_name);
124 }
125
126 void
127 Action::GroupRename::undo()
128 {
129         get_canvas()->rename_group(new_group_name,old_group_name);
130 }