synfig-studio  1.0.3
valuedesclink.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_APP_ACTION_VALUEDESCLINK_H
28 #define __SYNFIG_APP_ACTION_VALUEDESCLINK_H
29 
30 /* === H E A D E R S ======================================================= */
31 
32 #include <synfigapp/action.h>
33 #include <synfigapp/value_desc.h>
34 #include <list>
35 
36 /* === M A C R O S ========================================================= */
37 
38 /* === T Y P E D E F S ===================================================== */
39 
40 /* === C L A S S E S & S T R U C T S ======================================= */
41 
42 namespace synfigapp {
43 
44 namespace Action {
45 
47  public Super
48 {
49 private:
50  friend class ValueDescLinkOpposite;
53  std::list<ValueDesc> value_desc_list;
56  synfig::ValueNode::Handle link_value_node;
58  bool poison;
60  int status_level;
62  synfig::String status_message;
64  synfig::Time time;
68  synfig::Real link_scalar;
70  bool link_opposite;
71 public:
72 
73  ValueDescLink();
74 
75  static ParamVocab get_param_vocab();
76  static bool is_candidate(const ParamList &x);
77 
78  virtual bool set_param(const synfig::String& name, const Param &);
79  virtual bool is_ready()const;
80 
81  virtual void prepare();
82 
84 };
85 
87  public ValueDescLink
88 {
89 public:
90 
92 
93  static ParamVocab get_param_vocab();
94  static bool is_candidate(const ParamList &x);
95 
96  virtual bool set_param(const synfig::String& name, const Param &);
97  virtual bool is_ready()const;
98 
99  virtual void prepare();
100 
102 };
103 
104 }; // END of namespace action
105 }; // END of namespace studio
106 
107 /* === E N D =============================================================== */
108 
109 #endif