Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / src / modules / lyr_std / translate.cpp
index 1b93235..b0f65db 100644 (file)
@@ -1,8 +1,10 @@
-/*! ========================================================================
-** Synfig
-** Template File
-** $Id: translate.cpp,v 1.2 2005/01/24 03:08:17 darco Exp $
+/* === S Y N F I G ========================================================= */
+/*!    \file translate.cpp
+**     \brief Implementation of the "Translate" layer
 **
+**     $Id$
+**
+**     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
 **
 **     This package is free software; you can redistribute it and/or
@@ -14,6 +16,7 @@
 **     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
 **
 ** === N O T E S ===========================================================
 **
 
 SYNFIG_LAYER_INIT(Translate);
 SYNFIG_LAYER_SET_NAME(Translate,"translate");
-SYNFIG_LAYER_SET_LOCAL_NAME(Translate,_("Translate"));
-SYNFIG_LAYER_SET_CATEGORY(Translate,_("Transform"));
+SYNFIG_LAYER_SET_LOCAL_NAME(Translate,N_("Translate"));
+SYNFIG_LAYER_SET_CATEGORY(Translate,N_("Transform"));
 SYNFIG_LAYER_SET_VERSION(Translate,"0.1");
-SYNFIG_LAYER_SET_CVS_ID(Translate,"$Id: translate.cpp,v 1.2 2005/01/24 03:08:17 darco Exp $");
+SYNFIG_LAYER_SET_CVS_ID(Translate,"$Id$");
 
 /* === P R O C E D U R E S ================================================= */
 
@@ -66,12 +69,12 @@ Translate::Translate():origin(0,0)
 Translate::~Translate()
 {
 }
-       
+
 bool
 Translate::set_param(const String & param, const ValueBase &value)
 {
        IMPORT(origin);
-       
+
        return false;
 }
 
@@ -81,20 +84,20 @@ Translate::get_param(const String& param)const
        EXPORT(origin);
        EXPORT_NAME();
        EXPORT_VERSION();
-               
-       return ValueBase();     
+
+       return ValueBase();
 }
 
 Layer::Vocab
 Translate::get_param_vocab()const
 {
        Layer::Vocab ret;
-       
+
        ret.push_back(ParamDesc("origin")
                .set_local_name(_("Origin"))
                .set_description(_("Point where you want the origin to be"))
        );
-       
+
        return ret;
 }
 
@@ -115,12 +118,12 @@ class Translate_Trans : public Transform
        etl::handle<const Translate> layer;
 public:
        Translate_Trans(const Translate* x):Transform(x->get_guid()),layer(x) { }
-       
+
        synfig::Vector perform(const synfig::Vector& x)const
        {
                return x+layer->origin;
        }
-       
+
        synfig::Vector unperform(const synfig::Vector& x)const
        {
                return x-layer->origin;