X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_geometry%2Fregion.h;h=38e33f302040715a5a24963cbfb9e3cf336c6452;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=011e23a9e3ebd743d8b6eb370c0db71bd1cc6902;hpb=16b3beced25134bef064705568ecb893a6be4e79;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_geometry/region.h b/synfig-core/trunk/src/modules/mod_geometry/region.h index 011e23a..38e33f3 100644 --- a/synfig-core/trunk/src/modules/mod_geometry/region.h +++ b/synfig-core/trunk/src/modules/mod_geometry/region.h @@ -1,18 +1,22 @@ -/*! ======================================================================== -** Sinfg -** Template Header File -** $Id: region.h,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $ +/* === S Y N F I G ========================================================= */ +/*! \file region.h +** \brief Header file for implementation of the "Region" layer ** -** Copyright (c) 2002 Robert B. Quattlebaum Jr. +** $Id$ ** -** This software and associated documentation -** are CONFIDENTIAL and PROPRIETARY property of -** the above-mentioned copyright holder. +** \legal +** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** -** 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 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. +** +** 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 ** ** === N O T E S =========================================================== ** @@ -20,15 +24,15 @@ /* === S T A R T =========================================================== */ -#ifndef __SINFG_REGION_H -#define __SINFG_REGION_H +#ifndef __SYNFIG_REGION_H +#define __SYNFIG_REGION_H /* === H E A D E R S ======================================================= */ -#include +#include #include #include -#include +#include /* === M A C R O S ========================================================= */ @@ -36,25 +40,25 @@ /* === C L A S S E S & S T R U C T S ======================================= */ -namespace sinfg { class Segment; } +namespace synfig { class Segment; } -using namespace sinfg; +using namespace synfig; using namespace std; using namespace etl; -class Region : protected sinfg::Layer_Polygon//Shape +class Region : protected synfig::Layer_Polygon//Shape { - SINFG_LAYER_MODULE_EXT + SYNFIG_LAYER_MODULE_EXT private: - sinfg::ValueBase bline; - std::vector segment_list; + synfig::ValueBase bline; + std::vector segment_list; public: Region(); //! Updates the polygon data to match the parameters. void sync(); - virtual bool set_param(const String & param, const sinfg::ValueBase &value); + virtual bool set_param(const String & param, const synfig::ValueBase &value); virtual ValueBase get_param(const String & param)const;