diff options
author | Neil <nyamatongwe@gmail.com> | 2021-03-29 08:25:51 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-03-29 08:25:51 +1100 |
commit | ab70e1041cb40c9d807a18ca7abb5c000adf2fdf (patch) | |
tree | 709d60718e9cf33924a625f82ff7999494027f6f /src/Platform.h | |
parent | 508d037ed3389c5678addebefb62485ebfc10bb7 (diff) | |
download | scintilla-mirror-ab70e1041cb40c9d807a18ca7abb5c000adf2fdf.tar.gz |
Add SCI_SETELEMENTCOLOUR and related APIs to change colours of visible elements.
Implement SC_ELEMENT_LIST* to change colours of autocompletion lists.
Diffstat (limited to 'src/Platform.h')
-rw-r--r-- | src/Platform.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Platform.h b/src/Platform.h index 98e6440aa..ffe52446c 100644 --- a/src/Platform.h +++ b/src/Platform.h @@ -304,6 +304,10 @@ public: }; struct ListOptions { + std::optional<ColourAlpha> fore; + std::optional<ColourAlpha> back; + std::optional<ColourAlpha> foreSelected; + std::optional<ColourAlpha> backSelected; }; class ListBox : public Window { |