]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/busyinfo.h
143d7bd375f71977eb0c84b36f912d654198ea4e
[wxWidgets.git] / include / wx / generic / busyinfo.h
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
6 // RCS-ID: $Id$
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifndef __BUSYINFO_H__
11 #define __BUSYINFO_H__
12
13 #include "wx/defs.h"
14
15 #include "wx/frame.h"
16
17 #if wxUSE_BUSYINFO
18
19 class WXDLLIMPEXP_CORE wxFrame;
20
21 //--------------------------------------------------------------------------------
22 // wxBusyInfo
23 // Displays progress information
24 // Can be used in exactly same way as wxBusyCursor
25 //--------------------------------------------------------------------------------
26
27 class WXDLLEXPORT wxBusyInfo : public wxObject
28 {
29 public:
30 wxBusyInfo(const wxString& message, wxWindow *parent = NULL);
31
32 virtual ~wxBusyInfo();
33
34 private:
35 wxFrame *m_InfoFrame;
36
37 DECLARE_NO_COPY_CLASS(wxBusyInfo)
38 };
39
40
41 #endif // wxUSE_BUSYINFO
42
43 #endif // __BUSYINFO_H__