]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/popupwin.h
rename Inside(x,y) parameters to avoid gcc warnings about parameters shadowing member...
[wxWidgets.git] / include / wx / os2 / popupwin.h
CommitLineData
251b80c4
KB
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/os2/popupwin.h
3// Purpose: wxPopupWindow class for wxPM
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
251b80c4
KB
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_PM_POPUPWIN_H_
13#define _WX_PM_POPUPWIN_H_
14
15// ----------------------------------------------------------------------------
16// wxPopupWindow
17// ----------------------------------------------------------------------------
18
19class WXDLLEXPORT wxPopupWindow : public wxPopupWindowBase
20{
21public:
22 wxPopupWindow() { }
23
47df2b8c
DW
24 wxPopupWindow( wxWindow* pParent
25 ,int nFlags
26 )
27 { (void)Create(pParent, nFlags); }
251b80c4 28
430974f8
DW
29 bool Create( wxWindow* pParent
30 ,int nFlags = wxBORDER_NONE
31 );
6ed98c6a
DW
32 //
33 // Implementation only from now on
34 // -------------------------------
35 //
430974f8 36protected:
47df2b8c 37
430974f8
DW
38 virtual void DoGetPosition( int* pnX
39 ,int* pny
40 ) const;
41
42 virtual WXDWORD OS2GetStyle( long lFlags
43 ,WXDWORD* dwExstyle
44 ) const;
47df2b8c
DW
45 //
46 // Get the HWND to be used as parent of this window with CreateWindow()
47 //
48 virtual WXHWND OS2GetParent(void) const;
49
6ed98c6a
DW
50 //
51 // The list of all currently shown popup windows used by FindPopupFor()
52 //
53 static wxWindowList m_svShownPopups;
54
430974f8
DW
55 DECLARE_DYNAMIC_CLASS(wxPopupWindow)
56}; // end of CLASS wxPopupWindow
251b80c4
KB
57
58#endif // _WX_PM_POPUPWIN_H_