synfig-core  1.0.3
valuenode_composite.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_COMPOSITE_H
27 #define __SYNFIG_VALUENODE_COMPOSITE_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 #define MAX_LINKS 8
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 components[MAX_LINKS];
44  ValueNode_Composite(const ValueBase &value, etl::loose_handle<Canvas> canvas = 0);
45 
46 public:
47  typedef etl::handle<ValueNode_Composite> Handle;
48  typedef etl::handle<const ValueNode_Composite> ConstHandle;
49 
50 
52 
53  virtual ValueNode::LooseHandle get_link_vfunc(int i)const;
54  virtual String link_name(int i)const;
55  virtual ValueBase operator()(Time t)const;
56  virtual String get_name()const;
57  virtual String get_local_name()const;
58  virtual int get_link_index_from_name(const String &name)const;
59 
60 protected:
61  virtual bool set_link_vfunc(int i,ValueNode::Handle x);
62 
64 
65 public:
68  static bool check_type(Type &type);
69  static ValueNode_Composite* create(const ValueBase &x, etl::loose_handle<Canvas> canvas = 0);
70  virtual Vocab get_children_vocab_vfunc()const;
71 }; // END of class ValueNode_Composite
72 
73 }; // END of namespace synfig
74 
75 /* === E N D =============================================================== */
76 
77 #endif