Added my "Copyright (c) 2007" notices, for files I edited in 2007.
[synfig.git] / synfig-studio / trunk / src / synfigapp / actions / valuenodedynamiclistloop.cpp
index d3d2414..8b618d1 100644 (file)
@@ -2,19 +2,20 @@
 /*!    \file valuenodedynamiclistloop.cpp
 **     \brief Template File
 **
-**     $Id: valuenodedynamiclistloop.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $
+**     $Id$
 **
 **     \legal
-**     Copyright (c) 2002 Robert B. Quattlebaum Jr.
+**     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
 **
-**     This software and associated documentation
-**     are CONFIDENTIAL and PROPRIETARY property of
-**     the above-mentioned copyright holder.
+**     This package is free software; you can redistribute it and/or
+**     modify it under the terms of the GNU General Public License as
+**     published by the Free Software Foundation; either version 2 of
+**     the License, or (at your option) any later version.
 **
-**     You may not copy, print, publish, or in any
-**     other way distribute this software without
-**     a prior written agreement with
-**     the copyright holder.
+**     This package is distributed in the hope that it will be useful,
+**     but WITHOUT ANY WARRANTY; without even the implied warranty of
+**     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+**     General Public License for more details.
 **     \endlegal
 */
 /* ========================================================================= */
@@ -31,6 +32,8 @@
 #include "valuenodedynamiclistloop.h"
 #include <synfigapp/canvasinterface.h>
 
+#include <synfigapp/general.h>
+
 #endif
 
 using namespace std;
@@ -43,12 +46,12 @@ using namespace Action;
 
 ACTION_INIT(Action::ValueNodeDynamicListLoop);
 ACTION_SET_NAME(Action::ValueNodeDynamicListLoop,"value_node_dynamic_list_loop");
-ACTION_SET_LOCAL_NAME(Action::ValueNodeDynamicListLoop,"Loop");
+ACTION_SET_LOCAL_NAME(Action::ValueNodeDynamicListLoop,N_("Loop"));
 ACTION_SET_TASK(Action::ValueNodeDynamicListLoop,"loop");
 ACTION_SET_CATEGORY(Action::ValueNodeDynamicListLoop,Action::CATEGORY_VALUEDESC|Action::CATEGORY_VALUENODE);
 ACTION_SET_PRIORITY(Action::ValueNodeDynamicListLoop,0);
 ACTION_SET_VERSION(Action::ValueNodeDynamicListLoop,"0.0");
-ACTION_SET_CVS_ID(Action::ValueNodeDynamicListLoop,"$Id: valuenodedynamiclistloop.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $");
+ACTION_SET_CVS_ID(Action::ValueNodeDynamicListLoop,"$Id$");
 
 /* === G L O B A L S ======================================================= */
 
@@ -64,7 +67,7 @@ Action::ParamVocab
 Action::ValueNodeDynamicListLoop::get_param_vocab()
 {
        ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
-       
+
        ret.push_back(ParamDesc("value_node",Param::TYPE_VALUENODE)
                .set_local_name(_("ValueNode"))
        );
@@ -73,11 +76,16 @@ Action::ValueNodeDynamicListLoop::get_param_vocab()
 }
 
 bool
-Action::ValueNodeDynamicListLoop::is_canidate(const ParamList &x)
+Action::ValueNodeDynamicListLoop::is_candidate(const ParamList &x)
 {
-       if(canidate_check(get_param_vocab(),x))
+       if(candidate_check(get_param_vocab(),x))
        {
-               ValueNode::Handle value_node(x.find("value_node")->second.get_value_node());
+               ValueNode::Handle value_node;
+               ValueDesc value_desc(x.find("value_desc")->second.get_value_desc());
+               if(value_desc.parent_is_value_node())
+                       value_node = value_desc.get_parent_value_node();
+               else
+                       value_node = x.find("value_node")->second.get_value_node();
                if(!ValueNode_DynamicList::Handle::cast_dynamic(value_node))
                        return false;
                if(ValueNode_DynamicList::Handle::cast_dynamic(value_node)->get_loop()==true)
@@ -90,10 +98,25 @@ Action::ValueNodeDynamicListLoop::is_canidate(const ParamList &x)
 bool
 Action::ValueNodeDynamicListLoop::set_param(const synfig::String& name, const Action::Param &param)
 {
-       if(name=="value_node" && param.get_type()==Param::TYPE_VALUENODE)
-       {               
+       if(!value_node && name=="value_desc" && param.get_type()==Param::TYPE_VALUEDESC)
+       {
+               ValueDesc value_desc(param.get_value_desc());
+
+               if(!value_desc.parent_is_value_node())
+                       return false;
+
+               value_node=ValueNode_DynamicList::Handle::cast_dynamic(value_desc.get_parent_value_node());
+
+               if (!value_node)
+                       return false;
+
+               return true;
+       }
+
+       if(!value_node && name=="value_node" && param.get_type()==Param::TYPE_VALUENODE)
+       {
                value_node=ValueNode_DynamicList::Handle::cast_dynamic(param.get_value_node());
-               
+
                if(!value_node)
                        return false;
 
@@ -113,9 +136,9 @@ Action::ValueNodeDynamicListLoop::is_ready()const
 
 void
 Action::ValueNodeDynamicListLoop::perform()
-{      
+{
        old_loop_value=value_node->get_loop();
-       
+
        if(old_loop_value==true)
        {
                set_dirty(false);
@@ -123,7 +146,7 @@ Action::ValueNodeDynamicListLoop::perform()
        }
        set_dirty(true);
        value_node->set_loop(true);
-               
+
        value_node->changed();
 /*_if(get_canvas_interface())
        {
@@ -142,7 +165,7 @@ Action::ValueNodeDynamicListLoop::undo()
        }
        set_dirty(true);
        value_node->set_loop(old_loop_value);
-               
+
        value_node->changed();
 /*_if(get_canvas_interface())
        {