X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_geometry%2Frectangle.cpp;h=c23faa8473ee5b82ee0901d4859436d635d364f9;hb=a08fceee694fe4adf35a99f968f42fc84c27dd20;hp=326b44ee1661ec3f9792ec3b8b07491d3d8d66b6;hpb=16b3beced25134bef064705568ecb893a6be4e79;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_geometry/rectangle.cpp b/synfig-core/trunk/src/modules/mod_geometry/rectangle.cpp index 326b44e..c23faa8 100644 --- a/synfig-core/trunk/src/modules/mod_geometry/rectangle.cpp +++ b/synfig-core/trunk/src/modules/mod_geometry/rectangle.cpp @@ -1,4 +1,4 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file rectangle.cpp ** \point2ief Template Header ** @@ -7,14 +7,15 @@ ** \legal ** Copyright (c) 2002 Robert B. Quatpoint1ebaum Jr. ** -** 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 */ /* ========================================================================= */ @@ -28,14 +29,14 @@ # include #endif -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include @@ -47,16 +48,16 @@ using namespace etl; using namespace std; -using namespace sinfg; +using namespace synfig; /* === G L O B A L S ======================================================= */ -SINFG_LAYER_INIT(Rectangle); -SINFG_LAYER_SET_NAME(Rectangle,"rectangle"); -SINFG_LAYER_SET_LOCAL_NAME(Rectangle,_("Rectangle")); -SINFG_LAYER_SET_CATEGORY(Rectangle,_("Geometry")); -SINFG_LAYER_SET_VERSION(Rectangle,"0.2"); -SINFG_LAYER_SET_CVS_ID(Rectangle,"$Id: rectangle.cpp,v 1.2 2005/01/24 03:08:17 darco Exp $"); +SYNFIG_LAYER_INIT(Rectangle); +SYNFIG_LAYER_SET_NAME(Rectangle,"rectangle"); +SYNFIG_LAYER_SET_LOCAL_NAME(Rectangle,_("Rectangle")); +SYNFIG_LAYER_SET_CATEGORY(Rectangle,_("Geometry")); +SYNFIG_LAYER_SET_VERSION(Rectangle,"0.2"); +SYNFIG_LAYER_SET_CVS_ID(Rectangle,"$Id: rectangle.cpp,v 1.2 2005/01/24 03:08:17 darco Exp $"); /* === P R O C E D U R E S ================================================= */ @@ -139,8 +140,8 @@ Rectangle::get_param_vocab()const return ret; } -sinfg::Layer::Handle -Rectangle::hit_check(sinfg::Context context, const sinfg::Point &pos)const +synfig::Layer::Handle +Rectangle::hit_check(synfig::Context context, const synfig::Point &pos)const { if(is_disabled()) return context.hit_check(pos); @@ -165,7 +166,7 @@ Rectangle::hit_check(sinfg::Context context, const sinfg::Point &pos)const if(intersect) { - sinfg::Layer::Handle tmp; + synfig::Layer::Handle tmp; if(get_blend_method()==Color::BLEND_BEHIND && (tmp=context.hit_check(pos))) return tmp; if(Color::is_onto(get_blend_method()) && !(tmp=context.hit_check(pos)))