2020-06-13 16:52:16 +02:00
|
|
|
//
|
|
|
|
// Created by versustune on 13.06.20.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef VENO_SIDEBAR_H
|
|
|
|
#define VENO_SIDEBAR_H
|
|
|
|
|
|
|
|
#include "JuceHeader.h"
|
|
|
|
#include "../../Components/BaseComponent.h"
|
2020-06-14 21:14:28 +02:00
|
|
|
#include "../../Components/LCD/SidebarLCD.h"
|
|
|
|
#include "SidebarMixer.h"
|
|
|
|
#include "../../Components/Config/VenoConfigButton.h"
|
2020-06-13 16:52:16 +02:00
|
|
|
|
|
|
|
class Sidebar : public BaseComponent
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
public:
|
2020-06-14 21:14:28 +02:00
|
|
|
Sidebar (const std::string& processId);
|
|
|
|
~Sidebar () override;
|
|
|
|
void resized () override;
|
|
|
|
void paint (Graphics& g) override;
|
2020-06-13 16:52:16 +02:00
|
|
|
protected:
|
2020-06-14 21:14:28 +02:00
|
|
|
std::unique_ptr<SidebarLCD> m_lcd;
|
|
|
|
std::unique_ptr<SidebarMixer> m_mixer;
|
|
|
|
std::unique_ptr<VenoConfigButton> m_configButton;
|
2020-06-13 16:52:16 +02:00
|
|
|
};
|
|
|
|
#endif //VENO_SIDEBAR_H
|