/*
==============================================================================
This is an automatically generated GUI class created by the Projucer!
Be careful when adding custom code to these files, as only the code within
the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded
and re-saved.
Created with Projucer version: 5.4.4
------------------------------------------------------------------------------
The Projucer is part of the JUCE library.
Copyright (c) 2017 - ROLI Ltd.
==============================================================================
*/
#pragma once
//[Headers] -- You can add your own extra header files here --
#include "../JuceLibraryCode/JuceHeader.h"
#include "GuiAttachment.h"
#include "GuiMix.h"
#include "GuiSpan.h"
#include "GuiReverb.h"
#include "GuiDelay.h"
#include "GuiChorus.h"
#include "GuiMetronom.h"
#include "MolossLookNFeel.h"
class GuiLFO;
class GuiLFOMod;
class SynthParameters;
//[/Headers]
//==============================================================================
/**
//[Comments]
An auto-generated component, created by the Projucer.
Describe your class and how it works here!
//[/Comments]
*/
class GuiSynth : public Component
{
public:
//==============================================================================
GuiSynth ();
~GuiSynth();
//==============================================================================
//[UserMethods] -- You can add your own custom methods in this section.
void setSynthParameters(SynthParameters* paramSynth);
//[/UserMethods]
void paint (Graphics& g) override;
void resized() override;
private:
//[UserVariables] -- You can add your own custom variables in this section.
std::unique_ptr<MolossLookNFeel> molossCyanLNF;
std::unique_ptr <DrawableImage> backGroundImage;
//[/UserVariables]
//==============================================================================
std::unique_ptr<GUIChorus> groupChorus;
std::unique_ptr<GUIMix> groupMix;
std::unique_ptr<GUIReverb> groupReverb;
std::unique_ptr<GuiLFOMod> groupLFOBalanceMod;
std::unique_ptr<GuiLFO> groupLFOBalance;
std::unique_ptr<GUISpan> groupSpan;
std::unique_ptr<GUIMetronom> groupMetronom;
std::unique_ptr<GUIDelay> groupDelay;
//==============================================================================
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (GuiSynth)
};
//[EndFile] You can add extra defines here...
//[/EndFile]