1 /* === S Y N F I G ========================================================= */
2 /*! \file layeractivate.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 "layeractivate.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_NO_GET_LOCAL_NAME(Action::LayerActivate);
48 ACTION_SET_NAME(Action::LayerActivate,"layer_activate");
49 ACTION_SET_LOCAL_NAME(Action::LayerActivate,N_("Activate Layer"));
50 ACTION_SET_TASK(Action::LayerActivate,"activate");
51 ACTION_SET_CATEGORY(Action::LayerActivate,Action::CATEGORY_LAYER);
52 ACTION_SET_PRIORITY(Action::LayerActivate,0);
53 ACTION_SET_VERSION(Action::LayerActivate,"0.0");
54 ACTION_SET_CVS_ID(Action::LayerActivate,"$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::LayerActivate::LayerActivate()
67 Action::LayerActivate::get_local_name()const
70 return _("Activate Layer");
72 return strprintf("%s '%s'",
75 : _("Deactivate Layer"),
76 layer->get_non_empty_description().c_str());
80 Action::LayerActivate::get_param_vocab()
82 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
84 ret.push_back(ParamDesc("layer",Param::TYPE_LAYER)
85 .set_local_name(_("Layer"))
88 ret.push_back(ParamDesc("new_status",Param::TYPE_BOOL)
89 .set_local_name(_("New Status"))
90 .set_desc(_("The new status of the layer"))
97 Action::LayerActivate::is_candidate(const ParamList &x)
99 return candidate_check(get_param_vocab(),x);
103 Action::LayerActivate::set_param(const synfig::String& name, const Action::Param ¶m)
105 if(name=="layer" && param.get_type()==Param::TYPE_LAYER)
107 layer=param.get_layer();
112 if(name=="new_status" && param.get_type()==Param::TYPE_BOOL)
114 new_status=param.get_bool();
119 return Action::CanvasSpecific::set_param(name,param);
123 Action::LayerActivate::is_ready()const
127 return Action::CanvasSpecific::is_ready();
131 Action::LayerActivate::perform()
133 Canvas::Handle subcanvas(layer->get_canvas());
135 // Find the iterator for the layer
136 Canvas::iterator iter=find(subcanvas->begin(),subcanvas->end(),layer);
138 // If we couldn't find the layer in the canvas, then bail
140 throw Error(_("This layer doesn't exist anymore."));
142 // If the subcanvas isn't the same as the canvas,
143 // then it had better be an inline canvas. If not,
145 //if(get_canvas()!=subcanvas && !subcanvas->is_inline())
146 //if(get_canvas()->get_root()!=subcanvas->get_root())
147 // throw Error(_("This layer doesn't belong to this composition"));
149 old_status=layer->active();
151 // If we are changing the status to what it already is,
152 // the go ahead and return
153 if(new_status==old_status)
166 if(get_canvas_interface())
168 get_canvas_interface()->signal_layer_status_changed()(layer,new_status);
170 else synfig::warning("CanvasInterface not set on action");
174 Action::LayerActivate::undo()
176 // If we are changing the status to what it already is,
177 // the go ahead and return
178 if(new_status==old_status)
186 // restore the old status
192 if(get_canvas_interface())
194 get_canvas_interface()->signal_layer_status_changed()(layer,old_status);
196 else synfig::warning("CanvasInterface not set on action");