diff options
author | Neil <nyamatongwe@gmail.com> | 2021-05-10 14:33:37 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-05-10 14:33:37 +1000 |
commit | 50f70a8bb42fc982350731da104b042ae75b1df2 (patch) | |
tree | acf6c9406d410af6a408faec403542da158f51b2 /src/Editor.h | |
parent | 843ce05440fcd4ba7d19f8b612ab526c88296ad0 (diff) | |
download | scintilla-mirror-50f70a8bb42fc982350731da104b042ae75b1df2.tar.gz |
Add elementBaseColours to hold default or system derived colours.
Editor::UpdateBaseElements can be overridden by platform layers to set base
colours although they should also do this when they detect changes in system
settings.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h index ae3f0ef5a..42944929b 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -526,6 +526,7 @@ protected: // ScintillaBase subclass needs access to much of Editor virtual void SetMouseCapture(bool on) = 0; virtual bool HaveMouseCapture() = 0; void SetFocusState(bool focusState); + virtual void UpdateBaseElements(); Sci::Position PositionAfterArea(PRectangle rcArea) const; void StyleToPositionInView(Sci::Position pos); |