commit 507e505ed98aa14b34d45b0af0cff083be3eaa4d
parent a0dedf1fc5510aef2660e8e40b0cb96878a9dd5b
Author: Johannes Lorenz <[email protected]>
Date: Sat, 15 Oct 2016 15:38:41 +0200
Add tooltip text in EQ and Phaser.
Diffstat:
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/Effects/EQ.cpp b/src/Effects/EQ.cpp
@@ -50,12 +50,12 @@ static rtosc::Ports filterports {
rEQ(2);
rEnd},
{"Pq::i", rProp(parameter) rMap(min, 0) rMap(max, 127)
- rShort("q"), 0,
+ rShort("q") rDoc("Resonance/Bandwidth"), 0,
rBegin;
rEQ(3);
rEnd},
{"Pstages::i", rProp(parameter) rMap(min, 0) rMap(max, 4)
- rShort("stages"), 0,
+ rShort("stages") rDoc("Additional filter stages"), 0,
rBegin;
rEQ(4);
rEnd},
diff --git a/src/Effects/Phaser.cpp b/src/Effects/Phaser.cpp
@@ -43,22 +43,22 @@ rtosc::Ports Phaser::ports = {
d.reply(d.loc, "i", o->Ppreset);
rEnd},
//Pvolume/Ppanning are common
- rEffPar(lfo.Pfreq, 2, rShort("freq"), ""),
- rEffPar(lfo.Prandomness, 3, rShort("rnd."), ""),
+ rEffPar(lfo.Pfreq, 2, rShort("freq"), "LFO frequency"),
+ rEffPar(lfo.Prandomness, 3, rShort("rnd."), "LFO randomness"),
rEffPar(lfo.PLFOtype, 4, rShort("type"),
rOptions(sine, tri), "lfo shape"),
- rEffPar(lfo.Pstereo, 5, rShort("stereo"), ""),
- rEffPar(Pdepth, 6, rShort("depth"), ""),
- rEffPar(Pfb, 7, rShort("fb"), ""),
+ rEffPar(lfo.Pstereo, 5, rShort("stereo"), "Left/right channel phase shift"),
+ rEffPar(Pdepth, 6, rShort("depth"), "LFP depth"),
+ rEffPar(Pfb, 7, rShort("fb"), "Feedback"),
rEffPar(Pstages, 8, rLinear(1,12), rShort("stages"), ""),
- rEffPar(Plrcross, 9, rShort("cross"), ""),
+ rEffPar(Plrcross, 9, rShort("cross"), "Channel routing"),
rEffPar(Poffset, 9, rShort("off"), "Offset"),
- rEffParTF(Poutsub, 10, rShort("sub"), ""),
+ rEffParTF(Poutsub, 10, rShort("sub"), "Invert output"),
rEffPar(Pphase, 11, rShort("phase"), ""),
rEffPar(Pwidth, 11, rShort("width"), ""),
- rEffParTF(Phyper, 12, rShort("hyp."), ""),
+ rEffParTF(Phyper, 12, rShort("hyp."), "Square the LFO"),
rEffPar(Pdistortion, 13, rShort("distort"), "Distortion"),
- rEffParTF(Panalog, 14, rShort("analog"), ""),
+ rEffParTF(Panalog, 14, rShort("analog"), "Use analog phaser"),
};
#undef rBegin
#undef rEnd