X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3f4fc7967b595ea8257696baff78e1866511223d..87d77923a6b62816336e53abd4217a119f14675d:/include/wx/generic/splash.h

diff --git a/include/wx/generic/splash.h b/include/wx/generic/splash.h
index f8e4d7c7a3..a3ccfa3897 100644
--- a/include/wx/generic/splash.h
+++ b/include/wx/generic/splash.h
@@ -9,15 +9,20 @@
 // Licence:
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
 #pragma interface "splash.h"
 #endif
 
 #ifndef _WX_SPLASH_H_
 #define _WX_SPLASH_H_
 
-#include "wx/frame.h"
+#ifndef WX_PRECOMP
+#include "wx/bitmap.h"
 #include "wx/timer.h"
+#endif
+
+#include "wx/frame.h"
+
 
 /*
  * A window for displaying a splash screen
@@ -38,7 +43,13 @@ class WXDLLEXPORT wxSplashScreenWindow;
 class WXDLLEXPORT wxSplashScreen: public wxFrame
 {
 public:
-    wxSplashScreen(const wxBitmap& bitmap, long splashStyle, int milliseconds, wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSIMPLE_BORDER|wxFRAME_FLOAT_ON_PARENT);
+    // for RTTI macros only
+    wxSplashScreen() {};
+    wxSplashScreen(const wxBitmap& bitmap, long splashStyle, int milliseconds,
+                   wxWindow* parent, wxWindowID id,
+                   const wxPoint& pos = wxDefaultPosition,
+                   const wxSize& size = wxDefaultSize,
+                   long style = wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP);
     ~wxSplashScreen();
 
     void OnCloseWindow(wxCloseEvent& event);
@@ -54,7 +65,9 @@ protected:
     int                     m_milliseconds;
     wxTimer                 m_timer;
 
+DECLARE_DYNAMIC_CLASS(wxSplashScreen)
 DECLARE_EVENT_TABLE()
+    DECLARE_NO_COPY_CLASS(wxSplashScreen)
 };
 
 /*