aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2010-03-11 10:21:29 +0000
committernyamatongwe <devnull@localhost>2010-03-11 10:21:29 +0000
commite86a669c757e195237e44c5fd13786ce39acb3ac (patch)
treecac1e613a55d874579c775c8cb681b275d26fa52 /src/Editor.h
parent66cc61744a596ee4b04dc568f05e07c3d8207d2a (diff)
downloadscintilla-mirror-e86a669c757e195237e44c5fd13786ce39acb3ac.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();