X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..dae87f93abd93555095575886b8b1ef126f0a0da:/docs/latex/wx/nbsizer.tex diff --git a/docs/latex/wx/nbsizer.tex b/docs/latex/wx/nbsizer.tex index 9a9f915704..6450f8dba5 100644 --- a/docs/latex/wx/nbsizer.tex +++ b/docs/latex/wx/nbsizer.tex @@ -1,5 +1,10 @@ \section{\class{wxNotebookSizer}}\label{wxnotebooksizer} +{\bf This class is deprecated and should not be used in new code! It is not +longer needed, \helpref{wxNotebook}{wxnotebook} control can be inserted +into any sizer class and it's minimal size will be determined correctly. +See \helpref{wxSizer overview}{sizeroverview} for more information.} + wxNotebookSizer is a specialized sizer to make sizers work in connection with using notebooks. This sizer is different from any other sizer as you must not add any children to it - instead, it queries the notebook class itself. @@ -7,36 +12,18 @@ The only thing this sizer does is to determine the size of the biggest page of the notebook and report an adjusted minimal size to a more toplevel sizer. -In order to query the size of notebook page, this page needs to have its -own sizer, otherwise the wxNotebookSizer will ignore it. Notebook pages -get there sizer by assiging one to them using \helpref{wxWindow::SetSizer}{wxwindowsetsizer} -and setting the auto-layout option to TRUE using -\helpref{wxWindow::SetAutoLayout}{wxwindowsetautolayout}. Here is one -example showing how to add a notebook page that the notebook sizer is -aware of: - -\begin{verbatim} - wxNotebook *notebook = new wxNotebook( &dialog, -1 ); - wxNotebookSizer *nbs = new wxNotebookSizer( notebook ); - - // Add panel as notebook page - wxPanel *panel = new wxPanel( notebook, -1 ); - notebook->AddPage( panel, "My Notebook Page" ); - - wxBoxSizer *panelsizer = new wxBoxSizer( wxVERTICAL ); +\wxheading{Derived from} - // Add controls to panel and panelsizer here... +\helpref{wxSizer}{wxsizer}\\ +\helpref{wxObject}{wxobject} - panel->SetAutoLayout( TRUE ); - panel->SetSizer( panelsizer ); -\end{verbatim} +\wxheading{Include files} -See also \helpref{wxSizer}{wxsizer}, \helpref{wxNotebook}{wxnotebook}. + -\wxheading{Derived from} +\wxheading{See also} -\helpref{wxSizer}{wxsizer}\\ -\helpref{wxObject}{wxobject} +\helpref{wxSizer}{wxsizer}, \helpref{wxNotebook}{wxnotebook}, \helpref{Sizer overview}{sizeroverview} \latexignore{\rtfignore{\wxheading{Members}}}