From 90e1b590ae736c53fb37e22ea90c8f07064403e0 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Mon, 4 Sep 2000 13:12:01 +0000 Subject: Added SCFIND_WORDSTART. --- include/Scintilla.h | 6 ++++-- include/Scintilla.iface | 7 +++++-- 2 files changed, 9 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/Scintilla.h b/include/Scintilla.h index 8497b123a..ca81d135b 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -217,9 +217,11 @@ typedef long (*SciFnDirect)(long ptr, unsigned int iMessage, unsigned long wPara #define SC_PRINT_BLACKONWHITE 2 #define SCI_SETPRINTCOLOURMODE 2148 #define SCI_GETPRINTCOLOURMODE 2149 -#define SCFIND_MATCHCASE 4 -#define SCFIND_WHOLEWORD 2 #define SCFIND_DOWN 1 +#define SCFIND_WHOLEWORD 2 +#define SCFIND_MATCHCASE 4 +#define SCFIND_WORDSTART 0x00100000 +#define SCFIND_REGEXP 0x00200000 #define SCI_FINDTEXT 2150 #define SCI_FORMATRANGE 2151 #define SCI_GETFIRSTVISIBLELINE 2152 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 536ebbd6a..052af92c4 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -557,9 +557,12 @@ set void SetPrintColourMode=2148(int mode,) # Returns the print colour mode. get int GetPrintColourMode=2149(,) -val SCFIND_MATCHCASE=4 -val SCFIND_WHOLEWORD=2 val SCFIND_DOWN=1 +val SCFIND_WHOLEWORD=2 +val SCFIND_MATCHCASE=4 +val SCFIND_WORDSTART=0x00100000 +# SCFIND_REGEXP is not yet implemented. +val SCFIND_REGEXP=0x00200000 # Find some text in the document. fun position FindText=2150(int flags, findtext ft) -- cgit v1.2.3