diff options
author | nyamatongwe <unknown> | 2000-08-18 10:45:24 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-08-18 10:45:24 +0000 |
commit | 74537dd24ba7943e79652b06f4b752be2035bcea (patch) | |
tree | c5d0492dca4b04bf79e1ef367a7190df8472bc3f /include/Scintilla.h | |
parent | d15b65e7fba53354b9a044ba5d8232d256b58d5e (diff) | |
download | scintilla-mirror-74537dd24ba7943e79652b06f4b752be2035bcea.tar.gz |
Added in most of Ferdinand Prantl's changes except for regular expression
search.
Some bits not quite done as well.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index a1494b41a..855b186d7 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -211,6 +211,7 @@ typedef long (*SciFnDirect)(long ptr, unsigned int iMessage, unsigned long wPara #define SCI_AUTOCSELECT SCI_START + 108 #define SCI_AUTOCSETCANCELATSTART SCI_START + 110 #define SCI_AUTOCGETCANCELATSTART SCI_START + 111 +#define SCI_AUTOCSETFILLUPS SCI_START + 112 #define SCI_GETTABWIDTH SCI_START + 121 #define SCI_SETINDENT SCI_START + 122 @@ -288,6 +289,9 @@ typedef long (*SciFnDirect)(long ptr, unsigned int iMessage, unsigned long wPara #define SCI_GETDIRECTFUNCTION SCI_START + 184 #define SCI_GETDIRECTPOINTER SCI_START + 185 +#define SCI_SETOVERTYPE SCI_START + 186 +#define SCI_GETOVERTYPE SCI_START + 187 + #define SCI_CALLTIPSHOW SCI_START + 200 #define SCI_CALLTIPCANCEL SCI_START + 201 #define SCI_CALLTIPACTIVE SCI_START + 202 @@ -458,6 +462,7 @@ typedef void (tMacroRecorder)(unsigned int iMessage, unsigned long wParam, #endif #define SCN_MARGINCLICK 2010 #define SCN_NEEDSHOWN 2011 +#define SCN_POSCHANGED 2012 // For compatibility, these go through the COMMAND notification rather than NOTIFY // and have exactly the same values as the EN_* constants. |