1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/busyinfo.h
3 // Purpose: Information window (when app is busy)
4 // Author: Vaclav Slavik
5 // Copyright: (c) 1999 Vaclav Slavik
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 #ifndef _WX_BUSYINFO_H_
10 #define _WX_BUSYINFO_H_
16 #include "wx/object.h"
18 class WXDLLIMPEXP_FWD_CORE wxFrame
;
19 class WXDLLIMPEXP_FWD_CORE wxWindow
;
21 //--------------------------------------------------------------------------------
23 // Displays progress information
24 // Can be used in exactly same way as wxBusyCursor
25 //--------------------------------------------------------------------------------
27 class WXDLLIMPEXP_CORE wxBusyInfo
: public wxObject
30 wxBusyInfo(const wxString
& message
, wxWindow
*parent
= NULL
);
32 virtual ~wxBusyInfo();
37 wxDECLARE_NO_COPY_CLASS(wxBusyInfo
);
40 #endif // wxUSE_BUSYINFO
41 #endif // _WX_BUSYINFO_H_