]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mgl/popupwin.h
fixed the bug with the order of 2 size events when the scrollbar[s] (dis)appear in...
[wxWidgets.git] / include / wx / mgl / popupwin.h
CommitLineData
544c782d
VS
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/mgl/popupwin.h
3// Purpose: wxPopupWindow class for wxMGL
4// Author: Vadim Zeitlin
5// Created: 06.01.01
6// RCS-ID: $Id$
7// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
8// Licence: wxWindows licence
9///////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_POPUPWIN_H_
12#define _WX_POPUPWIN_H_
13
14// ----------------------------------------------------------------------------
15// wxPopupWindow
16// ----------------------------------------------------------------------------
17
18class WXDLLEXPORT wxPopupWindow : public wxPopupWindowBase
19{
20public:
21 wxPopupWindow() { }
22
23 wxPopupWindow(wxWindow *parent) { (void)Create(parent); }
24
25 bool Create(wxWindow *parent, int flags = wxBORDER_NONE)
26 {
27 return wxPopupWindowBase::Create(parent) &&
28 wxWindow::Create(parent, -1,
29 wxDefaultPosition, wxDefaultSize,
30 flags & wxBORDER_MASK);
31 }
32};
33
34#endif // _WX_POPUPWIN_H_
35