]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/auinotebook.tex
fix typo in Selecting() description (bug 1726270)
[wxWidgets.git] / docs / latex / wx / auinotebook.tex
index fadedc161ce03a39b0bf5500b76d38cadc0307d4..b7d3ba59219f59af9359346c47000000a2f847ab 100644 (file)
@@ -87,6 +87,12 @@ Returns the associated art provider.
 
 Returns the page specified by the given index.
 
+\membersection{wxAuiNotebook::GetPageBitmap}\label{wxauinotebookgetpagebitmap}
+
+\constfunc{wxBitmap}{GetPageBitmap}{\param{size\_t }{page}}
+
+Returns the tab bitmap for the page.
+
 \membersection{wxAuiNotebook::GetPageCount}\label{wxauinotebookgetpagecount}
 
 \constfunc{size\_t}{GetPageCount}{\void}
@@ -97,7 +103,14 @@ Returns the number of pages in the notebook.
 
 \constfunc{int}{GetPageIndex}{\param{wxWindow* }{page\_wnd}}
 
-Returns the page index for the specified window.  If the window is not found in the notebook, wxNOT_FOUND is returned.
+Returns the page index for the specified window.  If the window is not found in
+the notebook, wxNOT\_FOUND is returned.
+
+\membersection{wxAuiNotebook::GetPageText}\label{wxauinotebookgetpagetext}
+
+\constfunc{wxString}{GetPageText}{\param{size\_t }{page}}
+
+Returns the tab label for the page.
 
 \membersection{wxAuiNotebook::GetSelection}\label{wxauinotebookgetselection}
 
@@ -162,3 +175,15 @@ if some tabs don't have bitmaps.  Passing wxDefaultSize to this function will
 instruct the control to use dynamic tab height, which is the default behaviour.
 Under the default behaviour, when a tab with a large bitmap is added, the tab control's
 height will automatically increase to accommodate the larger bitmap.
+
+\func{void}{Split}{\param{size\_t }{page}, \param{int }{direction}}
+
+Split performs a split operation programmatically. The argument \arg{page} indicates
+the page that will be split off.  This page will also become the active page after the
+split.  The \arg{direction} argument specifies where the pane should go, it should be one
+of the following: wxTOP, wxBOTTOM, wxLEFT, or wxRIGHT.
+
+
+
+
+