Blame synfig-core/src/modules/lyr_std/curvewarp.h

Carlos Lopez a09598
/* === S Y N F I G ========================================================= */
Carlos Lopez a09598
/*!	\file curvewarp.h
Carlos Lopez a09598
**	\brief Header file for implementation of the "Curve Warp" layer
Carlos Lopez a09598
**
Carlos Lopez a09598
**	$Id$
Carlos Lopez a09598
**
Carlos Lopez a09598
**	\legal
Carlos Lopez a09598
**	Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
Carlos Lopez a09598
**	Copyright (c) 2007-2008 Chris Moore
Carlos Lopez e83454
**	Copyright (c) 2012-2013 Carlos Lรณpez
Carlos Lopez a09598
**
Carlos Lopez a09598
**	This package is free software; you can redistribute it and/or
Carlos Lopez a09598
**	modify it under the terms of the GNU General Public License as
Carlos Lopez a09598
**	published by the Free Software Foundation; either version 2 of
Carlos Lopez a09598
**	the License, or (at your option) any later version.
Carlos Lopez a09598
**
Carlos Lopez a09598
**	This package is distributed in the hope that it will be useful,
Carlos Lopez a09598
**	but WITHOUT ANY WARRANTY; without even the implied warranty of
Carlos Lopez a09598
**	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Carlos Lopez a09598
**	General Public License for more details.
Carlos Lopez a09598
**	\endlegal
Carlos Lopez a09598
**
Carlos Lopez a09598
** === N O T E S ===========================================================
Carlos Lopez a09598
**
Carlos Lopez a09598
** ========================================================================= */
Carlos Lopez a09598
Carlos Lopez a09598
/* === S T A R T =========================================================== */
Carlos Lopez a09598
Carlos Lopez a09598
#ifndef __SYNFIG_CURVEWARP_H
Carlos Lopez a09598
#define __SYNFIG_CURVEWARP_H
Carlos Lopez a09598
Carlos Lopez a09598
/* === H E A D E R S ======================================================= */
Carlos Lopez a09598
Carlos Lopez a09598
#include <vector></vector>
Carlos Lopez a09598
#include <synfig vector.h=""></synfig>
Carlos Lopez a09598
#include <synfig layer.h=""></synfig>
Carlos Lopez a09598
#include <synfig blinepoint.h=""></synfig>
Carlos Lopez a09598
Carlos Lopez a09598
/* === M A C R O S ========================================================= */
Carlos Lopez a09598
Carlos Lopez a09598
/* === T Y P E D E F S ===================================================== */
Carlos Lopez a09598
Carlos Lopez a09598
/* === C L A S S E S & S T R U C T S ======================================= */
Carlos Lopez a09598
144d3f
namespace synfig
144d3f
{
144d3f
namespace modules
144d3f
{
9f3c68
namespace lyr_std
9f3c68
{
9f3c68
Carlos Lopez a09598
class CurveWarp : public Layer
Carlos Lopez a09598
{
Carlos Lopez a09598
	SYNFIG_LAYER_MODULE_EXT
Carlos Lopez a09598
Carlos Lopez a09598
private:
Carlos Lopez 5701cc
	//!Parameter: (Point) origin of the warp
Carlos Lopez 5701cc
	ValueBase param_origin;
Carlos Lopez 5701cc
	//!Parameter: (Real) perpendicular expansion
Carlos Lopez 5701cc
	ValueBase param_perp_width;
Carlos Lopez 5701cc
	//!Parameter: (Point) start point of source
Carlos Lopez 5701cc
	ValueBase param_start_point;
Carlos Lopez 5701cc
	//!Parameter: (Point) end point of source
Carlos Lopez 5701cc
	ValueBase param_end_point;
9f3c68
	//!Parameter: (std::vector<blinepoint>) spline of the warp</blinepoint>
Carlos Lopez 5701cc
	ValueBase param_bline;
Carlos Lopez 5701cc
	//!Parameter: (bool)
Carlos Lopez 5701cc
	ValueBase param_fast;
Carlos Lopez a09598
Carlos Lopez a09598
	Vector perp_;
Carlos Lopez 5701cc
	Real curve_length_;
Carlos Lopez a09598
Carlos Lopez a09598
	void sync();
Carlos Lopez a09598
Carlos Lopez a09598
public:
Carlos Lopez a09598
	CurveWarp();
Carlos Lopez a09598
Carlos Lopez a09598
	virtual bool set_param(const String ¶m, const ValueBase &value);
Carlos Lopez a09598
	virtual ValueBase get_param(const String ¶m)const;
Carlos Lopez a09598
	virtual Point transform(const Point &point_, Real *dist=NULL, Real *along=0, int quality=10)const;
Carlos Lopez a09598
	virtual Color get_color(Context context, const Point &pos)const;
Carlos Lopez a09598
	virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
Carlos Lopez 49866d
	virtual bool accelerated_cairorender(Context context,cairo_t *cr, int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
9f3c68
	Layer::Handle hit_check(Context context, const Point &point)const;
Carlos Lopez a09598
Carlos Lopez a09598
	virtual Vocab get_param_vocab()const;
de09ec
de09ec
protected:
de09ec
	virtual RendDesc get_sub_renddesc_vfunc(const RendDesc &renddesc) const;
Carlos Lopez a09598
};
Carlos Lopez a09598
144d3f
}; // END of namespace lyr_std
144d3f
}; // END of namespace modules
144d3f
}; // END of namespace synfig
9f3c68
Carlos Lopez a09598
/* === E N D =============================================================== */
Carlos Lopez a09598
Carlos Lopez a09598
#endif