X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3f4fc7967b595ea8257696baff78e1866511223d..0532a2588121690115f4629cdcbc41d2049e50c0:/include/wx/generic/splash.h diff --git a/include/wx/generic/splash.h b/include/wx/generic/splash.h index f8e4d7c7a3..dc5c195930 100644 --- a/include/wx/generic/splash.h +++ b/include/wx/generic/splash.h @@ -16,8 +16,13 @@ #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() };