]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/splash.h
Changed the default style flags on wxSplashScreen
[wxWidgets.git] / include / wx / generic / splash.h
index f8e4d7c7a37078e9b257e59fb8a8b59ce80102cb..dc5c195930cf9d89ff82c17b60566fbcef9dcdd5 100644 (file)
 #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,6 +65,7 @@ protected:
     int                     m_milliseconds;
     wxTimer                 m_timer;
 
+DECLARE_DYNAMIC_CLASS(wxSplashScreen)
 DECLARE_EVENT_TABLE()
 };