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