Enable Parameter Description for Linkable Value Nodes using ParamDesc class.
[synfig.git] / synfig-core / src / synfig / valuenode_repeat_gradient.cpp
index c9ad14a..85be66d 100644 (file)
@@ -242,3 +242,46 @@ ValueNode_Repeat_Gradient::check_type(ValueBase::Type type)
 {
        return type==ValueBase::TYPE_GRADIENT;
 }
+
+LinkableValueNode::Vocab
+ValueNode_Repeat_Gradient::get_param_vocab()const
+{
+       LinkableValueNode::Vocab ret;
+
+       ret.push_back(ParamDesc(ValueBase(),"gradient")
+               .set_local_name(_("Gradient"))
+               .set_description(_("The source gradient to repeat"))
+       );
+
+       ret.push_back(ParamDesc(ValueBase(),"count")
+               .set_local_name(_("Count"))
+               .set_description(_("The number of repetition of the gradient"))
+       );
+
+       ret.push_back(ParamDesc(ValueBase(),"width")
+               .set_local_name(_("Width"))
+               .set_description(_("Specifies how much biased is the source gradeint in the repetition [0,1]"))
+       );
+
+       ret.push_back(ParamDesc(ValueBase(),"specify_start")
+               .set_local_name(_("Specify Start"))
+               .set_description(_("When checked, 'Start Color' is used as the start of the resulting gradient"))
+       );
+
+       ret.push_back(ParamDesc(ValueBase(),"specify_end")
+               .set_local_name(_("Specify End"))
+               .set_description(_("When checked, 'End Color' is used as the start of the resulting gradient"))
+       );
+
+       ret.push_back(ParamDesc(ValueBase(),"start_color")
+               .set_local_name(_("Start Color"))
+               .set_description(_("Used as the start of the resulting gradient"))
+       );
+
+       ret.push_back(ParamDesc(ValueBase(),"end_color")
+               .set_local_name(_("End Color"))
+               .set_description(_("Used as the end of the resulting gradient"))
+       );
+
+       return ret;
+}