synfig-core  1.0.3
import.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
22 /* ========================================================================= */
23 
24 /* === S T A R T =========================================================== */
25 
26 #ifndef __SYNFIG_IMPORT_H
27 #define __SYNFIG_IMPORT_H
28 
29 /* === H E A D E R S ======================================================= */
30 
32 #include <synfig/color.h>
33 #include <synfig/vector.h>
34 #include <synfig/importer.h>
35 #include <synfig/cairoimporter.h>
36 #include <synfig/rendermethod.h>
37 
38 using namespace synfig;
39 
40 /* === M A C R O S ========================================================= */
41 
42 /* === T Y P E D E F S ===================================================== */
43 
44 /* === C L A S S E S & S T R U C T S ======================================= */
45 
46 class Import : public Layer_Bitmap
47 {
49 
50 private:
52  ValueBase param_filename;
54  ValueBase param_time_offset;
55 
56  String abs_filename;
57  Importer::Handle importer;
58  CairoImporter::Handle cimporter;
59 
60 protected:
61  Import();
62 
63 public:
64  ~Import();
65 
66  virtual bool set_param(const String & param, const ValueBase &value);
67 
68  virtual ValueBase get_param(const String & param)const;
69 
70  virtual Vocab get_param_vocab()const;
71 
72  virtual void on_canvas_set();
73 
74  virtual void set_time(IndependentContext context, Time time)const;
75 
76  virtual void set_time(IndependentContext context, Time time, const Point &point)const;
77 
78  virtual void set_render_method(Context context, RenderMethod x);
79 };
80 
81 /* === E N D =============================================================== */
82 
83 #endif