*** empty log message ***
[wxWidgets.git] / include / wx / busyinfo.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: 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 __INFOWIN_H__
10 #define __INFOWIN_H__
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #endif
15
16 #include <wx/wxprec.h>
17
18 #ifdef __BORDLANDC__
19 #pragma hdrstop
20 #endif
21
22 #ifndef WXPRECOMP
23 #include <wx/wx.h>
24 #endif
25
26
27 #include <wx/dialog.h>
28
29
30
31
32 class wxInfoFrame : public wxFrame
33 {
34 public:
35 wxInfoFrame(wxWindow *parent, const wxString& message);
36 };
37
38
39 //--------------------------------------------------------------------------------
40 // wxBusyInfo
41 // Displays progress information
42 // Can be used in exactly same way as wxBusyCursor
43 //--------------------------------------------------------------------------------
44
45 class wxBusyInfo : public wxObject
46 {
47 public:
48 wxBusyInfo(const wxString& message);
49 ~wxBusyInfo();
50
51 private:
52 wxInfoFrame *m_InfoFrame;
53 };
54
55
56 #endif
57
58