]>
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"
23 class WXDLLEXPORT wxInfoFrame
: public wxFrame
26 wxInfoFrame(wxWindow
*parent
, const wxString
& message
);
29 DECLARE_NO_COPY_CLASS(wxInfoFrame
)
33 //--------------------------------------------------------------------------------
35 // Displays progress information
36 // Can be used in exactly same way as wxBusyCursor
37 //--------------------------------------------------------------------------------
39 class WXDLLEXPORT wxBusyInfo
: public wxObject
42 wxBusyInfo(const wxString
& message
, wxWindow
*parent
= NULL
);
44 virtual ~wxBusyInfo();
47 wxInfoFrame
*m_InfoFrame
;
49 DECLARE_NO_COPY_CLASS(wxBusyInfo
)