X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6d090da1e9e618b60f176cc27fc8a79eadde44b4..662ba874795045558374a61c85a7e3c2de5bbdbb:/interface/wx/popupwin.h diff --git a/interface/wx/popupwin.h b/interface/wx/popupwin.h index 96c20f6a81..f7e6aec56e 100644 --- a/interface/wx/popupwin.h +++ b/interface/wx/popupwin.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: popupwin.h -// Purpose: interface of wxPoppWindow +// Purpose: interface of wxPopupWindow // Author: wxWidgets team // RCS-ID: $Id$ // Licence: wxWindows licence @@ -22,6 +22,11 @@ class wxPopupWindow: public wxNonOwnedWindow { public: + /** + Default constructor + */ + wxPopupWindow(); + /** Constructor */ @@ -67,6 +72,11 @@ public: class wxPopupTransientWindow : public wxPopupWindow { public: + /** + Default constructor. + */ + wxPopupTransientWindow(); + /** Constructor. */ @@ -96,4 +106,12 @@ public: (which consists in dismissing it if the mouse is clicked outside it). */ virtual bool ProcessLeftDown(wxMouseEvent& event); + +protected: + /** + This is called when the popup is disappeared because of anything + else but direct call to Dismiss(). + */ + virtual void OnDismiss(); + };