]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/busyinfo.h
Use RIAA wrapper for wxSpinCtrl event disabling in wxGTK.
[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 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
8
9 #ifndef _WX_BUSYINFO_H_
10 #define _WX_BUSYINFO_H_
11
12 #include "wx/defs.h"
13
14 #if wxUSE_BUSYINFO
15
16 #include "wx/object.h"
17
18 class WXDLLIMPEXP_FWD_CORE wxFrame;
19 class WXDLLIMPEXP_FWD_CORE wxWindow;
20
21 //--------------------------------------------------------------------------------
22 // wxBusyInfo
23 // Displays progress information
24 // Can be used in exactly same way as wxBusyCursor
25 //--------------------------------------------------------------------------------
26
27 class WXDLLIMPEXP_CORE 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 wxDECLARE_NO_COPY_CLASS(wxBusyInfo);
38 };
39
40 #endif // wxUSE_BUSYINFO
41 #endif // _WX_BUSYINFO_H_