diff options
author | nyamatongwe <unknown> | 2000-06-21 02:59:25 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-06-21 02:59:25 +0000 |
commit | e7729d12b8676528ab5bfecf58d586ac1fbafeb1 (patch) | |
tree | dce2610a6c578021e13c36d3e4e2c9f4a2eb6dfc /src/ViewStyle.h | |
parent | 37147e61367b4d73deae7dbd315c498cdd7c6198 (diff) | |
download | scintilla-mirror-e7729d12b8676528ab5bfecf58d586ac1fbafeb1.tar.gz |
Added indentation guide API.
View whitespace has setting to only see outside indentation.
Indentation guide highlight.
Diffstat (limited to 'src/ViewStyle.h')
-rw-r--r-- | src/ViewStyle.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ViewStyle.h b/src/ViewStyle.h index 4436e83ff..5660368ec 100644 --- a/src/ViewStyle.h +++ b/src/ViewStyle.h @@ -26,6 +26,7 @@ public: const char *Save(const char *name); }; +enum WhiteSpaceVisibility {wsInvisible=0, wsVisibleAlways=1, wsVisibleAfterIndent=2}; class ViewStyle { public: FontNames fontNames; @@ -52,7 +53,8 @@ public: MarginStyle ms[margins]; int fixedColumnWidth; int zoomLevel; - bool viewWhitespace; + WhiteSpaceVisibility viewWhitespace; + bool viewIndentationGuides; bool viewEOL; bool showMarkedLines; ColourPair caretcolour; |