diff options
author | nyamatongwe <unknown> | 2009-09-03 00:41:00 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-09-03 00:41:00 +0000 |
commit | d9b50ef1a69897f0465df61ab4592ee3e40db926 (patch) | |
tree | 3bac05d1b7e2b0f676a9b79659a853c7f0d14f3a /include | |
parent | 8e303fc5005cee63b4f29cd5508f236f9ad16878 (diff) | |
download | scintilla-mirror-d9b50ef1a69897f0465df61ab4592ee3e40db926.tar.gz |
Added white space mark size setting from Enrico Tröger.
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 e20935d02..16d2d6910 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -254,6 +254,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_INDICGETUNDER 2511 #define SCI_SETWHITESPACEFORE 2084 #define SCI_SETWHITESPACEBACK 2085 +#define SCI_SETWHITESPACESIZE 2086 +#define SCI_GETWHITESPACESIZE 2087 #define SCI_SETSTYLEBITS 2090 #define SCI_GETSTYLEBITS 2091 #define SCI_SETLINESTATE 2092 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index ee7ba0ba1..0b31c8d5b 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -571,6 +571,12 @@ fun void SetWhitespaceFore=2084(bool useSetting, colour fore) # Set the background colour of all whitespace and whether to use this setting. fun void SetWhitespaceBack=2085(bool useSetting, colour back) +# Set the size of the dots used to mark space characters. +fun void SetWhitespaceSize=2086(int size,) + +# Get the size of the dots used to mark space characters. +fun void GetWhitespaceSize=2087(,) + # Divide each styling byte into lexical class bits (default: 5) and indicator # bits (default: 3). If a lexer requires more than 32 lexical states, then this # is used to expand the possible states. |