listBoxStyle.h (248B)
1 #pragma once 2 3 #include "uiObjectStyle.h" 4 5 namespace genericUI 6 { 7 class ListBoxStyle : public UiObjectStyle 8 { 9 public: 10 explicit ListBoxStyle(Editor& _editor) : UiObjectStyle(_editor) {} 11 12 public: 13 void apply(juce::ListBox& _target) const; 14 }; 15 }