]> git.saurik.com Git - wxWidgets.git/blame - include/wx/osx/popupwin.h
export wxRichTextObjectPtrArrayArray since it is used in the public API.
[wxWidgets.git] / include / wx / osx / popupwin.h
CommitLineData
6762286d 1///////////////////////////////////////////////////////////////////////////////
233f5738 2// Name: wx/osx/popupwin.h
6762286d
SC
3// Purpose: wxPopupWindow class for wxMac
4// Author: Stefan Csomor
5// Modified by:
03647350 6// Created:
6762286d
SC
7// RCS-ID: $Id$
8// Copyright: (c) 2006 Stefan Csomor
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_MAC_POPUPWIN_H_
13#define _WX_MAC_POPUPWIN_H_
14
15// ----------------------------------------------------------------------------
16// wxPopupWindow
17// ----------------------------------------------------------------------------
18
19class WXDLLIMPEXP_CORE wxPopupWindow : public wxPopupWindowBase
20{
21public:
22 wxPopupWindow() { }
23 ~wxPopupWindow();
24
25 wxPopupWindow(wxWindow *parent, int flags = wxBORDER_NONE)
26 { (void)Create(parent, flags); }
27
28 bool Create(wxWindow *parent, int flags = wxBORDER_NONE);
ce00f59b 29
12612f29 30 virtual bool Show(bool show = true);
6762286d 31
6762286d
SC
32 DECLARE_DYNAMIC_CLASS_NO_COPY(wxPopupWindow)
33};
34
35#endif // _WX_MAC_POPUPWIN_H_
36