aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-08-18 10:45:24 +0000
committernyamatongwe <unknown>2000-08-18 10:45:24 +0000
commit74537dd24ba7943e79652b06f4b752be2035bcea (patch)
treec5d0492dca4b04bf79e1ef367a7190df8472bc3f /doc/ScintillaDoc.html
parentd15b65e7fba53354b9a044ba5d8232d256b58d5e (diff)
downloadscintilla-mirror-74537dd24ba7943e79652b06f4b752be2035bcea.tar.gz
Added in most of Ferdinand Prantl's changes except for regular expression
search. Some bits not quite done as well.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 98a242f86..743838af0 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -103,6 +103,14 @@ SCI_GETSTYLEBITS
the SCI_CLEARDOCUMENTSTYLE can be used to clear all styling information and
reset the folding state.
</p>
+<pre>
+SCI_SETOVERTYPE
+SCI_GETOVERTYPE
+</pre>
+ <p>
+ SCI_GETOVERTYPE returns TRUE if overtyping is active otherwise
+ FALSE will be returned. Use SCI_GETOVERTYPE to set the overtype node.
+ </p>
<h3>
Standard commands
</h3>
@@ -970,6 +978,13 @@ SCN_CHARADDED(int charadded)
or auto completion list.
</p>
<pre>
+SCN_POSCHANGED(int newPos)
+</pre>
+ <p>
+ Fired when the user moves the cursor to a different position in the text.
+ Can be used by the container to cancel some time consuming thread.
+ </p>
+<pre>
SCN_SAVEPOINTREACHED(int issavepoint)
SCI_SETSAVEPOINT
</pre>