diff options
| author | Neil <nyamatongwe@gmail.com> | 2015-06-11 21:58:21 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2015-06-11 21:58:21 +1000 |
| commit | 8a9e9058908951c059710e514a01f1c17f80eea8 (patch) | |
| tree | 0f4bd36a0e42165a93e19126029540d2b8a2ce65 /src/Document.h | |
| parent | 8adf04897051234ab9274a5156e1cc148aa4b401 (diff) | |
| download | scintilla-mirror-8a9e9058908951c059710e514a01f1c17f80eea8.tar.gz | |
Added MultipleSelectAddNext, MultipleSelectAddEach, IsRangeWord, and
TargetWholeDocument.
Diffstat (limited to 'src/Document.h')
| -rw-r--r-- | src/Document.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Document.h b/src/Document.h index 923462e7a..308a67062 100644 --- a/src/Document.h +++ b/src/Document.h @@ -381,6 +381,10 @@ public: }; CharacterExtracted ExtractCharacter(int position) const; + bool IsWordStartAt(int pos) const; + bool IsWordEndAt(int pos) const; + bool IsWordAt(int start, int end) const; + bool MatchesWordOptions(bool word, bool wordStart, int pos, int length) const; bool HasCaseFolder(void) const; void SetCaseFolder(CaseFolder *pcf_); @@ -437,10 +441,6 @@ public: int BraceMatch(int position, int maxReStyle); private: - bool IsWordStartAt(int pos) const; - bool IsWordEndAt(int pos) const; - bool IsWordAt(int start, int end) const; - void NotifyModifyAttempt(); void NotifySavePoint(bool atSavePoint); void NotifyModified(DocModification mh); |
