aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-02-28 02:52:43 +0000
committernyamatongwe <unknown>2002-02-28 02:52:43 +0000
commit3307089950230f9b4fd52048e27d01280f81c247 (patch)
treed242ef9e669d0f88c10b3651444a1e4f6e223a94 /src/Document.h
parent63c9ec2b810f77f429972ab272f5d16404bc0625 (diff)
downloadscintilla-mirror-3307089950230f9b4fd52048e27d01280f81c247.tar.gz
Line layout cache feature added.
Diffstat (limited to 'src/Document.h')
-rw-r--r--src/Document.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h
index 0d90d4c00..8affe294c 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -85,6 +85,7 @@ private:
charClassification charClass[256];
char stylingMask;
int endStyled;
+ int styleClock;
int enteredCount;
int enteredReadOnlyCount;
@@ -195,6 +196,7 @@ public:
void SetStyles(int length, char *styles);
int GetEndStyled() { return endStyled; }
bool EnsureStyledTo(int pos);
+ int GetStyleClock() { return styleClock; }
int SetLineState(int line, int state) { return cb.SetLineState(line, state); }
int GetLineState(int line) { return cb.GetLineState(line); }