1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mgl/popupwin.h
3 // Purpose: wxPopupWindow class for wxMGL
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_POPUPWIN_H_
12 #define _WX_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 return wxPopupWindowBase::Create(parent
) &&
29 wxWindow::Create(parent
, -1,
30 wxDefaultPosition
, wxDefaultSize
,
31 (flags
& wxBORDER_MASK
) | wxPOPUP_WINDOW
);
35 DECLARE_DYNAMIC_CLASS(wxPopupWindow
)
38 #endif // _WX_POPUPWIN_H_