Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_07_rc1 / src / synfigapp / actions / canvasrenddescset.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file canvasrenddescset.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
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.
14 **
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.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #ifdef USING_PCH
26 #       include "pch.h"
27 #else
28 #ifdef HAVE_CONFIG_H
29 #       include <config.h>
30 #endif
31
32 #include "canvasrenddescset.h"
33 #include <synfigapp/canvasinterface.h>
34
35 #endif
36
37 using namespace std;
38 using namespace etl;
39 using namespace synfig;
40 using namespace synfigapp;
41 using namespace Action;
42
43 /* === M A C R O S ========================================================= */
44
45 ACTION_INIT(Action::CanvasRendDescSet);
46 ACTION_SET_NAME(Action::CanvasRendDescSet,"canvas_rend_desc_set");
47 ACTION_SET_LOCAL_NAME(Action::CanvasRendDescSet,"Set Canvas RendDesc");
48 ACTION_SET_TASK(Action::CanvasRendDescSet,"set");
49 ACTION_SET_CATEGORY(Action::CanvasRendDescSet,Action::CATEGORY_CANVAS);
50 ACTION_SET_PRIORITY(Action::CanvasRendDescSet,0);
51 ACTION_SET_VERSION(Action::CanvasRendDescSet,"0.0");
52 ACTION_SET_CVS_ID(Action::CanvasRendDescSet,"$Id$");
53
54 /* === G L O B A L S ======================================================= */
55
56 /* === P R O C E D U R E S ================================================= */
57
58 /* === M E T H O D S ======================================================= */
59
60 Action::CanvasRendDescSet::CanvasRendDescSet()
61 {
62         set_dirty(true);
63 }
64
65 Action::ParamVocab
66 Action::CanvasRendDescSet::get_param_vocab()
67 {
68         ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
69
70         ret.push_back(ParamDesc("rend_desc",Param::TYPE_RENDDESC)
71                 .set_local_name(_("RendDesc"))
72         );
73
74         return ret;
75 }
76
77 bool
78 Action::CanvasRendDescSet::is_candidate(const ParamList &x)
79 {
80         return candidate_check(get_param_vocab(),x);
81 }
82
83 bool
84 Action::CanvasRendDescSet::set_param(const synfig::String& name, const Action::Param &param)
85 {
86         if(name=="rend_desc" && param.get_type()==Param::TYPE_RENDDESC)
87         {
88                 new_rend_desc=param.get_rend_desc();
89
90                 return true;
91         }
92
93         return Action::CanvasSpecific::set_param(name,param);
94 }
95
96 bool
97 Action::CanvasRendDescSet::is_ready()const
98 {
99         return Action::CanvasSpecific::is_ready();
100 }
101
102 void
103 Action::CanvasRendDescSet::perform()
104 {
105         old_rend_desc=get_canvas()->rend_desc();
106
107         get_canvas()->rend_desc()=new_rend_desc;
108
109         if(get_canvas_interface())
110         {
111                 get_canvas_interface()->signal_rend_desc_changed()();
112         }
113         else synfig::warning("CanvasInterface not set on action");
114 }
115
116 void
117 Action::CanvasRendDescSet::undo()
118 {
119         get_canvas()->rend_desc()=old_rend_desc;
120
121         if(get_canvas_interface())
122         {
123                 get_canvas_interface()->signal_rend_desc_changed()();
124         }
125         else synfig::warning("CanvasInterface not set on action");
126 }