aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-02-28 02:52:43 +0000
committernyamatongwe <devnull@localhost>2002-02-28 02:52:43 +0000
commit9a24b646f899734342a240964db61bb07ea41648 (patch)
treed242ef9e669d0f88c10b3651444a1e4f6e223a94 /include/Scintilla.iface
parentf25fa1fd49682efc273b07f63c85bf3f9dec4d8a (diff)
downloadscintilla-mirror-9a24b646f899734342a240964db61bb07ea41648.tar.gz
Line layout cache feature added.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index f791482af..62c8f59cf 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -921,6 +921,17 @@ set void SetWrapMode=2268(int mode,)
# Retrieve whether text is word wrapped
get int GetWrapMode=2269(,)
+val SC_CACHE_NONE=0
+val SC_CACHE_CARET=1
+val SC_CACHE_PAGE=2
+val SC_CACHE_DOCUMENT=3
+
+# Sets the degree of caching of layout information
+set void SetLayoutCache=2272(int mode,)
+
+# Retrieve the degree of caching of layout information
+get int GetLayoutCache=2273(,)
+
## Start of key messages
# Move caret down one line.
fun void LineDown=2300(,)