X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Fsrc%2Fsynfig%2Fvaluenode_join.cpp;h=bc010310f73b4866366f3ce9824be4fc4750a631;hb=d4cb326591ea23f82d341eb368b3d183b46f56c7;hp=2c085ba57fa7e6058197d269b886f6bb88165a98;hpb=c11c4966980ed301f40b3dcc24e4fbec525f93e3;p=synfig.git diff --git a/synfig-core/src/synfig/valuenode_join.cpp b/synfig-core/src/synfig/valuenode_join.cpp index 2c085ba..bc01031 100644 --- a/synfig-core/src/synfig/valuenode_join.cpp +++ b/synfig-core/src/synfig/valuenode_join.cpp @@ -225,3 +225,31 @@ ValueNode_Join::check_type(ValueBase::Type type) return type==ValueBase::TYPE_STRING; } + +LinkableValueNode::Vocab +ValueNode_Join::get_children_vocab_vfunc()const +{ + LinkableValueNode::Vocab ret; + + ret.push_back(ParamDesc(ValueBase(),"strings") + .set_local_name(_("Strings")) + .set_description(_("The List of strings to join")) + ); + + ret.push_back(ParamDesc(ValueBase(),"before") + .set_local_name(_("Before")) + .set_description(_("The string to place before the joined strings")) + ); + + ret.push_back(ParamDesc(ValueBase(),"separator") + .set_local_name(_("Separator")) + .set_description(_("The string to place between each string joined")) + ); + + ret.push_back(ParamDesc(ValueBase(),"after") + .set_local_name(_("After")) + .set_description(_("The string to place after the joined strings")) + ); + + return ret; +}