gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

mqLcdText.h (357B)


      1 #pragma once
      2 
      3 #include "mqLcdBase.h"
      4 
      5 namespace juce
      6 {
      7 	class Label;
      8 }
      9 
     10 class MqLcdText final : public MqLcdBase
     11 {
     12 public:
     13 	MqLcdText(juce::Label& _lineA, juce::Label& _lineB);
     14 
     15 	void setText(const std::array<uint8_t,40>& _text) override;
     16 	void setCgRam(std::array<uint8_t, 64>& _data) override {}
     17 
     18 private:
     19 	juce::Label& m_lineA;
     20 	juce::Label& m_lineB;
     21 };