X-Git-Url: https://git.pterodactylus.net/?p=synfig.git;a=blobdiff_plain;f=synfig-core%2Fsrc%2Fsynfig%2Fvaluenode_composite.cpp;h=1981a82c60ec11ff6115fb77261ab961b8d83bf8;hp=dfde2e98dda41ad18d7d37a7bdc9d7a8427b9a8d;hb=8eed22b9657ac7cb1881eab5c7b5c3d1f0c69468;hpb=72fee47109d8d1f6e4c5043ab60200e61357636a diff --git a/synfig-core/src/synfig/valuenode_composite.cpp b/synfig-core/src/synfig/valuenode_composite.cpp index dfde2e9..1981a82 100644 --- a/synfig-core/src/synfig/valuenode_composite.cpp +++ b/synfig-core/src/synfig/valuenode_composite.cpp @@ -444,3 +444,89 @@ ValueNode_Composite::check_type(ValueBase::Type type) type==ValueBase::TYPE_COLOR || type==ValueBase::TYPE_BLINEPOINT; } + +LinkableValueNode::Vocab +ValueNode_Composite::get_param_vocab()const +{ + LinkableValueNode::Vocab ret; + + switch(get_type()) + { + case ValueBase::TYPE_COLOR: + ret.push_back(ParamDesc(ValueBase(),"red") + .set_local_name(_("Red")) + .set_description(_("The red component of the color")) + ); + ret.push_back(ParamDesc(ValueBase(),"green") + .set_local_name(_("Green")) + .set_description(_("The green component of the color")) + ); + ret.push_back(ParamDesc(ValueBase(),"blue") + .set_local_name(_("Blue")) + .set_description(_("The blue component of the color")) + ); + ret.push_back(ParamDesc(ValueBase(),"alpha") + .set_local_name(_("Alpha")) + .set_description(_("The alpha of the color")) + ); + return ret; + case ValueBase::TYPE_SEGMENT: + ret.push_back(ParamDesc(ValueBase(),"p1") + .set_local_name(_("Vertex 1")) + .set_description(_("The first vertex of the segment")) + ); + ret.push_back(ParamDesc(ValueBase(),"t1") + .set_local_name(_("Tangent 1")) + .set_description(_("The first tangent of the segment")) + ); + ret.push_back(ParamDesc(ValueBase(),"p2") + .set_local_name(_("Vertex 2")) + .set_description(_("The second vertex of the segment")) + ); + ret.push_back(ParamDesc(ValueBase(),"t2") + .set_local_name(_("Tangent 2")) + .set_description(_("The second tangent of the segment")) + ); + return ret; + case ValueBase::TYPE_VECTOR: + ret.push_back(ParamDesc(ValueBase(),"x") + .set_local_name(_("X-Axis")) + .set_description(_("The X-Axis component of the vector")) + ); + ret.push_back(ParamDesc(ValueBase(),"y") + .set_local_name(_("Y-Axis")) + .set_description(_("The Y-Axis component of the vector")) + ); + return ret; + case ValueBase::TYPE_BLINEPOINT: + ret.push_back(ParamDesc(ValueBase(),"point") + .set_local_name(_("Vertex")) + .set_description(_("The vertex of the BLine Point")) + ); + ret.push_back(ParamDesc(ValueBase(),"width") + .set_local_name(_("Width")) + .set_description(_("The width of the BLine Point")) + ); + ret.push_back(ParamDesc(ValueBase(),"origin") + .set_local_name(_("Origin")) + .set_description(_("Defines the Off and On position relative to neighbours")) + ); + ret.push_back(ParamDesc(ValueBase(),"split") + .set_local_name(_("Split")) + .set_description(_("When checked, tangents are independent")) + ); + ret.push_back(ParamDesc(ValueBase(),"t1") + .set_local_name(_("Tangent 1")) + .set_description(_("The first tangent of the BLine Point")) + ); + ret.push_back(ParamDesc(ValueBase(),"t2") + .set_local_name(_("Tangent 2")) + .set_description(_("The second tangent of the BLine Point")) + ); + return ret; + default: + break; + } + + return ret; +}