X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_filter%2Flumakey.cpp;h=cb2fc8662223bcbbbdde8b5966d3a7d351ce2abd;hb=36d01e1527fda602a9aed07d209eb34e6770bca8;hp=398bee7b772384826a136d42db4d83e44ef67b60;hpb=28f28705612902c15cd0702cc891fba35bf2d2df;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_filter/lumakey.cpp b/synfig-core/trunk/src/modules/mod_filter/lumakey.cpp index 398bee7..cb2fc86 100644 --- a/synfig-core/trunk/src/modules/mod_filter/lumakey.cpp +++ b/synfig-core/trunk/src/modules/mod_filter/lumakey.cpp @@ -1,20 +1,21 @@ /* === S Y N F I G ========================================================= */ -/*! \file checkerboard.cpp +/*! \file lumakey.cpp ** \brief Template Header ** ** $Id: lumakey.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $ ** ** \legal -** Copyright (c) 2002 Robert B. Quattlebaum Jr. +** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** -** 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 */ /* ========================================================================= */ @@ -70,7 +71,7 @@ LumaKey::LumaKey(): bool LumaKey::set_param(const String ¶m, const ValueBase &value) -{ +{ return Layer_Composite::set_param(param,value); } @@ -79,15 +80,15 @@ LumaKey::get_param(const String ¶m)const { EXPORT_NAME(); EXPORT_VERSION(); - - return Layer_Composite::get_param(param); + + return Layer_Composite::get_param(param); } Layer::Vocab LumaKey::get_param_vocab()const { Layer::Vocab ret(Layer_Composite::get_param_vocab()); - + /* ret.push_back(ParamDesc("color") .set_local_name(_("Color")) .set_description(_("Color of checkers")) @@ -114,14 +115,14 @@ Color LumaKey::get_color(Context context, const Point &getpos)const { const Color color(context.get_color(getpos)); - + if(get_amount()==0.0) return color; - + Color ret(color); ret.set_a(ret.get_y()*ret.get_a()); ret.set_y(1); - + if(get_amount()==1.0 && get_blend_method()==Color::BLEND_STRAIGHT) return ret; @@ -161,6 +162,6 @@ LumaKey::get_bounding_rect(Context context)const { if(is_disabled()) return Rect::zero(); - + return context.get_full_bounding_rect(); }