synfig-core  1.0.3
valuenode_bonelink.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_VALUENODE_BONELINK_H
26 #define __SYNFIG_VALUENODE_BONELINK_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #include <synfig/valuenode.h>
31 
32 /* === M A C R O S ========================================================= */
33 
34 /* === C L A S S E S & S T R U C T S ======================================= */
35 
36 namespace synfig {
37 
39 {
40  ValueNode::RHandle bone_;
41  ValueNode::RHandle base_value_;
42  ValueNode::RHandle translate_;
43  ValueNode::RHandle rotate_;
44  ValueNode::RHandle skew_;
45  ValueNode::RHandle scale_x_;
46  ValueNode::RHandle scale_y_;
47 
48 public:
49  typedef etl::handle<ValueNode_BoneLink> Handle;
50  typedef etl::handle<const ValueNode_BoneLink> ConstHandle;
51 
52  ValueNode_BoneLink(const ValueBase &x);
53 
55  virtual ValueBase operator()(Time t)const;
56 
57  virtual ~ValueNode_BoneLink();
58 
59  virtual String get_name()const;
60  virtual String get_local_name()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_BoneLink* create(const ValueBase &x);
74  virtual Vocab get_children_vocab_vfunc()const;
75  virtual void set_root_canvas(etl::loose_handle<Canvas> canvas);
76 }; // END of class ValueNode_Pow
77 
78 }; // END of namespace synfig
79 
80 /* === E N D =============================================================== */
81 
82 #endif