Use link_count from children vocabulary and return the stored vocabulary if already...
[synfig.git] / synfig-core / src / synfig / valuenode_sine.cpp
index 9aaaee2..17d8efc 100644 (file)
@@ -53,6 +53,8 @@ using namespace synfig;
 ValueNode_Sine::ValueNode_Sine(const ValueBase &value):
        LinkableValueNode(value.get_type())
 {
+       Vocab ret(get_children_vocab());
+       set_children_vocab(ret);
        switch(value.get_type())
        {
        case ValueBase::TYPE_REAL:
@@ -179,3 +181,24 @@ ValueNode_Sine::get_link_index_from_name(const String &name)const
 
        throw Exception::BadLinkName(name);
 }
+
+LinkableValueNode::Vocab
+ValueNode_Sine::get_children_vocab_vfunc()const
+{
+       if(children_vocab.size())
+               return children_vocab;
+
+       LinkableValueNode::Vocab ret;
+
+       ret.push_back(ParamDesc(ValueBase(),"angle")
+               .set_local_name(_("Angle"))
+               .set_description(_("The angle where the sine is calculated from"))
+       );
+
+       ret.push_back(ParamDesc(ValueBase(),"amp")
+               .set_local_name(_("Amplitude"))
+               .set_description(_("The value that multiplies the resulting sine"))
+       );
+
+       return ret;
+}