X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fexample%2Fsimplecircle.cpp;h=e2eb8969d8bd9e02898078fb6427573136e1224d;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=3abfe22da71ca9c83befd1f98c37bd54aa62ca7d;hpb=e8a065f2385c219c511b57dac52786120bfa097d;p=synfig.git diff --git a/synfig-core/trunk/src/modules/example/simplecircle.cpp b/synfig-core/trunk/src/modules/example/simplecircle.cpp index 3abfe22..e2eb896 100644 --- a/synfig-core/trunk/src/modules/example/simplecircle.cpp +++ b/synfig-core/trunk/src/modules/example/simplecircle.cpp @@ -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 ¶m)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);