aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ViewStyle.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2007-07-12 12:59:47 +0000
committernyamatongwe <devnull@localhost>2007-07-12 12:59:47 +0000
commitb6c5e2f5a69fca63fcdd7a2ded850299e36124b7 (patch)
tree789b7e855e141f8c87557a365716bec4d9f71078 /src/ViewStyle.h
parent3839c03ad51809d5a7bbe1e8f57632f831d953d5 (diff)
downloadscintilla-mirror-b6c5e2f5a69fca63fcdd7a2ded850299e36124b7.tar.gz
Modification allows indentation guides to appear on lines that are
empty.
Diffstat (limited to 'src/ViewStyle.h')
-rw-r--r--src/ViewStyle.h4
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;