1 /* === S Y N F I G ========================================================= */
2 /*! \file canvasrenddescset.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 "canvasrenddescset.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(Action::CanvasRendDescSet);
48 ACTION_SET_NAME(Action::CanvasRendDescSet,"CanvasRendDescSet");
49 ACTION_SET_LOCAL_NAME(Action::CanvasRendDescSet,N_("Set Canvas RendDesc"));
50 ACTION_SET_TASK(Action::CanvasRendDescSet,"set");
51 ACTION_SET_CATEGORY(Action::CanvasRendDescSet,Action::CATEGORY_CANVAS);
52 ACTION_SET_PRIORITY(Action::CanvasRendDescSet,0);
53 ACTION_SET_VERSION(Action::CanvasRendDescSet,"0.0");
54 ACTION_SET_CVS_ID(Action::CanvasRendDescSet,"$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::CanvasRendDescSet::CanvasRendDescSet()
68 Action::CanvasRendDescSet::get_param_vocab()
70 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
72 ret.push_back(ParamDesc("rend_desc",Param::TYPE_RENDDESC)
73 .set_local_name(_("RendDesc"))
80 Action::CanvasRendDescSet::is_candidate(const ParamList &x)
82 return candidate_check(get_param_vocab(),x);
86 Action::CanvasRendDescSet::set_param(const synfig::String& name, const Action::Param ¶m)
88 if(name=="rend_desc" && param.get_type()==Param::TYPE_RENDDESC)
90 new_rend_desc=param.get_rend_desc();
95 return Action::CanvasSpecific::set_param(name,param);
99 Action::CanvasRendDescSet::is_ready()const
101 return Action::CanvasSpecific::is_ready();
105 Action::CanvasRendDescSet::perform()
107 old_rend_desc=get_canvas()->rend_desc();
109 get_canvas()->rend_desc()=new_rend_desc;
111 if(get_canvas_interface())
113 get_canvas_interface()->signal_rend_desc_changed()();
115 else synfig::warning("CanvasInterface not set on action");
119 Action::CanvasRendDescSet::undo()
121 get_canvas()->rend_desc()=old_rend_desc;
123 if(get_canvas_interface())
125 get_canvas_interface()->signal_rend_desc_changed()();
127 else synfig::warning("CanvasInterface not set on action");