wx/msw/gccpriv.h \
wx/msw/libraries.h \
wx/msw/mimetype.h \
+ wx/msw/mslu.h \
wx/msw/private.h \
wx/msw/stackwalk.h \
wx/msw/stdpaths.h \
wx/msw/gccpriv.h \
wx/msw/libraries.h \
wx/msw/mimetype.h \
+ wx/msw/mslu.h \
wx/msw/private.h \
wx/msw/stackwalk.h \
wx/msw/stdpaths.h \
wx/bitmap.h \
wx/bookctrl.h \
wx/busyinfo.h \
+ wx/generic/busyinfo.h \
wx/caret.h \
wx/choicebk.h \
wx/clipbrd.h \
wx/bitmap.h
wx/bookctrl.h
wx/busyinfo.h
+ wx/generic/busyinfo.h
wx/caret.h
wx/choicebk.h
wx/clipbrd.h
# End Source File
# Begin Source File
+SOURCE=..\..\include\wx\generic\busyinfo.h
+# End Source File
+# Begin Source File
+
SOURCE=..\..\include\wx\button.h
# End Source File
# Begin Source File
/////////////////////////////////////////////////////////////////////////////
-// Name: busyinfo.h
+// Name: wx/busyinfo.h
// Purpose: Information window (when app is busy)
// Author: Vaclav Slavik
// Copyright: (c) 1999 Vaclav Slavik
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifndef __INFOWIN_H__
-#define __INFOWIN_H__
+#ifndef __BUSYINFO_H_BASE__
+#define __BUSYINFO_H_BASE__
#include "wx/defs.h"
-#include "wx/frame.h"
-
#if wxUSE_BUSYINFO
-class WXDLLEXPORT wxInfoFrame : public wxFrame
-{
-public:
- wxInfoFrame(wxWindow *parent, const wxString& message);
-
-private:
- DECLARE_NO_COPY_CLASS(wxInfoFrame)
-};
-
-
-//--------------------------------------------------------------------------------
-// wxBusyInfo
-// Displays progress information
-// Can be used in exactly same way as wxBusyCursor
-//--------------------------------------------------------------------------------
-
-class WXDLLEXPORT wxBusyInfo : public wxObject
-{
-public:
- wxBusyInfo(const wxString& message, wxWindow *parent = NULL);
-
- virtual ~wxBusyInfo();
-
-private:
- wxInfoFrame *m_InfoFrame;
-
- DECLARE_NO_COPY_CLASS(wxBusyInfo)
-};
-
+#include "wx/generic/busyinfo.h"
-#endif
+#endif // wxUSE_BUSYINFO
-#endif
+#endif // __BUSYINFO_H_BASE__
--- /dev/null
+/////////////////////////////////////////////////////////////////////////////
+// Name: wx/generic/busyinfo.h
+// Purpose: Information window (when app is busy)
+// Author: Vaclav Slavik
+// Copyright: (c) 1999 Vaclav Slavik
+// RCS-ID: $Id$
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+#ifndef __BUSYINFO_H__
+#define __BUSYINFO_H__
+
+#include "wx/defs.h"
+
+#include "wx/frame.h"
+
+#if wxUSE_BUSYINFO
+
+class WXDLLIMPEXP_CORE wxFrame;
+
+//--------------------------------------------------------------------------------
+// wxBusyInfo
+// Displays progress information
+// Can be used in exactly same way as wxBusyCursor
+//--------------------------------------------------------------------------------
+
+class WXDLLEXPORT wxBusyInfo : public wxObject
+{
+public:
+ wxBusyInfo(const wxString& message, wxWindow *parent = NULL);
+
+ virtual ~wxBusyInfo();
+
+private:
+ wxFrame *m_InfoFrame;
+
+ DECLARE_NO_COPY_CLASS(wxBusyInfo)
+};
+
+
+#endif // wxUSE_BUSYINFO
+
+#endif // __BUSYINFO_H__
/////////////////////////////////////////////////////////////////////////////
-// Name: busyinfo.cpp
+// Name: src/generic/busyinfo.cpp
// Purpose: Information window when app is busy
// Author: Vaclav Slavik
// Copyright: (c) 1999 Vaclav Slavik
+// RCS-ID: $Id$
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#if wxUSE_BUSYINFO
-#include "wx/stattext.h"
-#include "wx/panel.h"
-#include "wx/utils.h"
+// for all others, include the necessary headers
+#ifndef WX_PRECOMP
+ #include "wx/stattext.h"
+ #include "wx/panel.h"
+ #include "wx/utils.h"
+#endif
+
#include "wx/busyinfo.h"
+class WXDLLEXPORT wxInfoFrame : public wxFrame
+{
+public:
+ wxInfoFrame(wxWindow *parent, const wxString& message);
+
+private:
+ DECLARE_NO_COPY_CLASS(wxInfoFrame)
+};
+
wxInfoFrame::wxInfoFrame(wxWindow *parent, const wxString& message)
: wxFrame(parent, wxID_ANY, wxT("Busy"),
m_InfoFrame->Close();
}
-#endif
- // wxUSE_BUSYINFO
-
+#endif // wxUSE_BUSYINFO