From 40abd164fea420d6f2aa30639f8bb517904b7bae Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 11 May 2003 01:25:28 +0000 Subject: Addition of CopyText, CopyRange, and LineCopy. --- doc/ScintillaDoc.html | 32 ++++++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 66944ec97..daf9d6c11 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -747,6 +747,16 @@ struct TextToFind {

Cut, copy and paste

+ SCI_CUT
+ SCI_COPY
+ SCI_PASTE
+ SCI_CLEAR
+ SCI_CANPASTE
+ SCI_COPYRANGE(int start, int end)
+ SCI_COPYTEXT(int length, + const char *text)
+
+

SCI_CUT
SCI_COPY
SCI_PASTE
@@ -762,6 +772,12 @@ struct TextToFind {

GTK+ does not really support SCI_CANPASTE and always returns TRUE unless the document is read-only.

+ SCI_COPYRANGE(int start, int end)
+ SCI_COPYTEXT(int length, const char *text)
+

SCI_COPYRANGE copies a range of text from the document to + the system clipboard and SCI_COPYTEXT copies a supplied piece of + text to the system clipboard.

+

Error handling

SCI_SETSTATUS(int status)
@@ -3166,40 +3182,44 @@ struct TextToFind { SCI_LINECUT + SCI_LINECOPY + SCI_LINEDELETE SCI_LINETRANSPOSE - - SCI_LINEDUPLICATE + SCI_LINEDUPLICATE + SCI_LOWERCASE SCI_UPPERCASE SCI_WORDPARTLEFT - - SCI_WORDPARTLEFTEXTEND + SCI_WORDPARTLEFTEXTEND + SCI_WORDPARTRIGHT SCI_WORDPARTRIGHTEXTEND SCI_HOMEDISPLAY - - SCI_HOMEDISPLAYEXTEND + SCI_HOMEDISPLAYEXTEND + SCI_LINEENDDISPLAY SCI_LINEENDDISPLAYEXTEND SCI_VCHOMEWRAP + + SCI_VCHOMEWRAPEXTEND -- cgit v1.2.3