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 /src/ViewStyle.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 '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; |