aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-05-11 01:25:28 +0000
committernyamatongwe <devnull@localhost>2003-05-11 01:25:28 +0000
commitadc33a661948e517e7d223ad8aa5fa5a45be3e6f (patch)
tree19c9a87dd4938abcfdff50a961d8cd8dd46a9e29 /include/Scintilla.iface
parentb4d2256f9ccf56efacbd84b3fbed1e846fb1853f (diff)
downloadscintilla-mirror-adc33a661948e517e7d223ad8aa5fa5a45be3e6f.tar.gz
Addition of CopyText, CopyRange, and LineCopy.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 94c181379..2c2c092e7 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1231,6 +1231,9 @@ fun void LineEndWrapExtend=2452(,)
fun void VCHomeWrap=2453(,)
fun void VCHomeWrapExtend=2454(,)
+# Copy the line containing the caret.
+fun void LineCopy=2455(,)
+
# Move the caret inside current view if it's not there already.
fun void MoveCaretInsideView=2401(,)
@@ -1449,6 +1452,12 @@ fun position PositionBefore=2417(position pos,)
# page into account. Maximum value returned is the last position in the document.
fun position PositionAfter=2418(position pos,)
+# Copy a range of text to the clipboard. Positions are clipped into the document.
+fun void CopyRange=2419(position start, position end)
+
+# Copy argument text to the clipboard.
+fun void CopyText=2420(int length, string text)
+
# Start notifying the container of all key presses and commands.
fun void StartRecord=3001(,)