X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dd72e7678d1f4fd36c4753373b2b22b59491f5a7..ed3aceb08c9322375fb130bf840d106301ede6cd:/interface/wx/popupwin.h?ds=sidebyside diff --git a/interface/wx/popupwin.h b/interface/wx/popupwin.h index 2db50e0071..202eae1923 100644 --- a/interface/wx/popupwin.h +++ b/interface/wx/popupwin.h @@ -1,9 +1,9 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: popupwind.h -// Purpose: interface of wxPoppWindow +// Name: popupwin.h +// Purpose: interface of wxPopupWindow // Author: wxWidgets team -// RCS-ID: $Id:$ -// Licence: wxWindows license +// RCS-ID: $Id$ +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -49,3 +49,51 @@ public: const wxSize& sizePopup); }; +/** + @class wxPopupTransientWindow + + A wxPopupWindow which disappears automatically when the user clicks mouse + outside it or if it loses focus in any other way. + + This window can be useful for implementing custom combobox-like controls + for example. + + @library{wxcore} + @category{managedwnd} + + @see wxPopupWindow +*/ + +class wxPopupTransientWindow : public wxPopupWindow +{ +public: + /** + Constructor. + */ + wxPopupTransientWindow(wxWindow *parent, int flags = wxBORDER_NONE); + + /** + Popup the window (this will show it too). + + If @a winFocus is non-@NULL, it will be kept focused while this window + is shown, otherwise this window itself will receive focus. In any case, + the popup will disappear automatically if it loses focus because of a + user action. + + @see Dismiss() + */ + virtual void Popup(wxWindow *focus = NULL); + + /** + Hide the window. + */ + virtual void Dismiss(); + + /** + Called when a mouse is pressed while the popup is shown. + + Return @true from here to prevent its normal processing by the popup + (which consists in dismissing it if the mouse is clicked outside it). + */ + virtual bool ProcessLeftDown(wxMouseEvent& event); +};