]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/busyinfo.h
Resets scroll position on load
[wxWidgets.git] / include / wx / busyinfo.h
index be907a80cdfc913979d0e5b54e9dffe5fd1056a3..b22c910f7108d1fbd549985fd0f62bccd9d22ddd 100644 (file)
@@ -4,30 +4,25 @@
 // Author:      Vaclav Slavik
 // Copyright:   (c) 1999 Vaclav Slavik
 // RCS-ID:      $Id$
-// Licence:     wxWindows Licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __INFOWIN_H__
 #define __INFOWIN_H__
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "wx/wxprec.h"
-
-#ifdef __BORDLANDC__
-#pragma hdrstop
-#endif
+#include "wx/defs.h"
 
 #include "wx/frame.h"
 
 #if wxUSE_BUSYINFO
 
-class wxInfoFrame : public wxFrame
+class WXDLLEXPORT wxInfoFrame : public wxFrame
 {
-    public:
-        wxInfoFrame(wxWindow *parent, const wxString& message);
+public:
+    wxInfoFrame(wxWindow *parent, const wxString& message);
+
+private:
+    DECLARE_NO_COPY_CLASS(wxInfoFrame)
 };
 
 
@@ -37,14 +32,17 @@ class wxInfoFrame : public wxFrame
 //                  Can be used in exactly same way as wxBusyCursor
 //--------------------------------------------------------------------------------
 
-class wxBusyInfo : public wxObject
+class WXDLLEXPORT wxBusyInfo : public wxObject
 {
-    public:
-        wxBusyInfo(const wxString& message);
-        ~wxBusyInfo();
+public:
+    wxBusyInfo(const wxString& message, wxWindow *parent = NULL);
+
+    virtual ~wxBusyInfo();
+
+private:
+    wxInfoFrame *m_InfoFrame;
 
-    private:
-        wxInfoFrame *m_InfoFrame;
+    DECLARE_NO_COPY_CLASS(wxBusyInfo)
 };