1999-07-07 22:04:58 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: busyinfo.h
|
|
|
|
// Purpose: Information window (when app is busy)
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Copyright: (c) 1999 Vaclav Slavik
|
1999-07-11 15:56:57 +00:00
|
|
|
// RCS-ID: $Id$
|
1999-07-07 22:04:58 +00:00
|
|
|
// Licence: wxWindows Licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __INFOWIN_H__
|
|
|
|
#define __INFOWIN_H__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-07-11 15:56:57 +00:00
|
|
|
#pragma interface
|
1999-07-07 22:04:58 +00:00
|
|
|
#endif
|
|
|
|
|
1999-07-11 15:56:57 +00:00
|
|
|
#include "wx/wxprec.h"
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
#ifdef __BORDLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
1999-07-11 15:56:57 +00:00
|
|
|
#include "wx/frame.h"
|
1999-07-07 22:04:58 +00:00
|
|
|
|
1999-07-10 13:23:22 +00:00
|
|
|
#if wxUSE_BUSYINFO
|
1999-07-07 22:04:58 +00:00
|
|
|
|
1999-08-03 23:56:34 +00:00
|
|
|
class WXDLLEXPORT wxInfoFrame : public wxFrame
|
1999-07-07 22:04:58 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxInfoFrame(wxWindow *parent, const wxString& message);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
// wxBusyInfo
|
|
|
|
// Displays progress information
|
|
|
|
// Can be used in exactly same way as wxBusyCursor
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
|
1999-08-03 23:56:34 +00:00
|
|
|
class WXDLLEXPORT wxBusyInfo : public wxObject
|
1999-07-07 22:04:58 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxBusyInfo(const wxString& message);
|
|
|
|
~wxBusyInfo();
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxInfoFrame *m_InfoFrame;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
1999-07-10 13:23:22 +00:00
|
|
|
#endif
|