synfig-core  1.0.3
valuenode_real.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
24 /* ========================================================================= */
25 
26 /* === S T A R T =========================================================== */
27 
28 #ifndef __SYNFIG_VALUENODE_REAL_H
29 #define __SYNFIG_VALUENODE_REAL_H
30 
31 /* === H E A D E R S ======================================================= */
32 
33 #include <synfig/valuenode.h>
34 
35 /* === M A C R O S ========================================================= */
36 
37 /* === C L A S S E S & S T R U C T S ======================================= */
38 
39 namespace synfig {
40 
42 {
43  ValueNode::RHandle real_;
44 
45 public:
46  typedef etl::handle<ValueNode_Real> Handle;
47  typedef etl::handle<const ValueNode_Real> ConstHandle;
48 
49  ValueNode_Real(Type &x);
50  ValueNode_Real(const ValueBase &x);
51 
52  virtual ValueBase operator()(Time t)const;
53 
54  virtual ~ValueNode_Real();
55 
56  virtual String get_name()const;
57  virtual String get_local_name()const;
58 
60  ValueBase get_inverse(Time t, const synfig::Angle &target_value) const;
61 
62  virtual ValueNode::LooseHandle get_link_vfunc(int i)const;
63 
64 protected:
66  virtual bool set_link_vfunc(int i,ValueNode::Handle x);
67 
68 public:
70 
72  static bool check_type(Type &type);
73  static ValueNode_Real* create(const ValueBase &x);
74  virtual Vocab get_children_vocab_vfunc()const;
75 }; // END of class ValueNode_Real
76 
77 }; // END of namespace synfig
78 
79 /* === E N D =============================================================== */
80 
81 #endif