]>
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 /////////////////////////////////////////////////////////////////////////////
19 class WXDLLEXPORT wxInfoFrame
: public wxFrame
22 wxInfoFrame(wxWindow
*parent
, const wxString
& message
);
25 DECLARE_NO_COPY_CLASS(wxInfoFrame
)
29 //--------------------------------------------------------------------------------
31 // Displays progress information
32 // Can be used in exactly same way as wxBusyCursor
33 //--------------------------------------------------------------------------------
35 class WXDLLEXPORT wxBusyInfo
: public wxObject
38 wxBusyInfo(const wxString
& message
, wxWindow
*parent
= NULL
);
40 virtual ~wxBusyInfo();
43 wxInfoFrame
*m_InfoFrame
;
45 DECLARE_NO_COPY_CLASS(wxBusyInfo
)