1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/popupwin.h
3 // Purpose: wxPopupWindow class for wxMSW
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_MSW_POPUPWIN_H_
12 #define _WX_MSW_POPUPWIN_H_
14 // ----------------------------------------------------------------------------
16 // ----------------------------------------------------------------------------
18 class WXDLLIMPEXP_CORE wxPopupWindow
: public wxPopupWindowBase
23 wxPopupWindow(wxWindow
*parent
, int flags
= wxBORDER_NONE
)
24 { (void)Create(parent
, flags
); }
26 bool Create(wxWindow
*parent
, int flags
= wxBORDER_NONE
);
28 virtual void SetFocus();
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_