mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 05:50:46 +02:00
Initial Commit
This commit is contained in:
commit
73110bbde2
20 changed files with 2600 additions and 0 deletions
43
plugin/Source/PluginEditor.h
Normal file
43
plugin/Source/PluginEditor.h
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
#pragma once
|
||||
|
||||
#include <JuceHeader.h>
|
||||
#include "PluginProcessor.h"
|
||||
#include "Boxes.h"
|
||||
|
||||
//==============================================================================
|
||||
class WavetableAudioProcessorEditor : public gin::ProcessorEditor
|
||||
{
|
||||
public:
|
||||
WavetableAudioProcessorEditor (WavetableAudioProcessor&);
|
||||
~WavetableAudioProcessorEditor() override;
|
||||
|
||||
//==============================================================================
|
||||
void paint (Graphics&) override;
|
||||
void resized() override;
|
||||
|
||||
private:
|
||||
WavetableAudioProcessor& proc;
|
||||
|
||||
gin::ModulationOverview modOverview { proc.modMatrix };
|
||||
|
||||
gin::ControlHeader commonHeader { "Common" };
|
||||
gin::ControlHeader unisonHeader { "Unison" };
|
||||
|
||||
CommonBox common { *this, proc };
|
||||
|
||||
gin::ControlHeader oscHeaders = { "Oscillators" };
|
||||
OscillatorBox oscillators = { *this, proc };
|
||||
|
||||
gin::ControlHeader ampFiltersHeader { "Filter / ADSR" };
|
||||
FilterAmpBox ampFilters { *this, proc };
|
||||
|
||||
gin::ControlHeader modulationHeader { "Modulation" };
|
||||
ModulationBox modulation { *this, proc };
|
||||
|
||||
gin::ControlHeader effectsHeader { "Effects" };
|
||||
EffectsBox effects { *this, proc };
|
||||
|
||||
gin::SynthesiserUsage usage { proc };
|
||||
|
||||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (WavetableAudioProcessorEditor)
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue