]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/bookctrl.h
Make storing non-trivial data in wxThreadSpecificInfo possible.
[wxWidgets.git] / interface / wx / bookctrl.h
index bbffcc27d62b01a7c3cbfb5d7e9b062078789a73..8545629faa7d1a0417dd4fcafc63ab28c6f24167 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        bookctrl.h
 // Purpose:     interface of wxBookCtrlBase
 // Author:      wxWidgets team
 // Name:        bookctrl.h
 // Purpose:     interface of wxBookCtrlBase
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -167,7 +166,7 @@ public:
     wxWindow* GetCurrentPage() const;
 
     /**
     wxWindow* GetCurrentPage() const;
 
     /**
-        Sets the selection for the given page, returning the previous selection.
+        Sets the selection to the given page, returning the previous selection.
 
         Notice that the call to this function generates the page changing
         events, use the ChangeSelection() function if you don't want these
 
         Notice that the call to this function generates the page changing
         events, use the ChangeSelection() function if you don't want these
@@ -184,7 +183,7 @@ public:
     void AdvanceSelection(bool forward = true);
 
     /**
     void AdvanceSelection(bool forward = true);
 
     /**
-        Changes the selection for the given page, returning the previous selection.
+        Changes the selection to the given page, returning the previous selection.
 
         This function behaves as SetSelection() but does @em not generate the
         page changing events.
 
         This function behaves as SetSelection() but does @em not generate the
         page changing events.
@@ -193,6 +192,17 @@ public:
     */
     virtual int ChangeSelection(size_t page) = 0;
 
     */
     virtual int ChangeSelection(size_t page) = 0;
 
+    /**
+        Returns the index of the specified tab window or @c wxNOT_FOUND
+        if not found.
+
+        @param page One of the control pages.
+        @return The zero-based tab index or @c wxNOT_FOUND if not found.
+
+        @since 2.9.5
+    */
+    int FindPage(const wxWindow* page) const;
+
     //@}
 
 
     //@}