diff options
author | nyamatongwe <devnull@localhost> | 2000-06-21 02:59:25 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-06-21 02:59:25 +0000 |
commit | 6d3878dca546f21822b087d70bea23db9437c0a9 (patch) | |
tree | dce2610a6c578021e13c36d3e4e2c9f4a2eb6dfc /include/Scintilla.h | |
parent | 507a9f0685923e0b06597f717daa3b362db1b6ef (diff) | |
download | scintilla-mirror-6d3878dca546f21822b087d70bea23db9437c0a9.tar.gz |
Added indentation guide API.
View whitespace has setting to only see outside indentation.
Indentation guide highlight.
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 7e31d5db1..9f42fef0f 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -51,6 +51,10 @@ void Scintilla_RegisterClasses(HINSTANCE hInstance); #define SC_UNDOCOLLECT_NONE 0 #define SC_UNDOCOLLECT_AUTOSTART 1 +#define SCWS_INVISIBLE 0 +#define SCWS_VISIBLEALWAYS 1 +#define SCWS_VISIBLEAFTERINDENT 2 + #define SCI_GETVIEWWS SCI_START + 20 #define SCI_SETVIEWWS SCI_START + 21 #define SCI_GOTOLINE SCI_START + 24 @@ -120,6 +124,7 @@ void Scintilla_RegisterClasses(HINSTANCE hInstance); #define STYLE_BRACELIGHT 34 #define STYLE_BRACEBAD 35 #define STYLE_CONTROLCHAR 36 +#define STYLE_INDENTGUIDE 37 #define STYLE_MAX 127 #define SC_CHARSET_ANSI 0 @@ -217,6 +222,10 @@ void Scintilla_RegisterClasses(HINSTANCE hInstance); #define SCI_SETHSCROLLBAR SCI_START + 130 #define SCI_GETHSCROLLBAR SCI_START + 131 +#define SCI_SETINDENTATIONGUIDES SCI_START + 132 +#define SCI_GETINDENTATIONGUIDES SCI_START + 133 +#define SCI_SETHIGHLIGHTGUIDE SCI_START + 134 +#define SCI_GETHIGHLIGHTGUIDE SCI_START + 135 #define SCI_CALLTIPSHOW SCI_START + 200 #define SCI_CALLTIPCANCEL SCI_START + 201 |