synfig-core  1.0.3
valuenode_range.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_VALUENODE_RANGE_H
27 #define __SYNFIG_VALUENODE_RANGE_H
28 
29 /* === H E A D E R S ======================================================= */
30 
31 #include <synfig/valuenode.h>
32 
33 /* === M A C R O S ========================================================= */
34 
35 /* === C L A S S E S & S T R U C T S ======================================= */
36 
37 namespace synfig {
38 
40 {
41  ValueNode::RHandle min_;
42  ValueNode::RHandle max_;
43  ValueNode::RHandle link_;
44 
45  ValueNode_Range(const ValueBase &value);
46 
47 public:
48 
49  typedef etl::handle<ValueNode_Range> Handle;
50  typedef etl::handle<const ValueNode_Range> ConstHandle;
51 
52  virtual ValueBase operator()(Time t)const;
53 
54  virtual ~ValueNode_Range();
55 
56  virtual String get_name()const;
57  virtual String get_local_name()const;
58 
60  ValueBase get_inverse(Time t, const synfig::Vector &target_value) const;
61  ValueBase get_inverse(Time t, const synfig::Angle &target_value) const;
62 
63  virtual ValueNode::LooseHandle get_link_vfunc(int i)const;
64 
65 protected:
66  virtual bool set_link_vfunc(int i,ValueNode::Handle x);
68 
69 public:
72  static bool check_type(Type &type);
73  static ValueNode_Range* create(const ValueBase &value=ValueBase());
74  virtual Vocab get_children_vocab_vfunc()const;
75 }; // END of class ValueNode_Range
76 
77 }; // END of namespace synfig
78 
79 /* === E N D =============================================================== */
80 
81 #endif