1 /* === S Y N F I G ========================================================= */
2 /*! \file grouprename.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 "grouprename.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::GroupRename);
48 ACTION_SET_NAME(Action::GroupRename,"GroupRename");
49 ACTION_SET_LOCAL_NAME(Action::GroupRename,N_("Rename Group"));
50 ACTION_SET_TASK(Action::GroupRename,"rename");
51 ACTION_SET_CATEGORY(Action::GroupRename,Action::CATEGORY_GROUP);
52 ACTION_SET_PRIORITY(Action::GroupRename,0);
53 ACTION_SET_VERSION(Action::GroupRename,"0.0");
54 ACTION_SET_CVS_ID(Action::GroupRename,"$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::GroupRename::GroupRename()
67 Action::GroupRename::get_param_vocab()
69 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
71 ret.push_back(ParamDesc("group",Param::TYPE_STRING)
72 .set_local_name(_("Old Group"))
73 .set_desc(_("Name of the Group to rename"))
76 ret.push_back(ParamDesc("new_group",Param::TYPE_STRING)
77 .set_local_name(_("New Group"))
78 .set_desc(_("New name for group"))
85 Action::GroupRename::is_candidate(const ParamList &x)
87 return candidate_check(get_param_vocab(),x);
91 Action::GroupRename::set_param(const synfig::String& name, const Action::Param ¶m)
93 if(name=="group" && param.get_type()==Param::TYPE_STRING)
95 old_group_name=param.get_string();
100 if(name=="new_group" && param.get_type()==Param::TYPE_STRING)
102 new_group_name=param.get_string();
107 return Action::CanvasSpecific::set_param(name,param);
111 Action::GroupRename::is_ready()const
113 if(old_group_name.empty()||new_group_name.empty())
115 return Action::CanvasSpecific::is_ready();
119 Action::GroupRename::perform()
121 if(get_canvas()->get_groups().count(new_group_name)!=0)
123 throw Error(_("A group with the name \"%s\" already exists!"),new_group_name.c_str());
125 get_canvas()->rename_group(old_group_name,new_group_name);
129 Action::GroupRename::undo()
131 get_canvas()->rename_group(new_group_name,old_group_name);