synfig-studio  1.0.3
valuedescremovesmart.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
24 /* ========================================================================= */
25 
26 /* === S T A R T =========================================================== */
27 
28 #ifndef __SYNFIG_APP_ACTION_VALUEDESCREMOVESMART_H
29 #define __SYNFIG_APP_ACTION_VALUEDESCREMOVESMART_H
30 
31 /* === H E A D E R S ======================================================= */
32 
33 #include <synfigapp/action.h>
34 #include <synfig/valuenodes/valuenode_dynamiclist.h>
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 namespace Action {
44 
46  public Super
47 {
48 private:
49  // ValueNodes is a map of value nodes parents and the indexes to remove
50  typedef std::map<synfig::ValueNode_DynamicList::Handle, std::vector<int> > ValueNodes;
51  ValueNodes value_nodes;
52  // optional parameters
53  synfig::Time time;
54  synfig::Real origin;
55 public:
57  static ParamVocab get_param_vocab();
58  static bool is_candidate(const ParamList &x);
59  virtual bool set_param(const synfig::String& name, const Param &);
60  virtual bool is_ready()const;
61  virtual void prepare();
63 };
64 
65 }; // END of namespace action
66 }; // END of namespace studio
67 
68 /* === E N D =============================================================== */
69 
70 #endif