]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/busyinfo.h
Provide shorter synonyms for wxEVT_XXX constants.
[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 _WX_BUSYINFO_H_
11 #define _WX_BUSYINFO_H_
12
13 #include "wx/defs.h"
14
15 #if wxUSE_BUSYINFO
16
17 #include "wx/object.h"
18
19 class WXDLLIMPEXP_FWD_CORE wxFrame;
20 class WXDLLIMPEXP_FWD_CORE wxWindow;
21
22 //--------------------------------------------------------------------------------
23 // wxBusyInfo
24 // Displays progress information
25 // Can be used in exactly same way as wxBusyCursor
26 //--------------------------------------------------------------------------------
27
28 class WXDLLIMPEXP_CORE wxBusyInfo : public wxObject
29 {
30 public:
31 wxBusyInfo(const wxString& message, wxWindow *parent = NULL);
32
33 virtual ~wxBusyInfo();
34
35 private:
36 wxFrame *m_InfoFrame;
37
38 wxDECLARE_NO_COPY_CLASS(wxBusyInfo);
39 };
40
41 #endif // wxUSE_BUSYINFO
42 #endif // _WX_BUSYINFO_H_