synfig-studio  1.0.3
waypointsetsmart.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_APP_ACTION_WAYPOINTSETSMART_H
26 #define __SYNFIG_APP_ACTION_WAYPOINTSETSMART_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #include <synfigapp/action.h>
31 #include <synfigapp/value_desc.h>
32 #include <synfig/valuenodes/valuenode_animated.h>
33 
34 #include <list>
35 #include <set>
36 
37 /* === M A C R O S ========================================================= */
38 
39 /* === T Y P E D E F S ===================================================== */
40 
41 /* === C L A S S E S & S T R U C T S ======================================= */
42 
43 namespace synfigapp {
44 
45 namespace Action {
46 
48  public Super
49 {
50 private:
51 
53  synfig::Waypoint waypoint;
54  //synfig::WaypointModel waypoint_model;
55  bool time_set;
56 
57  void calc_waypoint();
58  void enclose_waypoint(const synfig::Waypoint& waypoint);
59 
60  std::set<synfig::Time> times;
61 
62 public:
63 
65 
66  static ParamVocab get_param_vocab();
67  static bool is_candidate(const ParamList &x);
68 
69  virtual bool set_param(const synfig::String& name, const Param &);
70  virtual bool is_ready()const;
71 
72  virtual void prepare();
73 
75 };
76 
77 }; // END of namespace action
78 }; // END of namespace studio
79 
80 /* === E N D =============================================================== */
81 
82 #endif