X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c913512a4c9f36e11e07ea707002fab1608d324..3f16e52c1396f7d58b29b2eea22d7715f0f4596b:/interface/splash.h diff --git a/interface/splash.h b/interface/splash.h index 57df843ad2..ae408f6bb0 100644 --- a/interface/splash.h +++ b/interface/splash.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: splash.h -// Purpose: documentation for wxSplashScreen class +// Purpose: interface of wxSplashScreen // Author: wxWidgets team // RCS-ID: $Id$ // Licence: wxWindows license @@ -40,16 +40,13 @@ public: Construct the splash screen passing a bitmap, a style, a timeout, a window id, optional position and size, and a window style. - - @e splashStyle is a bitlist of some of the following: - + @a splashStyle is a bitlist of some of the following: wxSPLASH_CENTRE_ON_PARENT wxSPLASH_CENTRE_ON_SCREEN wxSPLASH_NO_CENTRE wxSPLASH_TIMEOUT wxSPLASH_NO_TIMEOUT - - @e milliseconds is the timeout in milliseconds. + @a milliseconds is the timeout in milliseconds. */ wxSplashScreen(const wxBitmap& bitmap, long splashStyle, int milliseconds, @@ -68,17 +65,17 @@ public: Returns the splash style (see wxSplashScreen() for details). */ - long GetSplashStyle(); + long GetSplashStyle() const; /** Returns the window used to display the bitmap. */ - wxSplashScreenWindow* GetSplashWindow(); + wxSplashScreenWindow* GetSplashWindow() const; /** Returns the timeout in milliseconds. */ - int GetTimeout(); + int GetTimeout() const; /** Reimplement this event handler if you want to set an application variable on @@ -86,3 +83,4 @@ public: */ void OnCloseWindow(wxCloseEvent& event); }; +