Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / 0.61.09 / src / synfigapp / actions / groupremovelayers.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file groupremovelayers.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007 Chris Moore
10 **
11 **      This package is free software; you can redistribute it and/or
12 **      modify it under the terms of the GNU General Public License as
13 **      published by the Free Software Foundation; either version 2 of
14 **      the License, or (at your option) any later version.
15 **
16 **      This package is distributed in the hope that it will be useful,
17 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 **      General Public License for more details.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === H E A D E R S ======================================================= */
25
26 #ifdef USING_PCH
27 #       include "pch.h"
28 #else
29 #ifdef HAVE_CONFIG_H
30 #       include <config.h>
31 #endif
32
33 #include "groupremovelayers.h"
34 #include <synfigapp/canvasinterface.h>
35
36 #include <synfigapp/general.h>
37
38 #endif
39
40 using namespace std;
41 using namespace etl;
42 using namespace synfig;
43 using namespace synfigapp;
44 using namespace Action;
45
46 /* === M A C R O S ========================================================= */
47
48 ACTION_INIT(Action::GroupRemoveLayers);
49 ACTION_SET_NAME(Action::GroupRemoveLayers,"group_remove_layers");
50 ACTION_SET_LOCAL_NAME(Action::GroupRemoveLayers,N_("Remove Layers from a Group"));
51 ACTION_SET_TASK(Action::GroupRemoveLayers,"remove");
52 ACTION_SET_CATEGORY(Action::GroupRemoveLayers,Action::CATEGORY_LAYER|Action::CATEGORY_GROUP);
53 ACTION_SET_PRIORITY(Action::GroupRemoveLayers,0);
54 ACTION_SET_VERSION(Action::GroupRemoveLayers,"0.0");
55 ACTION_SET_CVS_ID(Action::GroupRemoveLayers,"$Id$");
56
57 /* === G L O B A L S ======================================================= */
58
59 /* === P R O C E D U R E S ================================================= */
60
61 /* === M E T H O D S ======================================================= */
62
63 Action::GroupRemoveLayers::GroupRemoveLayers()
64 {
65 }
66
67 Action::ParamVocab
68 Action::GroupRemoveLayers::get_param_vocab()
69 {
70         ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
71
72         ret.push_back(ParamDesc("layer",Param::TYPE_LAYER)
73                 .set_local_name(_("Layer"))
74                 .set_desc(_("Layer to be removed from group"))
75                 .set_supports_multiple()
76         );
77
78         return ret;
79 }
80
81 bool
82 Action::GroupRemoveLayers::is_candidate(const ParamList &x)
83 {
84         return candidate_check(get_param_vocab(),x);
85 }
86
87 bool
88 Action::GroupRemoveLayers::set_param(const synfig::String& name, const Action::Param &param)
89 {
90         if(name=="layer" && param.get_type()==Param::TYPE_LAYER)
91         {
92                 std::pair<synfig::Layer::Handle,String> layer_pair;
93                 layer_pair.first=param.get_layer();
94                 layer_list.push_back(layer_pair);
95
96                 return true;
97         }
98
99         return Action::CanvasSpecific::set_param(name,param);
100 }
101
102 bool
103 Action::GroupRemoveLayers::is_ready()const
104 {
105         if(layer_list.empty())
106                 return false;
107         return Action::CanvasSpecific::is_ready();
108 }
109
110 void
111 Action::GroupRemoveLayers::perform()
112 {
113         std::list<std::pair<synfig::Layer::Handle,String> >::iterator iter;
114         for(iter=layer_list.begin();iter!=layer_list.end();++iter)
115         {
116                 Layer::Handle layer(iter->first);
117                 layer->remove_from_group(iter->second=layer->get_group());
118         }
119 }
120
121 void
122 Action::GroupRemoveLayers::undo()
123 {
124         std::list<std::pair<synfig::Layer::Handle,String> >::iterator iter;
125         for(iter=layer_list.begin();iter!=layer_list.end();++iter)
126         {
127                 Layer::Handle layer(iter->first);
128
129                 layer->add_to_group(iter->second);
130         }
131 }