textEditorStyle.h (299B)
1 #pragma once 2 3 #include "uiObjectStyle.h" 4 5 namespace genericUI 6 { 7 class TextEditorStyle : public UiObjectStyle 8 { 9 public: 10 explicit TextEditorStyle(Editor& _editor) : UiObjectStyle(_editor) {} 11 12 juce::Font getPopupMenuFont() override; 13 public: 14 void apply(juce::TextEditor& _target) const; 15 }; 16 }