X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d1af991f497a5e95d8f8ab15a4e4a4a4c375928f..2fda2145700445519a0ce539b04dc72bae180124:/include/wx/busyinfo.h diff --git a/include/wx/busyinfo.h b/include/wx/busyinfo.h index be907a80cd..b4a902dc15 100644 --- a/include/wx/busyinfo.h +++ b/include/wx/busyinfo.h @@ -10,13 +10,13 @@ #ifndef __INFOWIN_H__ #define __INFOWIN_H__ -#ifdef __GNUG__ -#pragma interface +#if defined(__GNUG__) && !defined(__APPLE__) +#pragma interface "busyinfo.h" #endif #include "wx/wxprec.h" -#ifdef __BORDLANDC__ +#ifdef __BORLANDC__ #pragma hdrstop #endif @@ -24,10 +24,10 @@ #if wxUSE_BUSYINFO -class wxInfoFrame : public wxFrame +class WXDLLEXPORT wxInfoFrame : public wxFrame { - public: - wxInfoFrame(wxWindow *parent, const wxString& message); +public: + wxInfoFrame(wxWindow *parent, const wxString& message); }; @@ -37,14 +37,17 @@ class wxInfoFrame : public wxFrame // Can be used in exactly same way as wxBusyCursor //-------------------------------------------------------------------------------- -class wxBusyInfo : public wxObject +class WXDLLEXPORT wxBusyInfo : public wxObject { - public: - wxBusyInfo(const wxString& message); - ~wxBusyInfo(); +public: + wxBusyInfo(const wxString& message, wxWindow *parent = NULL); - private: - wxInfoFrame *m_InfoFrame; + virtual ~wxBusyInfo(); + +private: + wxInfoFrame *m_InfoFrame; + + DECLARE_NO_COPY_CLASS(wxBusyInfo) };