synfig-core  1.0.3
layer_mime.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIG_LAYER_MIME_H
26 #define __SYNFIG_LAYER_MIME_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #include <synfig/layer.h>
31 #include <synfig/string.h>
32 #include <map>
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 
40 namespace synfig {
41 
48 class Layer_Mime : public Layer
49 {
50  std::map<String,ValueBase> param_list;
51  String name;
52 public:
53  Layer_Mime(String name);
54 
55  virtual String get_version()const;
56 
57  virtual bool set_version(const String &ver);
58 
59  virtual bool set_param(const String &param, const ValueBase &value);
60 
61  virtual ValueBase get_param(const String &param)const;
62 
63  virtual Color get_color(Context context, const Point &pos)const;
64  virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
65 
66  virtual Vocab get_param_vocab()const;
67  virtual String get_local_name()const;
68 
69 };
70 
71 }; // END of namespace synfig
72 
73 /* === E N D =============================================================== */
74 
75 #endif