]> git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/popupwin.h
Provide shorter synonyms for wxEVT_XXX constants.
[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 // ----------------------------------------------------------------------------
16 // wxPopupWindow
17 // ----------------------------------------------------------------------------
18
19 class WXDLLIMPEXP_CORE wxPopupWindow : public wxPopupWindowBase
20 {
21 public:
22 wxPopupWindow() { Init(); }
23
24 wxPopupWindow( wxWindow *parent, int flags = wxBORDER_NONE )
25 { Init(); (void)Create( parent, flags ); }
26
27 bool Create( wxWindow *parent, int flags = wxBORDER_NONE );
28
29 virtual bool Show( bool show = true );
30 private:
31 void Init() { m_isShown = false; }
32
33 DECLARE_DYNAMIC_CLASS_NO_COPY(wxPopupWindow)
34 };
35
36 #endif // _WX_MOTIF_POPUPWIN_H_