From 2f6691a303d02517b6267524f2d97d38b3bd0a9d Mon Sep 17 00:00:00 2001 From: naught101 Date: Fri, 24 May 2019 15:20:07 +1000 Subject: [PATCH] Add docs for editParameter and setParameterValue --- distrho/DistrhoUI.hpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/distrho/DistrhoUI.hpp b/distrho/DistrhoUI.hpp index 0fa45b20..2ea52cb6 100644 --- a/distrho/DistrhoUI.hpp +++ b/distrho/DistrhoUI.hpp @@ -82,13 +82,17 @@ public: /** editParameter. - @TODO Document this. + + Touch/pressed-down event. + Lets the host know the user is tweaking a parameter. + Required in some hosts to record automation. */ void editParameter(uint32_t index, bool started); /** setParameterValue. - @TODO Document this. + + Change a parameter value in the Plugin. */ void setParameterValue(uint32_t index, float value);