]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/generic/busyinfo.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / include / wx / generic / busyinfo.h
... / ...
CommitLineData
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
18class WXDLLIMPEXP_FWD_CORE wxFrame;
19class WXDLLIMPEXP_FWD_CORE wxWindow;
20
21//--------------------------------------------------------------------------------
22// wxBusyInfo
23// Displays progress information
24// Can be used in exactly same way as wxBusyCursor
25//--------------------------------------------------------------------------------
26
27class WXDLLIMPEXP_CORE wxBusyInfo : public wxObject
28{
29public:
30 wxBusyInfo(const wxString& message, wxWindow *parent = NULL);
31
32 virtual ~wxBusyInfo();
33
34private:
35 wxFrame *m_InfoFrame;
36
37 wxDECLARE_NO_COPY_CLASS(wxBusyInfo);
38};
39
40#endif // wxUSE_BUSYINFO
41#endif // _WX_BUSYINFO_H_