\latexignore{\rtfignore{\wxheading{Members}}}
-\membersection{wxNotebook::wxNotebook}\label{wxnotebookconstr}
+\membersection{wxNotebook::wxNotebook}\label{wxnotebookctor}
\func{}{wxNotebook}{\void}
\docparam{name}{The name of the control (used only under Motif).}
-\membersection{wxNotebook::\destruct{wxNotebook}}
+\membersection{wxNotebook::\destruct{wxNotebook}}\label{wxnotebookdtor}
\func{}{\destruct{wxNotebook}}{\void}
Adds a new page.
+The call to this function may generate the page changing events.
+
\wxheading{Parameters}
\docparam{page}{Specifies the new page.}
Cycles through the tabs.
+The call to this function generates the page changing events.
+
\membersection{wxNotebook::AssignImageList}\label{wxnotebookassignimagelist}
\func{void}{AssignImageList}{\param{wxImageList*}{ imageList}}
\func{bool}{Create}{\param{wxWindow*}{ parent}, \param{wxWindowID }{id}, \param{const wxPoint\&}{ pos = wxDefaultPosition},
\param{const wxSize\&}{ size}, \param{long}{ style = 0}, \param{const wxString\& }{name = "notebook"}}
-Creates a notebook control. See \helpref{wxNotebook::wxNotebook}{wxnotebookconstr} for a description
+Creates a notebook control. See \helpref{wxNotebook::wxNotebook}{wxnotebookctor} for a description
of the parameters.
\membersection{wxNotebook::DeleteAllPages}\label{wxnotebookdeleteallpages}
\membersection{wxNotebook::DeletePage}\label{wxnotebookdeletepage}
-\func{bool}{DeletePage}{\param{int}{ page}}
+\func{bool}{DeletePage}{\param{size\_t}{ page}}
Deletes the specified page, and the associated window.
+The call to this function generates the page changing events.
+
\membersection{wxNotebook::GetImageList}\label{wxnotebookgetimagelist}
\constfunc{wxImageList*}{GetImageList}{\void}
\membersection{wxNotebook::GetPage}\label{wxnotebookgetpage}
-\func{wxNotebookPage*}{GetPage}{\param{int}{ page}}
+\func{wxNotebookPage*}{GetPage}{\param{size\_t}{ page}}
Returns the window at the given page position.
\membersection{wxNotebook::GetPageCount}\label{wxnotebookgetpagecount}
-\constfunc{int}{GetPageCount}{\void}
+\constfunc{size\_t}{GetPageCount}{\void}
Returns the number of pages in the notebook control.
\membersection{wxNotebook::GetPageImage}\label{wxnotebookgetpageimage}
-\constfunc{int}{GetPageImage}{\param{int }{nPage}}
+\constfunc{int}{GetPageImage}{\param{size\_t }{nPage}}
Returns the image index for the given page.
\membersection{wxNotebook::GetPageText}\label{wxnotebookgetpagetext}
-\constfunc{wxString}{GetPageText}{\param{int }{nPage}}
+\constfunc{wxString}{GetPageText}{\param{size\_t }{nPage}}
Returns the string for the given page.
\membersection{wxNotebook::InsertPage}\label{wxnotebookinsertpage}
-\func{bool}{InsertPage}{\param{int}{ index}, \param{wxNotebookPage*}{ page},
+\func{bool}{InsertPage}{\param{size\_t}{ index}, \param{wxNotebookPage*}{ page},
\param{const wxString\&}{ text},
\param{bool}{ select = false},
\param{int}{ imageId = -1}}
\membersection{wxNotebook::RemovePage}\label{wxnotebookremovepage}
-\func{bool}{RemovePage}{\param{int}{ page}}
+\func{bool}{RemovePage}{\param{size\_t}{ page}}
Deletes the specified page, without deleting the associated window.
\membersection{wxNotebook::SetPageImage}\label{wxnotebooksetpageimage}
-\func{bool}{SetPageImage}{\param{int}{ page}, \param{int }{image}}
+\func{bool}{SetPageImage}{\param{size\_t}{ page}, \param{int }{image}}
Sets the image index for the given page. {\it image} is an index into
the image list which was set with \helpref{wxNotebook::SetImageList}{wxnotebooksetimagelist}.
\membersection{wxNotebook::SetPageText}\label{wxnotebooksetpagetext}
-\func{bool}{SetPageText}{\param{int}{ page}, \param{const wxString\& }{text}}
+\func{bool}{SetPageText}{\param{size\_t}{ page}, \param{const wxString\& }{text}}
Sets the text for the given page.
\membersection{wxNotebook::SetSelection}\label{wxnotebooksetselection}
-\func{int}{SetSelection}{\param{int}{ page}}
+\func{int}{SetSelection}{\param{size\_t}{ page}}
Sets the selection for the given page, returning the previous selection.
+The call to this function generates the page changing events.
+
\wxheading{See also}
\helpref{wxNotebook::GetSelection}{wxnotebookgetselection}