aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ViewStyle.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-06-21 02:59:25 +0000
committernyamatongwe <unknown>2000-06-21 02:59:25 +0000
commite7729d12b8676528ab5bfecf58d586ac1fbafeb1 (patch)
treedce2610a6c578021e13c36d3e4e2c9f4a2eb6dfc /src/ViewStyle.h
parent37147e61367b4d73deae7dbd315c498cdd7c6198 (diff)
downloadscintilla-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.h4
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;