]>
Commit | Line | Data |
---|---|---|
9f41d601 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: popupwin.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Created: | |
6 | // Id: $Id$ | |
6522713c | 7 | // Copyright: (c) 2001 Robert Roebling |
65571936 | 8 | // Licence: wxWindows licence |
9f41d601 RR |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
0416c418 PC |
11 | #ifndef _WX_GTK_POPUPWIN_H_ |
12 | #define _WX_GTK_POPUPWIN_H_ | |
9f41d601 RR |
13 | |
14 | //----------------------------------------------------------------------------- | |
15 | // wxPopUpWindow | |
16 | //----------------------------------------------------------------------------- | |
17 | ||
20123d49 | 18 | class WXDLLIMPEXP_CORE wxPopupWindow: public wxPopupWindowBase |
9f41d601 RR |
19 | { |
20 | public: | |
21 | wxPopupWindow() { } | |
ad9fb033 | 22 | virtual ~wxPopupWindow(); |
758bce95 RD |
23 | |
24 | wxPopupWindow(wxWindow *parent, int flags = wxBORDER_NONE) | |
25 | { (void)Create(parent, flags); } | |
9f41d601 RR |
26 | bool Create(wxWindow *parent, int flags = wxBORDER_NONE); |
27 | ||
cca410b3 | 28 | virtual bool Show(bool show = true); |
758bce95 | 29 | |
9f41d601 RR |
30 | // implementation |
31 | // -------------- | |
32 | ||
33c0d0ed RR |
33 | // GTK time when connecting to button_press signal |
34 | wxUint32 m_time; | |
9f41d601 | 35 | |
9f41d601 | 36 | protected: |
9f41d601 RR |
37 | virtual void DoSetSize(int x, int y, |
38 | int width, int height, | |
39 | int sizeFlags = wxSIZE_AUTO); | |
40 | ||
6f02a879 VZ |
41 | virtual void DoMoveWindow(int x, int y, int width, int height); |
42 | ||
9f41d601 | 43 | private: |
cca410b3 | 44 | #ifdef __WXUNIVERSAL__ |
9f41d601 | 45 | DECLARE_EVENT_TABLE() |
cca410b3 | 46 | #endif |
9f41d601 RR |
47 | DECLARE_DYNAMIC_CLASS(wxPopupWindow) |
48 | }; | |
49 | ||
0416c418 | 50 | #endif // _WX_GTK_POPUPWIN_H_ |