00001
00021
00022
00023
00024
00025 #ifndef __SYNFIG_APP_ACTION_KEYFRAMEWAYPOINTSET_H
00026 #define __SYNFIG_APP_ACTION_KEYFRAMESET_H
00027
00028
00029
00030 #include <synfigapp/action.h>
00031 #include <synfig/keyframe.h>
00032 #include <synfig/waypoint.h>
00033
00034
00035
00036
00037
00038
00039
00040 namespace synfigapp {
00041
00042 class Instance;
00043
00044 namespace Action {
00045
00046 class KeyframeWaypointSet :
00047 public Super
00048 {
00049 private:
00050
00051 synfig::Keyframe keyframe;
00052 synfig::Waypoint::Model waypoint_model;
00053
00054
00055 void process_value_desc(const synfigapp::ValueDesc& value_desc);
00056
00057 public:
00058
00059 KeyframeWaypointSet();
00060
00061 static ParamVocab get_param_vocab();
00062 static bool is_candidate(const ParamList &x);
00063
00064 virtual bool set_param(const synfig::String& name, const Param &);
00065 virtual bool is_ready()const;
00066
00067 virtual void prepare();
00068
00069 ACTION_MODULE_EXT
00070 };
00071
00072 };
00073 };
00074
00075
00076
00077 #endif