aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-04-10 13:52:17 +0000
committernyamatongwe <unknown>2000-04-10 13:52:17 +0000
commitb8d276f517d68af5d173597c37fb9111c985de80 (patch)
treeb8af678dd9e189e517668330c92aeab3ff5f0115 /src/ScintillaBase.cxx
parentff3e9e7e239217ae5247b1519090a5137e056f80 (diff)
downloadscintilla-mirror-b8d276f517d68af5d173597c37fb9111c985de80.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.cxx11
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();