]> git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/popupwin.h
Add import/export attributes
[wxWidgets.git] / include / wx / motif / popupwin.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/popupwin.h
3 // Purpose: wxPopupWindow class for wxMotif
4 // Author: Mattia Barbon
5 // Modified by:
6 // Created: 28.08.03
7 // RCS-ID: $Id$
8 // Copyright: (c) 2003 Mattia Barbon
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_MOTIF_POPUPWIN_H_
13 #define _WX_MOTIF_POPUPWIN_H_
14
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "popup.h"
17 #endif
18
19 // ----------------------------------------------------------------------------
20 // wxPopupWindow
21 // ----------------------------------------------------------------------------
22
23 class WXDLLIMPEXP_CORE wxPopupWindow : public wxPopupWindowBase
24 {
25 public:
26 wxPopupWindow() { Init(); }
27
28 wxPopupWindow( wxWindow *parent, int flags = wxBORDER_NONE )
29 { Init(); (void)Create( parent, flags ); }
30
31 bool Create( wxWindow *parent, int flags = wxBORDER_NONE );
32
33 virtual bool Show( bool show = true );
34 private:
35 void Init() { m_isShown = false; }
36
37 DECLARE_DYNAMIC_CLASS_NO_COPY(wxPopupWindow)
38 };
39
40 #endif // _WX_MOTIF_POPUPWIN_H_