synfig-core  1.0.3
valuenode_switch.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_SWITCH_H
28 #define __SYNFIG_VALUENODE_SWITCH_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 link_off_;
43  ValueNode::RHandle link_on_;
44  ValueNode::RHandle switch_;
45 public:
46  typedef etl::handle<ValueNode_Switch> Handle;
47  typedef etl::handle<const ValueNode_Switch> ConstHandle;
48 
50 
51  ValueNode_Switch(const ValueBase &x);
52 
53 // static Handle create(Type &x);
54 // static Handle create(const ValueNode::Handle &x);
55 
56 
57  virtual ValueNode::LooseHandle get_link_vfunc(int i)const;
58 
59  virtual ValueBase operator()(Time t)const;
60 
61  virtual ~ValueNode_Switch();
62 
63  virtual String get_name()const;
64 
65  virtual String get_local_name()const;
66 
67 protected:
68  virtual bool set_link_vfunc(int i,ValueNode::Handle x);
69 
71 
72 public:
74  static bool check_type(Type &type);
75  static ValueNode_Switch* create(const ValueBase &x);
76  virtual Vocab get_children_vocab_vfunc()const;
77 }; // END of class ValueNode_Switch
78 
79 }; // END of namespace synfig
80 
81 /* === E N D =============================================================== */
82 
83 #endif