diff options
author | nyamatongwe <unknown> | 2007-07-12 12:59:47 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-07-12 12:59:47 +0000 |
commit | 79692af6c51bb115e4a8ddb657eda3d713152730 (patch) | |
tree | 789b7e855e141f8c87557a365716bec4d9f71078 /src/ViewStyle.h | |
parent | 06dbb936d37d3579305548e874bf993965ea198b (diff) | |
download | scintilla-mirror-79692af6c51bb115e4a8ddb657eda3d713152730.tar.gz |
Modification allows indentation guides to appear on lines that are
empty.
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 a41e5f452..2f2d52461 100644 --- a/src/ViewStyle.h +++ b/src/ViewStyle.h @@ -38,6 +38,8 @@ public: const char *Save(const char *name); }; +enum IndentView {ivNone, ivReal, ivLookForward, ivLookBoth}; + enum WhiteSpaceVisibility {wsInvisible=0, wsVisibleAlways=1, wsVisibleAfterIndent=2}; /** @@ -87,7 +89,7 @@ public: int fixedColumnWidth; int zoomLevel; WhiteSpaceVisibility viewWhitespace; - bool viewIndentationGuides; + IndentView viewIndentationGuides; bool viewEOL; bool showMarkedLines; ColourPair caretcolour; |