diff options
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 | 
