00001
00022
00023
00024
00025
00026 #ifndef __SYNFIG_APP_ACTION_VALUEDESCBLINELINK_H
00027 #define __SYNFIG_APP_ACTION_VALUEDESCBLINELINK_H
00028
00029
00030
00031 #include <synfigapp/action.h>
00032 #include <synfigapp/value_desc.h>
00033 #include <synfig/valuenode_dynamiclist.h>
00034 #include <list>
00035
00036
00037
00038
00039
00040
00041
00042 namespace synfigapp {
00043
00044 namespace Action {
00045
00046 class ValueDescBLineLink :
00047 public Super
00048 {
00049 private:
00050
00051 ValueDesc value_desc;
00052 std::list<ValueDesc> value_desc_list;
00053 synfig::ValueNode::Handle link_value_node;
00054 synfig::Time time;
00055 synfig::Real origin;
00056 int index;
00057 public:
00058
00059 ValueDescBLineLink();
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