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 /include/Scintilla.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 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index dd1dd78e4..1ea5d3fa1 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -267,6 +267,15 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_STYLEGETWEIGHT 2064 #define SCI_STYLESETCHARACTERSET 2066 #define SCI_STYLESETHOTSPOT 2409 +#define SC_ELEMENT_LIST 0 +#define SC_ELEMENT_LIST_BACK 1 +#define SC_ELEMENT_LIST_SELECTED 2 +#define SC_ELEMENT_LIST_SELECTED_BACK 3 +#define SCI_SETELEMENTCOLOUR 2753 +#define SCI_GETELEMENTCOLOUR 2754 +#define SCI_RESETELEMENTCOLOUR 2755 +#define SCI_GETELEMENTISSET 2756 +#define SCI_GETELEMENTALLOWSTRANSLUCENT 2757 #define SCI_SETSELFORE 2067 #define SCI_SETSELBACK 2068 #define SCI_GETSELALPHA 2477 |