]>
Commit | Line | Data |
---|---|---|
85ec2f26 RR |
1 | \section{\class{wxNotebookSizer}}\label{wxnotebooksizer} |
2 | ||
c6eb7785 VS |
3 | {\bf This class is deprecated and should not be used in new code! It is not |
4 | longer needed, \helpref{wxNotebook}{wxnotebook} control can be inserted | |
5 | into any sizer class and it's minimal size will be determined correctly. | |
6 | See \helpref{wxSizer overview}{sizeroverview} for more information.} | |
7 | ||
85ec2f26 RR |
8 | wxNotebookSizer is a specialized sizer to make sizers work in connection |
9 | with using notebooks. This sizer is different from any other sizer as | |
10 | you must not add any children to it - instead, it queries the notebook class itself. | |
11 | The only thing this sizer does is to determine the size of the biggest | |
12 | page of the notebook and report an adjusted minimal size to a more toplevel | |
13 | sizer. | |
14 | ||
85ec2f26 RR |
15 | \wxheading{Derived from} |
16 | ||
17 | \helpref{wxSizer}{wxsizer}\\ | |
18 | \helpref{wxObject}{wxobject} | |
19 | ||
0bf97466 RN |
20 | \wxheading{Include files} |
21 | ||
22 | <wx/sizer.h> | |
23 | ||
1c0c339c JS |
24 | \wxheading{See also} |
25 | ||
26 | \helpref{wxSizer}{wxsizer}, \helpref{wxNotebook}{wxnotebook}, \helpref{Sizer overview}{sizeroverview} | |
27 | ||
85ec2f26 RR |
28 | \latexignore{\rtfignore{\wxheading{Members}}} |
29 | ||
30 | \membersection{wxNotebookSizer::wxNotebookSizer}\label{wxnotebooksizerwxnotebooksizer} | |
31 | ||
32 | \func{}{wxNotebookSizer}{\param{wxNotebook* }{notebook}} | |
33 | ||
34 | Constructor. It takes an associated notebook as its only parameter. | |
35 | ||
36 | \membersection{wxNotebookSizer::GetNotebook}\label{wxnotebooksizergetnotebook} | |
37 | ||
38 | \func{wxNotebook*}{GetNotebook}{\void} | |
39 | ||
40 | Returns the notebook associated with the sizer. | |
41 |