]>
Commit | Line | Data |
---|---|---|
b7ba00e7 WS |
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 | |
b7ba00e7 WS |
6 | // Licence: wxWindows licence |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
65391c8f PC |
9 | #ifndef _WX_BUSYINFO_H_ |
10 | #define _WX_BUSYINFO_H_ | |
b7ba00e7 WS |
11 | |
12 | #include "wx/defs.h" | |
13 | ||
b7ba00e7 WS |
14 | #if wxUSE_BUSYINFO |
15 | ||
65391c8f PC |
16 | #include "wx/object.h" |
17 | ||
b5dbe15d | 18 | class WXDLLIMPEXP_FWD_CORE wxFrame; |
bff023f1 | 19 | class WXDLLIMPEXP_FWD_CORE wxWindow; |
b7ba00e7 WS |
20 | |
21 | //-------------------------------------------------------------------------------- | |
22 | // wxBusyInfo | |
23 | // Displays progress information | |
24 | // Can be used in exactly same way as wxBusyCursor | |
25 | //-------------------------------------------------------------------------------- | |
26 | ||
53a2db12 | 27 | class WXDLLIMPEXP_CORE wxBusyInfo : public wxObject |
b7ba00e7 WS |
28 | { |
29 | public: | |
30 | wxBusyInfo(const wxString& message, wxWindow *parent = NULL); | |
31 | ||
32 | virtual ~wxBusyInfo(); | |
33 | ||
34 | private: | |
35 | wxFrame *m_InfoFrame; | |
36 | ||
c0c133e1 | 37 | wxDECLARE_NO_COPY_CLASS(wxBusyInfo); |
b7ba00e7 WS |
38 | }; |
39 | ||
b7ba00e7 | 40 | #endif // wxUSE_BUSYINFO |
65391c8f | 41 | #endif // _WX_BUSYINFO_H_ |