Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_05 / synfig-studio / src / synfigapp / actions / layersetdesc.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file layersetdesc.cpp
3 **      \brief Template File
4 **
5 **      $Id: layersetdesc.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $
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 "layersetdesc.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::LayerSetDesc);
46 ACTION_SET_NAME(Action::LayerSetDesc,"layer_set_desc");
47 ACTION_SET_LOCAL_NAME(Action::LayerSetDesc,_("Set Layer Description"));
48 ACTION_SET_TASK(Action::LayerSetDesc,"set_desc");
49 ACTION_SET_CATEGORY(Action::LayerSetDesc,Action::CATEGORY_LAYER);
50 ACTION_SET_PRIORITY(Action::LayerSetDesc,0);
51 ACTION_SET_VERSION(Action::LayerSetDesc,"0.0");
52 ACTION_SET_CVS_ID(Action::LayerSetDesc,"$Id: layersetdesc.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $");
53
54 /* === G L O B A L S ======================================================= */
55
56 static const int nindex=-1;
57
58 /* === P R O C E D U R E S ================================================= */
59
60 /* === M E T H O D S ======================================================= */
61
62 Action::LayerSetDesc::LayerSetDesc()
63 {
64 }
65
66 Action::ParamVocab
67 Action::LayerSetDesc::get_param_vocab()
68 {
69         ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
70         
71         ret.push_back(ParamDesc("layer",Param::TYPE_LAYER)
72                 .set_local_name(_("Layer"))
73                 .set_desc(_("Layer to be moved"))
74         );
75
76         ret.push_back(ParamDesc("new_description",Param::TYPE_STRING)
77                 .set_local_name(_("New Description"))
78                 .set_local_name(_("Enter a new description for this layer"))
79                 .set_user_supplied()
80         );
81         
82         return ret;
83 }
84
85 bool
86 Action::LayerSetDesc::is_canidate(const ParamList &x)
87 {
88         return canidate_check(get_param_vocab(),x);
89 }
90
91 bool
92 Action::LayerSetDesc::set_param(const synfig::String& name, const Action::Param &param)
93 {
94         if(name=="layer" && param.get_type()==Param::TYPE_LAYER)
95         {
96                 layer=param.get_layer();
97                 
98                 return true;
99         }
100
101         if(name=="new_description" && param.get_type()==Param::TYPE_STRING)
102         {
103                 new_description=param.get_string();
104                 
105                 return true;
106         }
107
108         return Action::CanvasSpecific::set_param(name,param);
109 }
110
111 bool
112 Action::LayerSetDesc::is_ready()const
113 {
114         if(!layer)
115                 return false;
116         return Action::CanvasSpecific::is_ready();
117 }
118
119 void
120 Action::LayerSetDesc::perform()
121 {
122         old_description=layer->get_description();
123         layer->set_description(new_description);
124         set_dirty(false);
125         if(get_canvas_interface())
126         {
127                 get_canvas_interface()->signal_layer_new_description()(layer,new_description);
128         }
129         else synfig::warning("CanvasInterface not set on action");
130 }
131
132 void
133 Action::LayerSetDesc::undo()
134 {
135         layer->set_description(old_description);
136         set_dirty(false);
137         if(get_canvas_interface())
138         {
139                 get_canvas_interface()->signal_layer_new_description()(layer,old_description);
140         }
141         else synfig::warning("CanvasInterface not set on action");
142 }