diff options
author | nyamatongwe <devnull@localhost> | 2000-04-10 13:52:17 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-04-10 13:52:17 +0000 |
commit | 0deaa9b95af06c01fa0e6714ad73b41ed22ae5c7 (patch) | |
tree | b8af678dd9e189e517668330c92aeab3ff5f0115 /src/ScintillaBase.cxx | |
parent | dba48e020c0a68a84f4f5f11d5600bba90598da3 (diff) | |
download | scintilla-mirror-0deaa9b95af06c01fa0e6714ad73b41ed22ae5c7.tar.gz |
Added get/set of separator character used when setting auto-completion list.
Message for selecting an element of the autocompletion list.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 80ef3097b..972e4fbff 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -324,9 +324,20 @@ LRESULT ScintillaBase::WndProc(UINT iMessage, WPARAM wParam, LPARAM lParam) { AutoCompleteCompleted(); break; + case SCI_AUTOCSETSEPARATOR: + ac.SetSeparator(wParam); + break; + + case SCI_AUTOCGETSEPARATOR: + return ac.GetSeparator(); + case SCI_AUTOCSTOPS: ac.SetStopChars(reinterpret_cast<char *>(lParam)); break; + + case SCI_AUTOCSELECT: + ac.Select(reinterpret_cast<char *>(lParam)); + break; case SCI_CALLTIPSHOW: { AutoCompleteCancel(); |