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 __BUSYINFO_H__ 
  11 #define __BUSYINFO_H__ 
  17 class WXDLLIMPEXP_FWD_CORE wxFrame
; 
  18 class WXDLLIMPEXP_FWD_CORE wxWindow
; 
  20 //-------------------------------------------------------------------------------- 
  22 //                  Displays progress information 
  23 //                  Can be used in exactly same way as wxBusyCursor 
  24 //-------------------------------------------------------------------------------- 
  26 class WXDLLIMPEXP_CORE wxBusyInfo 
: public wxObject
 
  29     wxBusyInfo(const wxString
& message
, wxWindow 
*parent 
= NULL
); 
  31     virtual ~wxBusyInfo(); 
  36     DECLARE_NO_COPY_CLASS(wxBusyInfo
) 
  40 #endif // wxUSE_BUSYINFO 
  42 #endif // __BUSYINFO_H__