diff options
| author | Neil <nyamatongwe@gmail.com> | 2015-02-15 23:51:05 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2015-02-15 23:51:05 +1100 |
| commit | deef968ba5e09d5280030aa24251c77cc8b47736 (patch) | |
| tree | 8c8364337fab3f874b5180f61a5129b25e4a9a4e /include/Scintilla.iface | |
| parent | a5267eb10508943c36fa2655832778f555f899a2 (diff) | |
| download | scintilla-mirror-deef968ba5e09d5280030aa24251c77cc8b47736.tar.gz | |
Add SC_INDICFLAG_VALUEFORE and INDIC_TEXTFORE to allow a wide range of indicator
colours and to change the colour of text.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 4a405d9d3..c540639da 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -607,6 +607,7 @@ val INDIC_SQUIGGLEPIXMAP=13 val INDIC_COMPOSITIONTHICK=14 val INDIC_COMPOSITIONTHIN=15 val INDIC_FULLBOX=16 +val INDIC_TEXTFORE=17 val INDIC_IME=32 val INDIC_IME_MAX=35 val INDIC_MAX=35 @@ -646,6 +647,18 @@ set void IndicSetHoverFore=2682(int indic, colour fore) # Retrieve the foreground hover colour of an indicator. get colour IndicGetHoverFore=2683(int indic,) +val SC_INDICVALUEBIT=0x1000000 +val SC_INDICVALUEMASK=0xFFFFFF + +enu IndicFlag=SC_INDICFLAG_ +val SC_INDICFLAG_VALUEFORE=1 + +# Set the attributes of an indicator. +set void IndicSetFlags=2684(int indic, int flags) + +# Retrieve the attributes of an indicator. +get int IndicGetFlags=2685(int indic,) + # Set the foreground colour of all whitespace and whether to use this setting. fun void SetWhitespaceFore=2084(bool useSetting, colour fore) |
