X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..51623cc53f350935337e57930eaaf1afe9a48c3b:/include/wx/x11/popupwin.h diff --git a/include/wx/x11/popupwin.h b/include/wx/x11/popupwin.h index 69a0c15095..28a423dd41 100644 --- a/include/wx/x11/popupwin.h +++ b/include/wx/x11/popupwin.h @@ -1,20 +1,16 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: popupwin.h +// Name: wx/x11/popupwin.h // Purpose: // Author: Robert Roebling // 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)