reVeno/Source/Veno/GUI/Components/LCD/SidebarLCD.h
versustunez ac22ea5e75 - reformat to JUCE-Guidelines
- added Matrix => half working ;)
2020-06-13 16:52:16 +02:00

29 lines
611 B
C++

//
// Created by versustune on 11.06.20.
//
#ifndef VENO_SIDEBARLCD_H
#define VENO_SIDEBARLCD_H
#include "JuceHeader.h"
#include "../BaseComponent.h"
#include "Waveforms.h"
class SidebarLCD : public BaseComponent
{
private:
int m_innerX = 5;
int m_innerY = 5;
int m_width = m_innerX * 2;
public:
explicit SidebarLCD (const std::string& process_id);
~SidebarLCD ();
void resized () override;
void paint (Graphics& g) override;
protected:
void drawHeadline (Graphics& g);
void drawFooter (Graphics& g);
std::unique_ptr<Waveforms> waveform;
};
#endif //VENO_SIDEBARLCD_H