1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 2001 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKPOPUPWINH__
12 #define __GTKPOPUPWINH__
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 class WXDLLIMPEXP_CORE wxPopupWindow
: public wxPopupWindowBase
26 virtual ~wxPopupWindow() ;
28 wxPopupWindow(wxWindow
*parent
, int flags
= wxBORDER_NONE
)
29 { (void)Create(parent
, flags
); }
31 bool Create(wxWindow
*parent
, int flags
= wxBORDER_NONE
);
33 virtual bool Show( bool show
= TRUE
);
36 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
37 virtual void DoSetSize(int x
, int y
,
38 int width
, int height
,
39 int sizeFlags
= wxSIZE_AUTO
);
43 DECLARE_DYNAMIC_CLASS(wxPopupWindow
)
46 #endif // __GTKPOPUPWINDOWH__