X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/68406a9b43da5cb6065ce87413df48220e14d082..b9efe021b554fa3967d1442cf758435c5cd5ae8f:/include/wx/popupwin.h diff --git a/include/wx/popupwin.h b/include/wx/popupwin.h index 9cd390d2fa..a347db9dc6 100644 --- a/include/wx/popupwin.h +++ b/include/wx/popupwin.h @@ -124,6 +124,14 @@ protected: // remove our event handlers void PopHandlers(); + // get alerted when child gets deleted from under us + void OnDestroy(wxWindowDestroyEvent& event); + +#ifdef __WXMSW__ + // check if the mouse needs captured or released + void OnIdle(wxIdleEvent& event); +#endif + // the child of this popup if any wxWindow *m_child; @@ -138,6 +146,7 @@ protected: wxPopupWindowHandler *m_handlerPopup; wxPopupFocusHandler *m_handlerFocus; + DECLARE_EVENT_TABLE() DECLARE_DYNAMIC_CLASS(wxPopupTransientWindow) DECLARE_NO_COPY_CLASS(wxPopupTransientWindow) };