aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2015-06-11 21:58:21 +1000
committerNeil <nyamatongwe@gmail.com>2015-06-11 21:58:21 +1000
commitc232fb50fc2cb0f30e3440bc61dbe7c5efacef35 (patch)
tree4f43a38a60b712a7eeefe4b025efd1f57173bca6 /src/Editor.h
parent30d76df9409b32a53fedbea53eda2d4849e4f91c (diff)
downloadscintilla-mirror-c232fb50fc2cb0f30e3440bc61dbe7c5efacef35.tar.gz
Added MultipleSelectAddNext, MultipleSelectAddEach, IsRangeWord, and
TargetWholeDocument.
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 2bf8336fa..b08fc7159 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -319,6 +319,8 @@ protected: // ScintillaBase subclass needs access to much of Editor
void SetSelection(int currentPos_);
void SetEmptySelection(SelectionPosition currentPos_);
void SetEmptySelection(int currentPos_);
+ enum AddNumber { addOne, addEach };
+ void MultipleSelectAdd(AddNumber addNumber);
bool RangeContainsProtected(int start, int end) const;
bool SelectionContainsProtected();
int MovePositionOutsideChar(int pos, int moveDir, bool checkLineEnd=true) const;