Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / synfig_0_61_05 / synfig-core / src / modules / lyr_std / sphere_distort.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file sphere_distort.h
3 **      \brief Sphere Distort Header
4 **
5 **      $Id: sphere_distort.h,v 1.2 2005/01/24 05:00:18 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === S T A R T =========================================================== */
24
25 #ifndef __SYNFIG_SPHERE_DISTORT_H
26 #define __SYNFIG_SPHERE_DISTORT_H
27
28 /* === H E A D E R S ======================================================= */
29
30 #include <synfig/layer_composite.h>
31 #include <synfig/vector.h>
32 #include <synfig/rect.h>
33
34 /* === M A C R O S ========================================================= */
35
36 /* === T Y P E D E F S ===================================================== */
37
38 /* === C L A S S E S & S T R U C T S ======================================= */
39 namespace synfig 
40 {
41 class Spherize_Trans;
42
43 class Layer_SphereDistort : public Layer_Composite
44 {
45         SYNFIG_LAYER_MODULE_EXT
46         friend class Spherize_Trans;
47         
48 private:
49
50         Vector center;
51         double radius;
52
53         double percent;
54
55         int             type;
56
57 //      static Point sphtrans(const Point &xoff, const Point &center, const Real &radius, const Real &percent, int type);
58
59 //      static double spherify(double xoff);
60 //      static double unspherify(double xoff);
61
62         bool clip;
63
64         synfig::Rect bounds;
65
66         void sync();
67
68 public:
69         
70         Layer_SphereDistort();
71                 
72         virtual bool set_param(const String & param, const synfig::ValueBase &value);
73
74         virtual ValueBase get_param(const String & param)const;
75
76         virtual Color get_color(Context context, const Point &pos)const;
77         
78         virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
79         synfig::Layer::Handle hit_check(synfig::Context context, const synfig::Point &point)const;      
80
81         virtual Rect get_bounding_rect()const;
82         
83         virtual Vocab get_param_vocab()const;
84         virtual etl::handle<synfig::Transform> get_transform()const;
85 }; // END of class Layer_SphereDistort
86
87 }
88
89 /* === E N D =============================================================== */
90
91 #endif