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