1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Improved AudioProcessorValueTreeState documentation

This commit is contained in:
tpoole 2017-01-10 13:03:13 +00:00
parent 83a4f74b1f
commit 0d7a77d8ee

View file

@ -33,14 +33,15 @@
It has its own internal class of parameter object which are linked to values
within its ValueTree, and which are each identified by a string ID.
To use: Create a AudioProcessorValueTreeState, and give it some parameters
using createParameter().
You can get access to the underlying ValueTree object via the state member variable,
so you can add extra properties to it as necessary.
It also provides some utility child classes for connecting parameters directly to
GUI controls like sliders.
To use:
1) Create an AudioProcessorValueTreeState, and give it some parameters using createParameter().
2) Initialise the state member variable with a type name.
*/
class JUCE_API AudioProcessorValueTreeState : private Timer,
private ValueTree::Listener