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