]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/splitter.h
revised base64.h;bitmap.h
[wxWidgets.git] / interface / splitter.h
index 8a0fa9e393155a74d6ab606c933ecae0b0393b04..145f7db4914d7c5bd56c0c705ab3c10f23a3a027 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        splitter.h
-// Purpose:     documentation for wxSplitterWindow class
+// Purpose:     interface of wxSplitterWindow
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -41,8 +41,7 @@
     @library{wxcore}
     @category{miscwnd}
 
-    @seealso
-    wxSplitterEvent
+    @see wxSplitterEvent
 */
 class wxSplitterWindow : public wxWindow
 {
@@ -102,7 +101,7 @@ public:
         
         @see SetMinimumPaneSize()
     */
-    int GetMinimumPaneSize();
+    int GetMinimumPaneSize() const;
 
     /**
         Returns the current sash gravity.
@@ -124,17 +123,17 @@ public:
         @see SetSplitMode(), SplitVertically(),
              SplitHorizontally().
     */
-    int GetSplitMode();
+    int GetSplitMode() const;
 
     /**
         Returns the left/top or only pane.
     */
-    wxWindow* GetWindow1();
+    wxWindow* GetWindow1() const;
 
     /**
         Returns the right/bottom pane.
     */
-    wxWindow* GetWindow2();
+    wxWindow* GetWindow2() const;
 
     /**
         Initializes the splitter window to have one pane.  The child window is
@@ -153,7 +152,7 @@ public:
     /**
         Returns @true if the window is split, @false otherwise.
     */
-    bool IsSplit();
+    bool IsSplit() const;
 
     /**
         Application-overridable function called when the sash is double-clicked with
@@ -365,6 +364,7 @@ public:
 };
 
 
+
 /**
     @class wxSplitterEvent
     @wxheader{splitter.h}
@@ -379,8 +379,7 @@ public:
     @library{wxcore}
     @category{events}
 
-    @seealso
-    wxSplitterWindow, @ref overview_eventhandlingoverview
+    @see wxSplitterWindow, @ref overview_eventhandlingoverview
 */
 class wxSplitterEvent : public wxNotifyEvent
 {
@@ -397,7 +396,7 @@ public:
         wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING and
         wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED events.
     */
-    int GetSashPosition();
+    int GetSashPosition() const;
 
     /**
         Returns a pointer to the window being removed when a splitter window
@@ -405,21 +404,21 @@ public:
         May only be called while processing
         wxEVT_COMMAND_SPLITTER_UNSPLIT events.
     */
-    wxWindow* GetWindowBeingRemoved();
+    wxWindow* GetWindowBeingRemoved() const;
 
     /**
         Returns the x coordinate of the double-click point.
         May only be called while processing
         wxEVT_COMMAND_SPLITTER_DOUBLECLICKED events.
     */
-    int GetX();
+    int GetX() const;
 
     /**
         Returns the y coordinate of the double-click point.
         May only be called while processing
         wxEVT_COMMAND_SPLITTER_DOUBLECLICKED events.
     */
-    int GetY();
+    int GetY() const;
 
     /**
         In the case of wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED events,
@@ -437,3 +436,4 @@ public:
     */
     void SetSashPosition(int pos);
 };
+