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_
16 #pragma interface "popup.h"
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
23 class WXDLLEXPORT wxPopupWindow
: public wxPopupWindowBase
28 wxPopupWindow(wxWindow
*parent
, int flags
= wxBORDER_NONE
)
29 { (void)Create(parent
, flags
); }
31 bool Create(wxWindow
*parent
, int flags
= wxBORDER_NONE
);
34 // popups handle the position like wxTopLevelWindow, not wxWindow
35 virtual void DoGetPosition(int *x
, int *y
) const;
37 // return the style to be used for the popup windows
38 virtual WXDWORD
MSWGetStyle(long flags
, WXDWORD
*exstyle
) const;
40 // get the HWND to be used as parent of this window with CreateWindow()
41 virtual WXHWND
MSWGetParent() const;
43 DECLARE_DYNAMIC_CLASS(wxPopupWindow
)
46 #endif // _WX_MSW_POPUPWIN_H_