]>
Commit | Line | Data |
---|---|---|
ffecfa5a JS |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/palmos/popupwin.h | |
3 | // Purpose: wxPopupWindow class for wxMSW | |
4 | // Author: William Osborne | |
5 | // Modified by: | |
6 | // Created: 10/13/04 | |
7 | // RCS-ID: $Id: | |
8 | // Copyright: (c) William Osborne | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MSW_POPUPWIN_H_ | |
13 | #define _WX_MSW_POPUPWIN_H_ | |
14 | ||
15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
16 | #pragma interface "popup.h" | |
17 | #endif | |
18 | ||
19 | // ---------------------------------------------------------------------------- | |
20 | // wxPopupWindow | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | class WXDLLEXPORT wxPopupWindow : public wxPopupWindowBase | |
24 | { | |
25 | public: | |
26 | wxPopupWindow() { } | |
27 | ||
28 | wxPopupWindow(wxWindow *parent, int flags = wxBORDER_NONE) | |
29 | { (void)Create(parent, flags); } | |
30 | ||
31 | bool Create(wxWindow *parent, int flags = wxBORDER_NONE); | |
32 | ||
33 | virtual bool Show(bool show = TRUE); | |
34 | ||
35 | protected: | |
36 | // popups handle the position like wxTopLevelWindow, not wxWindow | |
37 | virtual void DoGetPosition(int *x, int *y) const; | |
38 | ||
39 | // return the style to be used for the popup windows | |
40 | virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const; | |
41 | ||
42 | // get the HWND to be used as parent of this window with CreateWindow() | |
43 | virtual WXHWND MSWGetParent() const; | |
44 | ||
45 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxPopupWindow) | |
46 | }; | |
47 | ||
48 | #endif // _WX_MSW_POPUPWIN_H_ | |
49 |