1 \section{\class{wxNotebook
}}\label{wxnotebook
}
3 This class represents a notebook control, which manages multiple windows with associated tabs.
5 To use the class, create a wxNotebook object and call
\helpref{AddPage
}{wxnotebookaddpage
} or
\helpref{InsertPage
}{wxnotebookinsertpage
},
6 passing a window to be used as the page. Do not explicitly delete the window for a page that is currently
9 {\bf wxNotebookPage
} is a typedef for wxWindow.
11 \wxheading{Derived from
}
13 \helpref{wxControl
}{wxcontrol
}\\
14 \helpref{wxWindow
}{wxwindow
}\\
15 \helpref{wxEvtHandler
}{wxevthandler
}\\
16 \helpref{wxObject
}{wxobject
}
18 \wxheading{Include files
}
22 \wxheading{Window styles
}
25 \begin{twocollist
}\itemsep=
0pt
27 \twocolitem{\windowstyle{wxNB
\_LEFT}}{Place tabs on the left side. Not supported under Windows XP.
}
28 \twocolitem{\windowstyle{wxNB
\_RIGHT}}{Place tabs on the right side. Not supported under Windows XP.
}
29 \twocolitem{\windowstyle{wxNB
\_BOTTOM}}{Place tabs under instead of above the notebook pages. Not supported under Windows XP.
}
30 \twocolitem{\windowstyle{wxNB
\_FIXEDWIDTH}}{(Windows only) All tabs will have same width.
}
31 \twocolitem{\windowstyle{wxNB
\_MULTILINE}}{(Windows only) There can be several rows of tabs.
}
35 See also
\helpref{window styles overview
}{windowstyles
}.
41 \helpref{wxNotebookEvent
}{wxnotebookevent
},
\helpref{wxImageList
}{wximagelist
},
\rtfsp
42 \helpref{wxTabCtrl
}{wxtabctrl
}
44 \latexignore{\rtfignore{\wxheading{Members
}}}
46 \membersection{wxNotebook::wxNotebook
}\label{wxnotebookconstr
}
48 \func{}{wxNotebook
}{\void}
52 \func{}{wxNotebook
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{id
},
\param{const wxPoint\&
}{ pos = wxDefaultPosition
},
53 \param{const wxSize\&
}{ size = wxDefaultSize
},
\param{long
}{ style =
0},
\param{const wxString\&
}{name = "notebook"
}}
55 Constructs a notebook control.
57 Note that sometimes you can reduce flicker by passing the wxCLIP
\_CHILDREN window style.
59 \wxheading{Parameters
}
61 \docparam{parent
}{The parent window. Must be non-NULL.
}
63 \docparam{id
}{The window identifier.
}
65 \docparam{pos
}{The window position.
}
67 \docparam{size
}{The window size.
}
69 \docparam{style
}{The window style. See
\helpref{wxNotebook
}{wxnotebook
}.
}
71 \docparam{name
}{The name of the control (used only under Motif).
}
73 \membersection{wxNotebook::
\destruct{wxNotebook
}}
75 \func{}{\destruct{wxNotebook
}}{\void}
77 Destroys the wxNotebook object.
79 \membersection{wxNotebook::AddPage
}\label{wxnotebookaddpage
}
81 \func{bool
}{AddPage
}{\param{wxNotebookPage*
}{ page
},
82 \param{const wxString\&
}{ text
},
83 \param{bool
}{ select = false
},
84 \param{int
}{ imageId = -
1}}
88 \wxheading{Parameters
}
90 \docparam{page
}{Specifies the new page.
}
92 \docparam{text
}{Specifies the text for the new page.
}
94 \docparam{select
}{Specifies whether the page should be selected.
}
96 \docparam{imageId
}{Specifies the optional image index for the new page.
}
98 \wxheading{Return value
}
100 true if successful, false otherwise.
104 Do not delete the page, it will be deleted by the notebook.
108 \helpref{wxNotebook::InsertPage
}{wxnotebookinsertpage
}
110 \membersection{wxNotebook::AdvanceSelection
}\label{wxnotebookadvanceselection
}
112 \func{void
}{AdvanceSelection
}{\param{bool
}{ forward = true
}}
114 Cycles through the tabs.
116 \membersection{wxNotebook::AssignImageList
}\label{wxnotebookassignimagelist
}
118 \func{void
}{AssignImageList
}{\param{wxImageList*
}{ imageList
}}
120 Sets the image list for the page control and takes ownership of
125 \helpref{wxImageList
}{wximagelist
},
126 \helpref{SetImageList
}{wxnotebooksetimagelist
}
128 \membersection{wxNotebook::Create
}\label{wxnotebookcreate
}
130 \func{bool
}{Create
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{id
},
\param{const wxPoint\&
}{ pos = wxDefaultPosition
},
131 \param{const wxSize\&
}{ size
},
\param{long
}{ style =
0},
\param{const wxString\&
}{name = "notebook"
}}
133 Creates a notebook control. See
\helpref{wxNotebook::wxNotebook
}{wxnotebookconstr
} for a description
136 \membersection{wxNotebook::DeleteAllPages
}\label{wxnotebookdeleteallpages
}
138 \func{bool
}{DeleteAllPages
}{\void}
142 \membersection{wxNotebook::DeletePage
}\label{wxnotebookdeletepage
}
144 \func{bool
}{DeletePage
}{\param{int
}{ page
}}
146 Deletes the specified page, and the associated window.
148 \membersection{wxNotebook::GetImageList
}\label{wxnotebookgetimagelist
}
150 \constfunc{wxImageList*
}{GetImageList
}{\void}
152 Returns the associated image list.
156 \helpref{wxImageList
}{wximagelist
},
\helpref{wxNotebook::SetImageList
}{wxnotebooksetimagelist
}
158 \membersection{wxNotebook::GetPage
}\label{wxnotebookgetpage
}
160 \func{wxNotebookPage*
}{GetPage
}{\param{int
}{ page
}}
162 Returns the window at the given page position.
164 \membersection{wxNotebook::GetPageCount
}\label{wxnotebookgetpagecount
}
166 \constfunc{int
}{GetPageCount
}{\void}
168 Returns the number of pages in the notebook control.
170 \membersection{wxNotebook::GetPageImage
}\label{wxnotebookgetpageimage
}
172 \constfunc{int
}{GetPageImage
}{\param{int
}{nPage
}}
174 Returns the image index for the given page.
176 \membersection{wxNotebook::GetPageText
}\label{wxnotebookgetpagetext
}
178 \constfunc{wxString
}{GetPageText
}{\param{int
}{nPage
}}
180 Returns the string for the given page.
182 \membersection{wxNotebook::GetRowCount
}\label{wxnotebookgetrowcount
}
184 \constfunc{int
}{GetRowCount
}{\void}
186 Returns the number of rows in the notebook control.
188 \membersection{wxNotebook::GetSelection
}\label{wxnotebookgetselection
}
190 \constfunc{int
}{GetSelection
}{\void}
192 Returns the currently selected page, or $-
1$ if none was selected.
194 Note that this method may return either the previously or newly selected page
195 when called from the
{\tt EVT
\_NOTEBOOK\_PAGE\_CHANGED} handler depending on
196 the platform and so
\rtfsp
197 \helpref{wxNotebookEvent::GetSelection
}{wxnotebookeventgetselection
} should be
198 used instead in this case.
200 \membersection{wxNotebook::HitTest
}\label{wxnotebookhittest
}
202 \func{int
}{HitTest
}{\param{const wxPoint\&
}{ pt
},
\param{long
}{ *flags =
{\tt NULL
}}}
204 Returns the index of the tab at the specified position or
{\tt wxNOT
\_FOUND}
205 if none. If
{\it flags
} parameter is non
{\tt NULL
}, the position of the point
206 inside the tab is returned as well.
208 {\bf NB:
} This method is currently only implemented under wxMSW and wxUniv.
210 \wxheading{Parameters
}
212 \docparam{pt
}{Specifies the point for the hit test.
}
214 \docparam{flags
}{Return value for detailed information. One of the following values:
216 \begin{twocollist
}\itemsep=
0pt
217 \twocolitem{{\bf wxNB
\_HITTEST\_NOWHERE}}{There was no tab under this point.
}
218 \twocolitem{{\bf wxNB
\_HITTEST\_ONICON}}{The point was over an icon (currently wxMSW only).
}
219 \twocolitem{{\bf wxNB
\_HITTEST\_ONLABEL}}{The point was over a label (currently wxMSW only).
}
220 \twocolitem{{\bf wxNB
\_HITTEST\_ONITEM}}{The point was over an item, but not on the label or icon.
}
224 \wxheading{Return value
}
226 Returns the zero-based tab index or
{\tt wxNOT
\_FOUND} if there is no tab is at
227 the specified position.
230 \membersection{wxNotebook::InsertPage
}\label{wxnotebookinsertpage
}
232 \func{bool
}{InsertPage
}{\param{int
}{ index
},
\param{wxNotebookPage*
}{ page
},
233 \param{const wxString\&
}{ text
},
234 \param{bool
}{ select = false
},
235 \param{int
}{ imageId = -
1}}
237 Inserts a new page at the specified position.
239 \wxheading{Parameters
}
241 \docparam{index
}{Specifies the position for the new page.
}
243 \docparam{page
}{Specifies the new page.
}
245 \docparam{text
}{Specifies the text for the new page.
}
247 \docparam{select
}{Specifies whether the page should be selected.
}
249 \docparam{imageId
}{Specifies the optional image index for the new page.
}
251 \wxheading{Return value
}
253 true if successful, false otherwise.
257 Do not delete the page, it will be deleted by the notebook.
261 \helpref{wxNotebook::AddPage
}{wxnotebookaddpage
}
263 \membersection{wxNotebook::OnSelChange
}\label{wxnotebookonselchange
}
265 \func{void
}{OnSelChange
}{\param{wxNotebookEvent\&
}{ event
}}
267 An event handler function, called when the page selection is changed.
271 \helpref{wxNotebookEvent
}{wxnotebookevent
}
273 \membersection{wxNotebook::RemovePage
}\label{wxnotebookremovepage
}
275 \func{bool
}{RemovePage
}{\param{int
}{ page
}}
277 Deletes the specified page, without deleting the associated window.
279 \membersection{wxNotebook::SetImageList
}\label{wxnotebooksetimagelist
}
281 \func{void
}{SetImageList
}{\param{wxImageList*
}{ imageList
}}
283 Sets the image list for the page control. It does not take
284 ownership of the image list, you must delete it yourself.
288 \helpref{wxImageList
}{wximagelist
},
289 \helpref{AssignImageList
}{wxnotebookassignimagelist
}
291 \membersection{wxNotebook::SetPadding
}\label{wxnotebooksetpadding
}
293 \func{void
}{SetPadding
}{\param{const wxSize\&
}{ padding
}}
295 Sets the amount of space around each page's icon and label, in pixels.
297 {\bf NB:
} The vertical padding cannot be changed in wxGTK.
299 \membersection{wxNotebook::SetPageSize
}\label{wxnotebooksetpagesize
}
301 \func{void
}{SetPageSize
}{\param{const wxSize\&
}{ size
}}
303 Sets the width and height of the pages.
305 {\bf NB:
} This method is currently not implemented for wxGTK.
307 \membersection{wxNotebook::SetPageImage
}\label{wxnotebooksetpageimage
}
309 \func{bool
}{SetPageImage
}{\param{int
}{ page
},
\param{int
}{image
}}
311 Sets the image index for the given page.
{\it image
} is an index into
312 the image list which was set with
\helpref{wxNotebook::SetImageList
}{wxnotebooksetimagelist
}.
314 \membersection{wxNotebook::SetPageText
}\label{wxnotebooksetpagetext
}
316 \func{bool
}{SetPageText
}{\param{int
}{ page
},
\param{const wxString\&
}{text
}}
318 Sets the text for the given page.
320 \membersection{wxNotebook::SetSelection
}\label{wxnotebooksetselection
}
322 \func{int
}{SetSelection
}{\param{int
}{ page
}}
324 Sets the selection for the given page, returning the previous selection.
328 \helpref{wxNotebook::GetSelection
}{wxnotebookgetselection
}