diff options
author | Neil <nyamatongwe@gmail.com> | 2017-06-11 14:08:43 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-06-11 14:08:43 +1000 |
commit | 09972b3a179d7ea39ef6ce7e0474531797c549fb (patch) | |
tree | 530dd174861606cacb57bce355cd14720f0bef9c /src/ScintillaBase.h | |
parent | a4051422b4364d1193abc9a31d1f3df42fdedc47 (diff) | |
download | scintilla-mirror-09972b3a179d7ea39ef6ce7e0474531797c549fb.tar.gz |
Implement SCN_AUTOCSELECTIONCHANGE notification.
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r-- | src/ScintillaBase.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index cd8a1f5a1..9b8f08ae3 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -18,7 +18,7 @@ class LexState; /** */ -class ScintillaBase : public Editor { +class ScintillaBase : public Editor, IListBoxDelegate { protected: /** Enumeration of commands and child windows. */ enum { @@ -76,7 +76,8 @@ protected: void AutoCompleteCharacterDeleted(); void AutoCompleteCompleted(char ch, unsigned int completionMethod); void AutoCompleteMoveToCurrentWord(); - static void AutoCompleteDoubleClick(void *p); + void AutoCompleteSelection(); + void ListNotify(ListBoxEvent *plbe) override; void CallTipClick(); void CallTipShow(Point pt, const char *defn); |