X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..18e065b48d9f137e93a5396eaa3f87e4c63c9ad4:/include/wx/x11/popupwin.h diff --git a/include/wx/x11/popupwin.h b/include/wx/x11/popupwin.h index 69a0c15095..69feea7844 100644 --- a/include/wx/x11/popupwin.h +++ b/include/wx/x11/popupwin.h @@ -5,16 +5,12 @@ // Created: // Id: $Id$ // Copyright: (c) 2001 Robert Roebling -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __GTKPOPUPWINH__ #define __GTKPOPUPWINH__ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "popupwin.h" -#endif - #include "wx/defs.h" #include "wx/panel.h" #include "wx/icon.h" @@ -23,15 +19,15 @@ // wxPopUpWindow //----------------------------------------------------------------------------- -class wxPopupWindow: public wxPopupWindowBase +class WXDLLIMPEXP_CORE wxPopupWindow: public wxPopupWindowBase { public: wxPopupWindow() { } - virtual ~wxPopupWindow() { } + virtual ~wxPopupWindow() ; wxPopupWindow(wxWindow *parent, int flags = wxBORDER_NONE) { (void)Create(parent, flags); } - + bool Create(wxWindow *parent, int flags = wxBORDER_NONE); virtual bool Show( bool show = TRUE ); @@ -41,7 +37,7 @@ protected: virtual void DoSetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); - + private: DECLARE_EVENT_TABLE() DECLARE_DYNAMIC_CLASS(wxPopupWindow)