]>
Commit | Line | Data |
---|---|---|
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> | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_PM_POPUPWIN_H_ | |
13 | #define _WX_PM_POPUPWIN_H_ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // wxPopupWindow | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | class WXDLLEXPORT wxPopupWindow : public wxPopupWindowBase | |
20 | { | |
21 | public: | |
22 | wxPopupWindow() { } | |
23 | ||
430974f8 | 24 | wxPopupWindow(wxWindow* pParent) { (void)Create(pParent); } |
251b80c4 | 25 | |
430974f8 DW |
26 | bool Create( wxWindow* pParent |
27 | ,int nFlags = wxBORDER_NONE | |
28 | ); | |
6ed98c6a DW |
29 | // |
30 | // Implementation only from now on | |
31 | // ------------------------------- | |
32 | // | |
33 | ||
34 | // | |
35 | // Override Show() to prevent wxPopupWindow from being activated | |
36 | // | |
37 | virtual bool Show(bool show = TRUE); | |
38 | ||
39 | // | |
40 | // Find a shown popup window with the given window as parent, return NULL | |
41 | // if none | |
42 | // | |
43 | static wxPopupWindow *FindPopupFor(wxWindow* pWin); | |
44 | ||
430974f8 DW |
45 | protected: |
46 | virtual void DoGetPosition( int* pnX | |
47 | ,int* pny | |
48 | ) const; | |
49 | ||
50 | virtual WXDWORD OS2GetStyle( long lFlags | |
51 | ,WXDWORD* dwExstyle | |
52 | ) const; | |
6ed98c6a DW |
53 | // |
54 | // The list of all currently shown popup windows used by FindPopupFor() | |
55 | // | |
56 | static wxWindowList m_svShownPopups; | |
57 | ||
430974f8 DW |
58 | DECLARE_DYNAMIC_CLASS(wxPopupWindow) |
59 | }; // end of CLASS wxPopupWindow | |
251b80c4 KB |
60 | |
61 | #endif // _WX_PM_POPUPWIN_H_ |