mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 05:50:46 +02:00
Add tabs to param boxes
This commit is contained in:
parent
5f678a3196
commit
8ce8ff8336
4 changed files with 34 additions and 5 deletions
|
|
@ -146,6 +146,18 @@ public:
|
|||
JUCE_DECLARE_NON_COPYABLE (GlobalParams)
|
||||
};
|
||||
|
||||
// UI Params
|
||||
struct UIParams
|
||||
{
|
||||
UIParams() = default;
|
||||
|
||||
gin::Parameter::Ptr activeLFO, activeENV;
|
||||
|
||||
void setup (WavetableAudioProcessor& p);
|
||||
|
||||
JUCE_DECLARE_NON_COPYABLE (UIParams)
|
||||
};
|
||||
|
||||
struct GateParams
|
||||
{
|
||||
GateParams() = default;
|
||||
|
|
@ -227,6 +239,7 @@ public:
|
|||
DistortionParams distortionParams;
|
||||
DelayParams delayParams;
|
||||
ReverbParams reverbParams;
|
||||
UIParams uiParams;
|
||||
|
||||
//==============================================================================
|
||||
gin::GateEffect gate;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue