1 /* === S Y N F I G ========================================================= */
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 ======================================================= */
33 #include <synfigapp/canvasinterface.h>
39 using namespace synfig;
40 using namespace synfigapp;
41 using namespace Action;
43 /* === M A C R O S ========================================================= */
45 ACTION_INIT(Action::LayerAdd);
46 ACTION_SET_NAME(Action::LayerAdd,"layer_add");
47 ACTION_SET_LOCAL_NAME(Action::LayerAdd,"Add Layer");
48 ACTION_SET_TASK(Action::LayerAdd,"add");
49 ACTION_SET_CATEGORY(Action::LayerAdd,Action::CATEGORY_LAYER);
50 ACTION_SET_PRIORITY(Action::LayerAdd,0);
51 ACTION_SET_VERSION(Action::LayerAdd,"0.0");
52 ACTION_SET_CVS_ID(Action::LayerAdd,"$Id$");
54 /* === G L O B A L S ======================================================= */
56 /* === P R O C E D U R E S ================================================= */
58 /* === M E T H O D S ======================================================= */
60 Action::LayerAdd::LayerAdd()
65 Action::LayerAdd::get_param_vocab()
67 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
69 ret.push_back(ParamDesc("new",Param::TYPE_LAYER)
70 .set_local_name(_("New Layer"))
71 .set_desc(_("Layer to be added"))
78 Action::LayerAdd::is_candidate(const ParamList &x)
80 return candidate_check(get_param_vocab(),x);
84 Action::LayerAdd::set_param(const synfig::String& name, const Action::Param ¶m)
86 if(name=="new" && param.get_type()==Param::TYPE_LAYER)
88 layer=param.get_layer();
93 return Action::CanvasSpecific::set_param(name,param);
97 Action::LayerAdd::is_ready()const
101 return Action::CanvasSpecific::is_ready();
105 Action::LayerAdd::perform()
107 // Set the layer's canvas
108 layer->set_canvas(get_canvas());
110 // Push the layer onto the front of the canvas
111 get_canvas()->push_front(layer);
113 // Mark ourselves as dirty if necessary
114 //set_dirty(layer->active());
116 // Signal that a layer has been inserted
117 if(get_canvas_interface())
119 get_canvas_interface()->signal_layer_inserted()(layer,0);
121 else synfig::warning("CanvasInterface not set on action");
125 Action::LayerAdd::undo()
127 // Find the iterator for the layer
128 Canvas::iterator iter=find(get_canvas()->begin(),get_canvas()->end(),layer);
130 // If we couldn't find the layer in the canvas, then bail
132 throw Error(_("This layer doesn't exist anymore."));
134 // Remove the layer from the canvas
135 get_canvas()->erase(iter);
137 // Mark ourselves as dirty if necessary
138 //set_dirty(layer->active());
140 // Signal that a layer has been inserted
141 if(get_canvas_interface())
143 get_canvas_interface()->signal_layer_removed()(layer);
145 else synfig::warning("CanvasInterface not set on action");