diff options
| author | nyamatongwe <devnull@localhost> | 2011-04-22 11:07:17 +1000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2011-04-22 11:07:17 +1000 |
| commit | e904ecce4b1fc41ec71ed600669c5d4f96eeffec (patch) | |
| tree | 3cb346c9946924db50e7a820a20b25ccbe4c9c31 /include | |
| parent | bac0e25db6d1ec83796a659eef9594ec7921c560 (diff) | |
| download | scintilla-mirror-e904ecce4b1fc41ec71ed600669c5d4f96eeffec.tar.gz | |
INDIC_ROUNDBOX can set alpha of outline. Feature #3290434.
From Marko Njezic.
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 2 | ||||
| -rw-r--r-- | include/Scintilla.iface | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 6cb9b4b81..0405fe844 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -709,6 +709,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_GETKEYSUNICODE 2522 #define SCI_INDICSETALPHA 2523 #define SCI_INDICGETALPHA 2524 +#define SCI_INDICSETOUTLINEALPHA 2558 +#define SCI_INDICGETOUTLINEALPHA 2559 #define SCI_SETEXTRAASCENT 2525 #define SCI_GETEXTRAASCENT 2526 #define SCI_SETEXTRADESCENT 2527 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 9ff8e3feb..ef2bac944 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1890,6 +1890,12 @@ set void IndicSetAlpha=2523(int indicator, int alpha) # Get the alpha fill colour of the given indicator. get int IndicGetAlpha=2524(int indicator,) +# Set the alpha outline colour of the given indicator. +set void IndicSetOutlineAlpha=2558(int indicator, int alpha) + +# Get the alpha outline colour of the given indicator. +get int IndicGetOutlineAlpha=2559(int indicator,) + # Set extra ascent for each line set void SetExtraAscent=2525(int extraAscent,) |
