Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / 0.61.08 / src / synfigapp / actions / valuenodedynamiclistloop.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuenodedynamiclistloop.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 "valuenodedynamiclistloop.h"
33 #include <synfigapp/canvasinterface.h>
34
35 #include <synfigapp/general.h>
36
37 #endif
38
39 using namespace std;
40 using namespace etl;
41 using namespace synfig;
42 using namespace synfigapp;
43 using namespace Action;
44
45 /* === M A C R O S ========================================================= */
46
47 ACTION_INIT(Action::ValueNodeDynamicListLoop);
48 ACTION_SET_NAME(Action::ValueNodeDynamicListLoop,"value_node_dynamic_list_loop");
49 ACTION_SET_LOCAL_NAME(Action::ValueNodeDynamicListLoop,N_("Loop"));
50 ACTION_SET_TASK(Action::ValueNodeDynamicListLoop,"loop");
51 ACTION_SET_CATEGORY(Action::ValueNodeDynamicListLoop,Action::CATEGORY_VALUEDESC|Action::CATEGORY_VALUENODE);
52 ACTION_SET_PRIORITY(Action::ValueNodeDynamicListLoop,0);
53 ACTION_SET_VERSION(Action::ValueNodeDynamicListLoop,"0.0");
54 ACTION_SET_CVS_ID(Action::ValueNodeDynamicListLoop,"$Id$");
55
56 /* === G L O B A L S ======================================================= */
57
58 /* === P R O C E D U R E S ================================================= */
59
60 /* === M E T H O D S ======================================================= */
61
62 Action::ValueNodeDynamicListLoop::ValueNodeDynamicListLoop()
63 {
64 }
65
66 Action::ParamVocab
67 Action::ValueNodeDynamicListLoop::get_param_vocab()
68 {
69         ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
70
71         ret.push_back(ParamDesc("value_node",Param::TYPE_VALUENODE)
72                 .set_local_name(_("ValueNode"))
73         );
74
75         return ret;
76 }
77
78 bool
79 Action::ValueNodeDynamicListLoop::is_candidate(const ParamList &x)
80 {
81         if(candidate_check(get_param_vocab(),x))
82         {
83                 ValueNode::Handle value_node;
84                 ValueDesc value_desc(x.find("value_desc")->second.get_value_desc());
85                 if(value_desc.parent_is_value_node())
86                         value_node = value_desc.get_parent_value_node();
87                 else
88                         value_node = x.find("value_node")->second.get_value_node();
89                 if(!ValueNode_DynamicList::Handle::cast_dynamic(value_node))
90                         return false;
91                 if(ValueNode_DynamicList::Handle::cast_dynamic(value_node)->get_loop()==true)
92                         return false;
93                 return true;
94         }
95         return false;
96 }
97
98 bool
99 Action::ValueNodeDynamicListLoop::set_param(const synfig::String& name, const Action::Param &param)
100 {
101         if(!value_node && name=="value_desc" && param.get_type()==Param::TYPE_VALUEDESC)
102         {
103                 ValueDesc value_desc(param.get_value_desc());
104
105                 if(!value_desc.parent_is_value_node())
106                         return false;
107
108                 value_node=ValueNode_DynamicList::Handle::cast_dynamic(value_desc.get_parent_value_node());
109
110                 if (!value_node)
111                         return false;
112
113                 return true;
114         }
115
116         if(!value_node && name=="value_node" && param.get_type()==Param::TYPE_VALUENODE)
117         {
118                 value_node=ValueNode_DynamicList::Handle::cast_dynamic(param.get_value_node());
119
120                 if(!value_node)
121                         return false;
122
123                 return true;
124         }
125
126         return Action::CanvasSpecific::set_param(name,param);
127 }
128
129 bool
130 Action::ValueNodeDynamicListLoop::is_ready()const
131 {
132         if(!value_node)
133                 return false;
134         return Action::CanvasSpecific::is_ready();
135 }
136
137 void
138 Action::ValueNodeDynamicListLoop::perform()
139 {
140         old_loop_value=value_node->get_loop();
141
142         if(old_loop_value==true)
143         {
144                 set_dirty(false);
145                 return;
146         }
147         set_dirty(true);
148         value_node->set_loop(true);
149
150         value_node->changed();
151 /*_if(get_canvas_interface())
152         {
153                 get_canvas_interface()->signal_value_node_changed()(value_node);
154         }
155         else synfig::warning("CanvasInterface not set on action");*/
156 }
157
158 void
159 Action::ValueNodeDynamicListLoop::undo()
160 {
161         if(old_loop_value==value_node->get_loop())
162         {
163                 set_dirty(false);
164                 return;
165         }
166         set_dirty(true);
167         value_node->set_loop(old_loop_value);
168
169         value_node->changed();
170 /*_if(get_canvas_interface())
171         {
172                 get_canvas_interface()->signal_value_node_changed()(value_node);
173         }
174         else synfig::warning("CanvasInterface not set on action");*/
175 }