]>
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 | |
feb85348 | 7 | // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> |
65571936 | 8 | // Licence: wxWindows licence |
feb85348 JS |
9 | /////////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | #ifndef _WX_MSW_POPUPWIN_H_ | |
12 | #define _WX_MSW_POPUPWIN_H_ | |
13 | ||
14 | // ---------------------------------------------------------------------------- | |
15 | // wxPopupWindow | |
16 | // ---------------------------------------------------------------------------- | |
17 | ||
53a2db12 | 18 | class WXDLLIMPEXP_CORE wxPopupWindow : public wxPopupWindowBase |
feb85348 JS |
19 | { |
20 | public: | |
21 | wxPopupWindow() { } | |
22 | ||
758bce95 RD |
23 | wxPopupWindow(wxWindow *parent, int flags = wxBORDER_NONE) |
24 | { (void)Create(parent, flags); } | |
feb85348 | 25 | |
e49d97e6 | 26 | bool Create(wxWindow *parent, int flags = wxBORDER_NONE); |
e444455c | 27 | |
af2372b9 | 28 | virtual void SetFocus(); |
078cf5cb | 29 | virtual bool Show(bool show = true); |
25b1b442 | 30 | |
7e25f59e | 31 | // return the style to be used for the popup windows |
e49d97e6 | 32 | virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const; |
eb729cd3 | 33 | |
24b3cc2c VZ |
34 | // get the HWND to be used as parent of this window with CreateWindow() |
35 | virtual WXHWND MSWGetParent() const; | |
7e25f59e | 36 | |
6f02a879 VZ |
37 | protected: |
38 | // popups handle the position like wxTopLevelWindow, not wxWindow | |
39 | virtual void DoGetPosition(int *x, int *y) const; | |
40 | ||
fc7a2a60 | 41 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxPopupWindow) |
feb85348 JS |
42 | }; |
43 | ||
44 | #endif // _WX_MSW_POPUPWIN_H_ | |
45 |