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

listBoxStyle.cpp (341B)


      1 #include "listBoxStyle.h"
      2 
      3 namespace genericUI
      4 {
      5 	void ListBoxStyle::apply(juce::ListBox& _target) const
      6 	{
      7 		_target.setColour(juce::ListBox::ColourIds::backgroundColourId, m_bgColor);
      8 		_target.setColour(juce::ListBox::ColourIds::outlineColourId, m_outlineColor);
      9 		_target.setColour(juce::ListBox::ColourIds::textColourId, m_color);
     10 	}
     11 }