Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-studio / trunk / src / synfigapp / actions / keyframewaypointset.cpp
index b1e787d..b587397 100644 (file)
@@ -1,20 +1,21 @@
 /* === S Y N F I G ========================================================= */
-/*!    \file keyframeset.cpp
+/*!    \file keyframewaypointset.cpp
 **     \brief Template File
 **
-**     $Id: keyframewaypointset.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
 */
 /* ========================================================================= */
@@ -35,6 +36,8 @@
 #include "activepointsetsmart.h"
 #include "waypointsetsmart.h"
 
+#include <synfigapp/general.h>
+
 #endif
 
 using namespace std;
@@ -46,13 +49,13 @@ using namespace Action;
 /* === M A C R O S ========================================================= */
 
 ACTION_INIT(Action::KeyframeWaypointSet);
-ACTION_SET_NAME(Action::KeyframeWaypointSet,"keyframe_waypoint_set");
-ACTION_SET_LOCAL_NAME(Action::KeyframeWaypointSet,"Set Waypoints at Keyframe");
+ACTION_SET_NAME(Action::KeyframeWaypointSet,"KeyframeWaypointSet");
+ACTION_SET_LOCAL_NAME(Action::KeyframeWaypointSet,N_("Set Waypoints at Keyframe"));
 ACTION_SET_TASK(Action::KeyframeWaypointSet,"set");
 ACTION_SET_CATEGORY(Action::KeyframeWaypointSet,Action::CATEGORY_KEYFRAME);
 ACTION_SET_PRIORITY(Action::KeyframeWaypointSet,0);
 ACTION_SET_VERSION(Action::KeyframeWaypointSet,"0.0");
-ACTION_SET_CVS_ID(Action::KeyframeWaypointSet,"$Id: keyframewaypointset.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $");
+ACTION_SET_CVS_ID(Action::KeyframeWaypointSet,"$Id$");
 
 /* === G L O B A L S ======================================================= */
 
@@ -70,7 +73,7 @@ Action::ParamVocab
 Action::KeyframeWaypointSet::get_param_vocab()
 {
        ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
-       
+
        ret.push_back(ParamDesc("keyframe",Param::TYPE_KEYFRAME)
                .set_local_name(_("Keyframe"))
        );
@@ -83,9 +86,9 @@ Action::KeyframeWaypointSet::get_param_vocab()
 }
 
 bool
-Action::KeyframeWaypointSet::is_canidate(const ParamList &x)
+Action::KeyframeWaypointSet::is_candidate(const ParamList &x)
 {
-       return canidate_check(get_param_vocab(),x);
+       return candidate_check(get_param_vocab(),x);
 }
 
 bool
@@ -94,13 +97,13 @@ Action::KeyframeWaypointSet::set_param(const synfig::String& name, const Action:
        if(name=="keyframe" && param.get_type()==Param::TYPE_KEYFRAME)
        {
                keyframe=param.get_keyframe();
-               
+
                return true;
        }
        if(name=="model" && param.get_type()==Param::TYPE_WAYPOINTMODEL)
        {
                waypoint_model=param.get_waypoint_model();
-               
+
                return true;
        }
 
@@ -124,7 +127,7 @@ Action::KeyframeWaypointSet::prepare()
        catch(synfig::Exception::NotFound)
        {
                throw Error(_("Unable to find the given keyframe"));
-       }       
+       }
 
        {
                std::vector<synfigapp::ValueDesc> value_desc_list;
@@ -139,19 +142,19 @@ Action::KeyframeWaypointSet::prepare()
 
 void
 Action::KeyframeWaypointSet::process_value_desc(const synfigapp::ValueDesc& value_desc)
-{      
+{
        if(value_desc.is_value_node())
        {
                ValueNode_Animated::Handle value_node(ValueNode_Animated::Handle::cast_dynamic(value_desc.get_value_node()));
-       
+
                if(value_node)
-               {                       
+               {
                        Action::Handle action(WaypointSetSmart::create());
-                       
+
                        action->set_param("canvas",get_canvas());
                        action->set_param("canvas_interface",get_canvas_interface());
                        action->set_param("value_node",ValueNode::Handle(value_node));
-                       
+
                        Waypoint waypoint;
                        try
                        {
@@ -163,14 +166,14 @@ Action::KeyframeWaypointSet::process_value_desc(const synfigapp::ValueDesc& valu
                                waypoint.set_value((*value_node)(keyframe.get_time()));
                        }
                        waypoint.apply_model(waypoint_model);
-                       
+
                        action->set_param("waypoint",waypoint);
-       
+
                        assert(action->is_ready());
                        if(!action->is_ready())
                                throw Error(Error::TYPE_NOTREADY);
-               
-                       add_action_front(action);                                               
+
+                       add_action_front(action);
                }
        }
 }