1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/popupwin.h
3 // Purpose: wxPopupWindow class for wxMac
4 // Author: Stefan Csomor
8 // Copyright: (c) 2006 Stefan Csomor
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MAC_POPUPWIN_H_
13 #define _WX_MAC_POPUPWIN_H_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 class WXDLLEXPORT wxPopupWindow
: public wxPopupWindowBase
25 wxPopupWindow(wxWindow
*parent
, int flags
= wxBORDER_NONE
)
26 { (void)Create(parent
, flags
); }
28 bool Create(wxWindow
*parent
, int flags
= wxBORDER_NONE
);
30 virtual bool Show(bool show
= true);
32 WXWindow
MacGetPopupWindowRef() const ;
35 // popups handle the position like wxTopLevelWindow, not wxWindow
36 virtual void DoGetPosition(int *x
, int *y
) const;
37 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
38 virtual void DoGetSize( int *width
, int *height
) const;
39 virtual void DoGetClientSize( int *width
, int *height
) const;
41 WXWindow m_popupWindowRef
;
43 DECLARE_DYNAMIC_CLASS_NO_COPY(wxPopupWindow
)
46 #endif // _WX_MAC_POPUPWIN_H_