diff options
author | nyamatongwe <unknown> | 2007-04-23 02:26:06 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-04-23 02:26:06 +0000 |
commit | bde8aef4ff5e6bd93c3b2bbd8fd7de80bccbbdb8 (patch) | |
tree | 7799078040df57b7f5ce1072d768e476a7187041 /include | |
parent | 7baad7314df72e0c2f548482df1c288a2587d3cd (diff) | |
download | scintilla-mirror-bde8aef4ff5e6bd93c3b2bbd8fd7de80bccbbdb8.tar.gz |
Added setting to allow each indicator to be drawn either under or
over text.
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 74cc6c98e..e7730b68c 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -245,6 +245,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_INDICGETSTYLE 2081 #define SCI_INDICSETFORE 2082 #define SCI_INDICGETFORE 2083 +#define SCI_INDICSETUNDER 2510 +#define SCI_INDICGETUNDER 2511 #define SCI_SETWHITESPACEFORE 2084 #define SCI_SETWHITESPACEBACK 2085 #define SCI_SETSTYLEBITS 2090 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 0ccd578ea..85d45780e 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -554,6 +554,12 @@ set void IndicSetFore=2082(int indic, colour fore) # Retrieve the foreground colour of an indicator. get colour IndicGetFore=2083(int indic,) +# Set an indicator to draw under text or over(default). +set void IndicSetUnder=2510(int indic, bool under) + +# Retrieve whether indicator drawn under or over text. +get bool IndicGetUnder=2511(int indic,) + # Set the foreground colour of all whitespace and whether to use this setting. fun void SetWhitespaceFore=2084(bool useSetting, colour fore) |