X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/68406a9b43da5cb6065ce87413df48220e14d082..40717c90bf265de0a752d637a35cd88cb22bbd05:/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) };