]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/busyinfo.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Information window (when app is busy)
4 // Author: Vaclav Slavik
5 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
13 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14 #pragma interface "busyinfo.h"
17 #include "wx/wxprec.h"
27 class WXDLLEXPORT wxInfoFrame
: public wxFrame
30 wxInfoFrame(wxWindow
*parent
, const wxString
& message
);
33 DECLARE_NO_COPY_CLASS(wxInfoFrame
)
37 //--------------------------------------------------------------------------------
39 // Displays progress information
40 // Can be used in exactly same way as wxBusyCursor
41 //--------------------------------------------------------------------------------
43 class WXDLLEXPORT wxBusyInfo
: public wxObject
46 wxBusyInfo(const wxString
& message
, wxWindow
*parent
= NULL
);
48 virtual ~wxBusyInfo();
51 wxInfoFrame
*m_InfoFrame
;
53 DECLARE_NO_COPY_CLASS(wxBusyInfo
)