]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/popupwin.h
Removed WXWIN_COMPATIBILITY_2_2 together with code guarded by it.
[wxWidgets.git] / include / wx / msw / popupwin.h
CommitLineData
feb85348
JS
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>
65571936 9// Licence: wxWindows licence
feb85348
JS
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_MSW_POPUPWIN_H_
13#define _WX_MSW_POPUPWIN_H_
14
15// ----------------------------------------------------------------------------
16// wxPopupWindow
17// ----------------------------------------------------------------------------
18
19class WXDLLEXPORT wxPopupWindow : public wxPopupWindowBase
20{
21public:
22 wxPopupWindow() { }
23
758bce95
RD
24 wxPopupWindow(wxWindow *parent, int flags = wxBORDER_NONE)
25 { (void)Create(parent, flags); }
feb85348 26
e49d97e6 27 bool Create(wxWindow *parent, int flags = wxBORDER_NONE);
e444455c 28
078cf5cb 29 virtual bool Show(bool show = true);
25b1b442 30
e444455c 31protected:
7e25f59e 32 // popups handle the position like wxTopLevelWindow, not wxWindow
e49d97e6
VZ
33 virtual void DoGetPosition(int *x, int *y) const;
34
7e25f59e 35 // return the style to be used for the popup windows
e49d97e6 36 virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const;
eb729cd3 37
24b3cc2c
VZ
38 // get the HWND to be used as parent of this window with CreateWindow()
39 virtual WXHWND MSWGetParent() const;
7e25f59e 40
fc7a2a60 41 DECLARE_DYNAMIC_CLASS_NO_COPY(wxPopupWindow)
feb85348
JS
42};
43
44#endif // _WX_MSW_POPUPWIN_H_
45