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>
39 using namespace synfig;
40 using namespace synfigapp;
41 using namespace Action;
43 /* === M A C R O S ========================================================= */
44 #define ACTION_INIT2(class) \
45 Action::Base* class::create() { return new class(); } \
46 synfig::String class::get_name()const { return name__; }
48 ACTION_INIT2(Action::LayerActivate);
49 ACTION_SET_NAME(Action::LayerActivate,"layer_activate");
50 ACTION_SET_LOCAL_NAME(Action::LayerActivate,_("Activate Layer"));
51 ACTION_SET_TASK(Action::LayerActivate,"activate");
52 ACTION_SET_CATEGORY(Action::LayerActivate,Action::CATEGORY_LAYER);
53 ACTION_SET_PRIORITY(Action::LayerActivate,0);
54 ACTION_SET_VERSION(Action::LayerActivate,"0.0");
55 ACTION_SET_CVS_ID(Action::LayerActivate,"$Id$");
57 /* === G L O B A L S ======================================================= */
59 /* === P R O C E D U R E S ================================================= */
61 /* === M E T H O D S ======================================================= */
63 Action::LayerActivate::LayerActivate()
68 Action::LayerActivate::get_local_name()const
71 return _("Activate Layer");
73 if(layer->get_description().empty())
74 name=layer->get_local_name();
76 name=layer->get_description();
78 return (new_status?_("Activate "):_("Deactivate "))+name;
82 Action::LayerActivate::get_param_vocab()
84 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
86 ret.push_back(ParamDesc("layer",Param::TYPE_LAYER)
87 .set_local_name(_("Layer"))
90 ret.push_back(ParamDesc("new_status",Param::TYPE_BOOL)
91 .set_local_name(_("New Status"))
92 .set_desc(_("The new status of the layer"))
99 Action::LayerActivate::is_candidate(const ParamList &x)
101 return candidate_check(get_param_vocab(),x);
105 Action::LayerActivate::set_param(const synfig::String& name, const Action::Param ¶m)
107 if(name=="layer" && param.get_type()==Param::TYPE_LAYER)
109 layer=param.get_layer();
114 if(name=="new_status" && param.get_type()==Param::TYPE_BOOL)
116 new_status=param.get_bool();
121 return Action::CanvasSpecific::set_param(name,param);
125 Action::LayerActivate::is_ready()const
129 return Action::CanvasSpecific::is_ready();
133 Action::LayerActivate::perform()
135 Canvas::Handle subcanvas(layer->get_canvas());
137 // Find the iterator for the layer
138 Canvas::iterator iter=find(subcanvas->begin(),subcanvas->end(),layer);
140 // If we couldn't find the layer in the canvas, then bail
142 throw Error(_("This layer doesn't exist anymore."));
144 // If the subcanvas isn't the same as the canvas,
145 // then it had better be an inline canvas. If not,
147 //if(get_canvas()!=subcanvas && !subcanvas->is_inline())
148 //if(get_canvas()->get_root()!=subcanvas->get_root())
149 // throw Error(_("This layer doesn't belong to this composition"));
151 old_status=layer->active();
153 // If we are changing the status to what it already is,
154 // the go ahead and return
155 if(new_status==old_status)
168 if(get_canvas_interface())
170 get_canvas_interface()->signal_layer_status_changed()(layer,new_status);
172 else synfig::warning("CanvasInterface not set on action");
176 Action::LayerActivate::undo()
178 // If we are changing the status to what it already is,
179 // the go ahead and return
180 if(new_status==old_status)
188 // restore the old status
194 if(get_canvas_interface())
196 get_canvas_interface()->signal_layer_status_changed()(layer,old_status);
198 else synfig::warning("CanvasInterface not set on action");