Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_06 / src / synfigapp / actions / groupremove.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file groupremove.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 "groupremove.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::GroupRemove);
46 ACTION_SET_NAME(Action::GroupRemove,"group_remove");
47 ACTION_SET_LOCAL_NAME(Action::GroupRemove,"Remove Group");
48 ACTION_SET_TASK(Action::GroupRemove,"remove");
49 ACTION_SET_CATEGORY(Action::GroupRemove,Action::CATEGORY_GROUP);
50 ACTION_SET_PRIORITY(Action::GroupRemove,0);
51 ACTION_SET_VERSION(Action::GroupRemove,"0.0");
52 ACTION_SET_CVS_ID(Action::GroupRemove,"$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::GroupRemove::GroupRemove()
61 {
62 }
63
64 Action::ParamVocab
65 Action::GroupRemove::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(_("Group"))
71                 .set_desc(_("Name of the Group to remove"))
72         );
73
74         return ret;
75 }
76
77 bool
78 Action::GroupRemove::is_candidate(const ParamList &x)
79 {
80         bool ret(candidate_check(get_param_vocab(),x));
81         if(!ret)
82         {
83                 synfig::info("Action::GroupRemove::is_candidate(): failed candidate check");
84                 ParamList::const_iterator iter;
85                 for(iter=x.begin();iter!=x.end();++iter)
86                 {
87                         synfig::info("PARAM: %s",iter->first.c_str());
88                 }
89         }
90         return ret;
91 }
92
93 bool
94 Action::GroupRemove::set_param(const synfig::String& name, const Action::Param &param)
95 {
96         if(name=="group" && param.get_type()==Param::TYPE_STRING)
97         {
98                 group=param.get_string();
99
100                 return true;
101         }
102
103         return Action::CanvasSpecific::set_param(name,param);
104 }
105
106 bool
107 Action::GroupRemove::is_ready()const
108 {
109         if(group.empty())
110                 return false;
111         return Action::CanvasSpecific::is_ready();
112 }
113
114 void
115 Action::GroupRemove::perform()
116 {
117         layer_list=get_canvas()->get_layers_in_group(group);
118
119         std::set<synfig::Layer::Handle>::iterator iter;
120         for(iter=layer_list.begin();iter!=layer_list.end();++iter)
121         {
122                 (*iter)->remove_from_group(group);
123         }
124 }
125
126 void
127 Action::GroupRemove::undo()
128 {
129         std::set<synfig::Layer::Handle>::iterator iter;
130         for(iter=layer_list.begin();iter!=layer_list.end();++iter)
131         {
132                 (*iter)->add_to_group(group);
133         }
134 }