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
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_BUSYINFO_H_
11 #define _WX_BUSYINFO_H_
17 #include "wx/object.h"
19 class WXDLLIMPEXP_FWD_CORE wxFrame
;
20 class WXDLLIMPEXP_FWD_CORE wxWindow
;
22 //--------------------------------------------------------------------------------
24 // Displays progress information
25 // Can be used in exactly same way as wxBusyCursor
26 //--------------------------------------------------------------------------------
28 class WXDLLIMPEXP_CORE wxBusyInfo
: public wxObject
31 wxBusyInfo(const wxString
& message
, wxWindow
*parent
= NULL
);
33 virtual ~wxBusyInfo();
38 wxDECLARE_NO_COPY_CLASS(wxBusyInfo
);
41 #endif // wxUSE_BUSYINFO
42 #endif // _WX_BUSYINFO_H_