aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2010-03-11 10:21:29 +0000
committernyamatongwe <unknown>2010-03-11 10:21:29 +0000
commit8e37e4efe5f90c7b6157ffd513ac418db7089c2d (patch)
treecac1e613a55d874579c775c8cb681b275d26fa52 /src/Editor.h
parent046d1d2dcefe90b80b58330c043be32d7ef49d49 (diff)
downloadscintilla-mirror-8e37e4efe5f90c7b6157ffd513ac418db7089c2d.tar.gz
Implemented multipaste as an option.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 94454b2d9..6e6c25f0f 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -142,6 +142,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
bool caretSticky;
bool multipleSelection;
bool additionalSelectionTyping;
+ int multiPasteMode;
bool additionalCaretsBlink;
bool additionalCaretsVisible;
@@ -358,6 +359,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
int InsertSpace(int position, unsigned int spaces);
void AddChar(char ch);
virtual void AddCharUTF(char *s, unsigned int len, bool treatAsDBCS=false);
+ void InsertPaste(SelectionPosition selStart, const char *text, int len);
void ClearSelection();
void ClearAll();
void ClearDocumentStyle();