]>
Commit | Line | Data |
---|---|---|
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> | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MSW_POPUPWIN_H_ | |
13 | #define _WX_MSW_POPUPWIN_H_ | |
14 | ||
e49d97e6 VZ |
15 | #ifdef __GNUG__ |
16 | #pragma interface "popup.h" | |
17 | #endif | |
18 | ||
feb85348 JS |
19 | // ---------------------------------------------------------------------------- |
20 | // wxPopupWindow | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | class WXDLLEXPORT wxPopupWindow : public wxPopupWindowBase | |
24 | { | |
25 | public: | |
26 | wxPopupWindow() { } | |
27 | ||
758bce95 RD |
28 | wxPopupWindow(wxWindow *parent, int flags = wxBORDER_NONE) |
29 | { (void)Create(parent, flags); } | |
feb85348 | 30 | |
e49d97e6 | 31 | bool Create(wxWindow *parent, int flags = wxBORDER_NONE); |
e444455c | 32 | |
7e25f59e VZ |
33 | // implementation only from now on |
34 | // ------------------------------- | |
35 | ||
36 | // override Show() to prevent wxPopupWindow from being activated | |
37 | virtual bool Show(bool show = TRUE); | |
38 | ||
39 | // find a shown popup window with the given window as parent, return NULL | |
40 | // if none | |
41 | static wxPopupWindow *FindPopupFor(wxWindow *win); | |
42 | ||
e444455c | 43 | protected: |
7e25f59e | 44 | // popups handle the position like wxTopLevelWindow, not wxWindow |
e49d97e6 VZ |
45 | virtual void DoGetPosition(int *x, int *y) const; |
46 | ||
7e25f59e | 47 | // return the style to be used for the popup windows |
e49d97e6 | 48 | virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const; |
eb729cd3 | 49 | |
7e25f59e VZ |
50 | // the list of all currently shown popup windows used by FindPopupFor() |
51 | static wxWindowList ms_shownPopups; | |
52 | ||
eb729cd3 | 53 | DECLARE_DYNAMIC_CLASS(wxPopupWindow) |
feb85348 JS |
54 | }; |
55 | ||
56 | #endif // _WX_MSW_POPUPWIN_H_ | |
57 |