aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.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 /include/Scintilla.h
parent63c9ec2b810f77f429972ab272f5d16404bc0625 (diff)
downloadscintilla-mirror-3307089950230f9b4fd52048e27d01280f81c247.tar.gz
Line layout cache feature added.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r--include/Scintilla.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index e485052d4..99b3ee0b1 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -353,6 +353,12 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SC_WRAP_WORD 1
#define SCI_SETWRAPMODE 2268
#define SCI_GETWRAPMODE 2269
+#define SC_CACHE_NONE 0
+#define SC_CACHE_CARET 1
+#define SC_CACHE_PAGE 2
+#define SC_CACHE_DOCUMENT 3
+#define SCI_SETLAYOUTCACHE 2272
+#define SCI_GETLAYOUTCACHE 2273
#define SCI_LINEDOWN 2300
#define SCI_LINEDOWNEXTEND 2301
#define SCI_LINEUP 2302