00001
00022
00023
00024
00025
00026 #ifndef __SYNFIG_APP_ACTION_VALUEDESCLINK_H
00027 #define __SYNFIG_APP_ACTION_VALUEDESCLINK_H
00028
00029
00030
00031 #include <synfigapp/action.h>
00032 #include <synfigapp/value_desc.h>
00033 #include <list>
00034
00035
00036
00037
00038
00039
00040
00041 namespace synfigapp {
00042
00043 namespace Action {
00044
00045 class ValueDescLink :
00046 public Super
00047 {
00048 private:
00049
00050 std::list<ValueDesc> value_desc_list;
00051 synfig::ValueNode::Handle link_value_node;
00052 bool poison;
00053 int status_level;
00054 synfig::String status_message;
00055 synfig::Time time;
00056 public:
00057
00058 ValueDescLink();
00059
00060 static ParamVocab get_param_vocab();
00061 static bool is_candidate(const ParamList &x);
00062
00063 virtual bool set_param(const synfig::String& name, const Param &);
00064 virtual bool is_ready()const;
00065
00066 virtual void prepare();
00067
00068 ACTION_MODULE_EXT
00069 };
00070
00071 };
00072 };
00073
00074
00075
00076 #endif