]>
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
6 // Licence: wxWindows Licence
7 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation
16 #include <wx/wxprec.h>
27 #include <wx/dialog.h>
32 class wxInfoFrame
: public wxFrame
35 wxInfoFrame(wxWindow
*parent
, const wxString
& message
);
39 //--------------------------------------------------------------------------------
41 // Displays progress information
42 // Can be used in exactly same way as wxBusyCursor
43 //--------------------------------------------------------------------------------
45 class wxBusyInfo
: public wxObject
48 wxBusyInfo(const wxString
& message
);
52 wxInfoFrame
*m_InfoFrame
;