// // Created by versustune on 13.06.20. // #ifndef VENO_SIDEBAR_H #define VENO_SIDEBAR_H #include "JuceHeader.h" #include "../../Components/BaseComponent.h" #include "../../Components/LCD/SidebarLCD.h" #include "SidebarMixer.h" #include "../../Components/Config/VenoConfigButton.h" class Sidebar : public BaseComponent { private: public: Sidebar (const std::string& processId); ~Sidebar () override; void resized () override; void paint (Graphics& g) override; protected: std::unique_ptr m_lcd; std::unique_ptr m_mixer; std::unique_ptr m_configButton; }; #endif //VENO_SIDEBAR_H