]> git.saurik.com Git - wxWidgets.git/blob - include/wx/osx/popupwin.h
Add wxDEPRECATED_MSG() and use it in a couple of places.
[wxWidgets.git] / include / wx / osx / popupwin.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/popupwin.h
3 // Purpose: wxPopupWindow class for wxMac
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created:
7 // Copyright: (c) 2006 Stefan Csomor
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_MAC_POPUPWIN_H_
12 #define _WX_MAC_POPUPWIN_H_
13
14 // ----------------------------------------------------------------------------
15 // wxPopupWindow
16 // ----------------------------------------------------------------------------
17
18 class WXDLLIMPEXP_CORE wxPopupWindow : public wxPopupWindowBase
19 {
20 public:
21 wxPopupWindow() { }
22 ~wxPopupWindow();
23
24 wxPopupWindow(wxWindow *parent, int flags = wxBORDER_NONE)
25 { (void)Create(parent, flags); }
26
27 bool Create(wxWindow *parent, int flags = wxBORDER_NONE);
28
29 DECLARE_DYNAMIC_CLASS_NO_COPY(wxPopupWindow)
30 };
31
32 #endif // _WX_MAC_POPUPWIN_H_
33