aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ViewStyle.h
diff options
context:
space:
mode:
authorjedailey <unknown>2016-11-14 12:54:25 +1100
committerjedailey <unknown>2016-11-14 12:54:25 +1100
commit3194268137ebe03b1fd8c0937f5879a94526d2b1 (patch)
tree29cd1ed2541f738e2f17447dbaaf0639337a8bb7 /src/ViewStyle.h
parent9372cae68afe9d5754f29a74988de61d108017c8 (diff)
downloadscintilla-mirror-3194268137ebe03b1fd8c0937f5879a94526d2b1.tar.gz
Added alternate appearance for visible tabs which looks like a horizontal line.
Diffstat (limited to 'src/ViewStyle.h')
-rw-r--r--src/ViewStyle.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ViewStyle.h b/src/ViewStyle.h
index 82c176c87..1a876f85e 100644
--- a/src/ViewStyle.h
+++ b/src/ViewStyle.h
@@ -55,6 +55,8 @@ enum IndentView {ivNone, ivReal, ivLookForward, ivLookBoth};
enum WhiteSpaceVisibility {wsInvisible=0, wsVisibleAlways=1, wsVisibleAfterIndent=2, wsVisibleOnlyInIndent=3};
+enum TabDrawMode {tdLongArrow=0, tdStrikeOut=1};
+
typedef std::map<FontSpecification, FontRealised *> FontMap;
enum WrapMode { eWrapNone, eWrapWord, eWrapChar, eWrapWhitespace };
@@ -133,6 +135,7 @@ public:
int textStart; ///< Starting x position of text within the view
int zoomLevel;
WhiteSpaceVisibility viewWhitespace;
+ TabDrawMode tabDrawMode;
int whitespaceSize;
IndentView viewIndentationGuides;
bool viewEOL;