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 }