1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/popupwin.h
3 // Purpose: wxPopupWindow class for wxMSW
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MSW_POPUPWIN_H_
13 #define _WX_MSW_POPUPWIN_H_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 class WXDLLIMPEXP_CORE wxPopupWindow
: public wxPopupWindowBase
24 wxPopupWindow(wxWindow
*parent
, int flags
= wxBORDER_NONE
)
25 { (void)Create(parent
, flags
); }
27 bool Create(wxWindow
*parent
, int flags
= wxBORDER_NONE
);
29 virtual bool Show(bool show
= true);
31 // return the style to be used for the popup windows
32 virtual WXDWORD
MSWGetStyle(long flags
, WXDWORD
*exstyle
) const;
34 // get the HWND to be used as parent of this window with CreateWindow()
35 virtual WXHWND
MSWGetParent() const;
38 // popups handle the position like wxTopLevelWindow, not wxWindow
39 virtual void DoGetPosition(int *x
, int *y
) const;
41 DECLARE_DYNAMIC_CLASS_NO_COPY(wxPopupWindow
)
44 #endif // _WX_MSW_POPUPWIN_H_