]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/popupwin.h
fixed processing of the implicit wxTextCtrl accelerators (Ctrl-C/V/X)
[wxWidgets.git] / include / wx / msw / popupwin.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/popupwin.h
3 // Purpose: wxPopupWindow class for wxMSW
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 06.01.01
7 // RCS-ID: $Id$
8 // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_MSW_POPUPWIN_H_
13 #define _WX_MSW_POPUPWIN_H_
14
15 // ----------------------------------------------------------------------------
16 // wxPopupWindow
17 // ----------------------------------------------------------------------------
18
19 class WXDLLEXPORT wxPopupWindow : public wxPopupWindowBase
20 {
21 public:
22 wxPopupWindow() { }
23
24 wxPopupWindow(wxWindow *parent) { (void)Create(parent); }
25
26 bool Create(wxWindow *parent, int flags = wxBORDER_NONE)
27 {
28 return wxPopupWindowBase::Create(parent) &&
29 wxWindow::Create(parent, -1,
30 wxDefaultPosition, wxDefaultSize,
31 (flags & wxBORDER_MASK) | wxPOPUP_WINDOW);
32 }
33 };
34
35 #endif // _WX_MSW_POPUPWIN_H_
36