diff options
author | nyamatongwe <unknown> | 2001-04-03 12:45:38 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-04-03 12:45:38 +0000 |
commit | 4a76af5c71efaf28a34e9399d985d74d23649ac2 (patch) | |
tree | 9af75d238ed93765984a8d5c3663c6b88ffac1f5 /src/Document.h | |
parent | 447b7052109f27609f2f89d031a76ad368b20946 (diff) | |
download | scintilla-mirror-4a76af5c71efaf28a34e9399d985d74d23649ac2.tar.gz |
Regular expression find support.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index 4b0b9b1db..cfb131608 100644 --- a/src/Document.h +++ b/src/Document.h @@ -173,7 +173,7 @@ public: int NextWordStart(int pos, int delta); int Length() { return cb.Length(); } long FindText(int minPos, int maxPos, const char *s, - bool caseSensitive, bool word, bool wordStart); + bool caseSensitive, bool word, bool wordStart, bool regExp, int *length); long FindText(int iMessage, unsigned long wParam, long lParam); int LinesTotal(); @@ -196,6 +196,8 @@ public: const WatcherWithUserData *GetWatchers() const { return watchers; } int GetLenWatchers() const { return lenWatchers; } + static char DocCharAt(int pos, void *param); + bool IsWordPartSeparator(char ch); int WordPartLeft(int pos); int WordPartRight(int pos); |