X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ea1ad04b434f92c1269e6dde222a77698d6f873c..82805fe2805636891305796658219faa038677a4:/include/wx/popupwin.h diff --git a/include/wx/popupwin.h b/include/wx/popupwin.h index 0bef727d28..b4558ee4d4 100644 --- a/include/wx/popupwin.h +++ b/include/wx/popupwin.h @@ -86,8 +86,10 @@ public: // hide the window virtual void Dismiss(); - + // can the window be dismissed now? + // + // VZ: where is this used?? virtual bool CanDismiss() { return TRUE; } @@ -151,9 +153,13 @@ protected: // notify the combo here virtual void OnDismiss(); + // forward the key presses to the combobox + void OnKeyDown(wxKeyEvent& event); + // the parent combobox wxComboControl *m_combo; + DECLARE_EVENT_TABLE() DECLARE_DYNAMIC_CLASS(wxPopupComboWindow) };