Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / src / modules / example / simplecircle.cpp
index 3abfe22..e2eb896 100644 (file)
@@ -1,11 +1,12 @@
 /* === S Y N F I G ========================================================= */
-/*!    \file layer_solidcolor.cpp
-**     \brief Template Header
+/*!    \file simplecircle.cpp
+**     \brief Implementation of the "Simple Circle" layer
 **
-**     $Id: simplecircle.cpp,v 1.1.1.1 2005/01/04 01:23:09 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
+**     Copyright (c) 2008 Chris Moore
 **
 **     This package is free software; you can redistribute it and/or
 **     modify it under the terms of the GNU General Public License as
@@ -52,10 +53,10 @@ using namespace synfig;
 
 SYNFIG_LAYER_INIT(SimpleCircle);
 SYNFIG_LAYER_SET_NAME(SimpleCircle,"simple_circle");
-SYNFIG_LAYER_SET_LOCAL_NAME(SimpleCircle,_("Simple Circle"));
-SYNFIG_LAYER_SET_CATEGORY(SimpleCircle,_("Do Not Use"));
+SYNFIG_LAYER_SET_LOCAL_NAME(SimpleCircle,N_("Simple Circle"));
+SYNFIG_LAYER_SET_CATEGORY(SimpleCircle,N_("Example"));
 SYNFIG_LAYER_SET_VERSION(SimpleCircle,"0.1");
-SYNFIG_LAYER_SET_CVS_ID(SimpleCircle,"$Id: simplecircle.cpp,v 1.1.1.1 2005/01/04 01:23:09 darco Exp $");
+SYNFIG_LAYER_SET_CVS_ID(SimpleCircle,"$Id$");
 
 /* === P R O C E D U R E S ================================================= */
 
@@ -70,14 +71,14 @@ SimpleCircle::SimpleCircle():
        radius(0.5)
 {
 }
-       
+
 bool
 SimpleCircle::set_param(const String & param, const ValueBase &value)
 {
        IMPORT(color);
        IMPORT(center);
        IMPORT(radius);
-       
+
        return Layer_Composite::set_param(param,value);
 }
 
@@ -90,15 +91,15 @@ SimpleCircle::get_param(const String &param)const
 
        EXPORT_NAME();
        EXPORT_VERSION();
-               
-       return Layer_Composite::get_param(param);       
+
+       return Layer_Composite::get_param(param);
 }
 
 Layer::Vocab
 SimpleCircle::get_param_vocab()const
 {
        Layer::Vocab ret(Layer_Composite::get_param_vocab());
-       
+
        ret.push_back(ParamDesc("color")
                .set_local_name(_("Color"))
        );
@@ -106,13 +107,13 @@ SimpleCircle::get_param_vocab()const
        ret.push_back(ParamDesc("center")
                .set_local_name(_("Center"))
        );
-       
+
        ret.push_back(ParamDesc("radius")
                .set_local_name(_("Radius"))
                .set_description(_("This is the radius of the circle"))
                .set_origin("center")
        );
-       
+
        return ret;
 }
 
@@ -149,7 +150,7 @@ SimpleCircle::accelerated_render(Context context,Surface *surface,int quality, c
                // Mark our progress as starting
                if(cb && !cb->amount_complete(0,1000))
                        return false;
-               
+
                surface->set_wh(renddesc.get_w(),renddesc.get_h());
                surface->fill(color);