moreupdates
[synfig.git] / synfig-core / trunk / src / synfig / layer_motionblur.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file layer_motionblur.h
3 **      \brief Template Header
4 **
5 **      $Id: layer_motionblur.h,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002 Robert B. Quattlebaum Jr.
9 **
10 **      This software and associated documentation
11 **      are CONFIDENTIAL and PROPRIETARY property of
12 **      the above-mentioned copyright holder.
13 **
14 **      You may not copy, print, publish, or in any
15 **      other way distribute this software without
16 **      a prior written agreement with
17 **      the copyright holder.
18 **      \endlegal
19 */
20 /* ========================================================================= */
21
22 /* === S T A R T =========================================================== */
23
24 #ifndef __SYNFIG_LAYER_MOTIONBLUR_H__
25 #define __SYNFIG_LAYER_MOTIONBLUR_H__
26
27 /* === H E A D E R S ======================================================= */
28
29 #include "layer_composite.h"
30 #include "time.h"
31
32 /* === S T R U C T S & C L A S S E S ======================================= */
33
34 namespace synfig {
35         
36 class Layer_MotionBlur : public synfig::Layer_Composite
37 {
38         SYNFIG_LAYER_MODULE_EXT
39
40 private:
41
42         Time aperture;
43
44         mutable Time time_cur;
45
46 public:
47
48         Layer_MotionBlur();
49         
50         virtual bool set_param(const String & param, const synfig::ValueBase &value);
51         
52         virtual ValueBase get_param(const String & param)const;
53
54         virtual Color get_color(Context context, const Point &pos)const;
55
56         virtual void set_time(Context context, Time time)const;
57
58         virtual void set_time(Context context, Time time, const Point &pos)const;
59         
60         virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
61
62         virtual Vocab get_param_vocab()const;
63
64 }; // END of class Layer_MotionBlur
65
66 }; // END of namespace synfig
67
68 /* === E N D =============================================================== */
69
70 #endif