Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / 0.61.08 / src / modules / lyr_std / bevel.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file bevel.h
3 **      \brief Header file for implementation of the "Bevel" layer
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2008 Chris Moore
10 **
11 **      This package is free software; you can redistribute it and/or
12 **      modify it under the terms of the GNU General Public License as
13 **      published by the Free Software Foundation; either version 2 of
14 **      the License, or (at your option) any later version.
15 **
16 **      This package is distributed in the hope that it will be useful,
17 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 **      General Public License for more details.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === H E A D E R S ======================================================= */
25
26 #ifndef __SYNFIG_LAYER_BEVEL_H__
27 #define __SYNFIG_LAYER_BEVEL_H__
28
29 /* -- H E A D E R S --------------------------------------------------------- */
30
31 #include <synfig/layer_composite.h>
32 #include <synfig/color.h>
33 #include <synfig/vector.h>
34 #include <synfig/blur.h>
35 #include <synfig/angle.h>
36
37 using namespace synfig;
38 using namespace std;
39 using namespace etl;
40
41 class Layer_Bevel : public synfig::Layer_Composite
42 {
43         SYNFIG_LAYER_MODULE_EXT
44 private:
45         synfig::Real    softness;
46         int                             type;
47
48         synfig::Color   color1;
49         synfig::Color   color2;
50
51         synfig::Angle   angle;
52         synfig::Real            depth;
53
54         synfig::Vector  offset;
55         synfig::Vector  offset45;
56
57         bool use_luma;
58         bool solid;
59
60         void calc_offset();
61 public:
62         Layer_Bevel();
63
64         virtual bool set_param(const String & param, const synfig::ValueBase &value);
65
66         virtual ValueBase get_param(const String & param)const;
67
68         virtual Color get_color(Context context, const Point &pos)const;
69
70         virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
71
72         virtual synfig::Rect get_full_bounding_rect(Context context)const;
73         virtual Vocab get_param_vocab()const;
74         virtual bool reads_context()const { return true; }
75 }; // END of class Layer_Bevel
76
77 /* -- E X T E R N S --------------------------------------------------------- */
78
79 /* -- E N D ----------------------------------------------------------------- */
80
81 #endif