]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/splash.h
further prototype revisions; rename interface/aui.h to interface/framemanager.h since...
[wxWidgets.git] / interface / splash.h
index 57df843ad2a9a32f6bba3b268d2d3bd9c7d73d80..ae408f6bb0c8fd157202bb257fb42bdeccf0510a 100644 (file)
@@ -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);
 };
+