]>
Commit | Line | Data |
---|---|---|
8fe05782 VZ |
1 | \section{\class{wxStaticBoxSizer}}\label{wxstaticboxsizer} |
2 | ||
4130b487 | 3 | wxStaticBoxSizer is a sizer derived from wxBoxSizer but adds a static |
e978011a VZ |
4 | box around the sizer. This static box may be either created independently or |
5 | the sizer may create it itself as a convenience. In any case, the sizer owns | |
6 | the \helpref{wxStaticBox}{wxstaticbox} control and will delete it if it is | |
7 | deleted. | |
8fe05782 | 8 | |
8fe05782 VZ |
9 | \wxheading{Derived from} |
10 | ||
9c884972 RR |
11 | \helpref{wxBoxSizer}{wxboxsizer}\\ |
12 | \helpref{wxSizer}{wxsizer}\\ | |
13 | \helpref{wxObject}{wxobject} | |
8fe05782 | 14 | |
0bf97466 RN |
15 | \wxheading{Include files} |
16 | ||
17 | <wx/sizer.h> | |
18 | ||
a7af285d VZ |
19 | \wxheading{Library} |
20 | ||
21 | \helpref{wxCore}{librarieslist} | |
22 | ||
1c0c339c JS |
23 | \wxheading{See also} |
24 | ||
25 | \helpref{wxSizer}{wxsizer}, \helpref{wxStaticBox}{wxstaticbox}, \helpref{wxBoxSizer}{wxboxsizer}, \helpref{Sizer overview}{sizeroverview} | |
26 | ||
8fe05782 VZ |
27 | \latexignore{\rtfignore{\wxheading{Members}}} |
28 | ||
6c1635b5 | 29 | |
8fe05782 VZ |
30 | \membersection{wxStaticBoxSizer::wxStaticBoxSizer}\label{wxstaticboxsizerwxstaticboxsizer} |
31 | ||
32 | \func{}{wxStaticBoxSizer}{\param{wxStaticBox* }{box}, \param{int }{orient}} | |
33 | ||
732e46f5 | 34 | \func{}{wxStaticBoxSizer}{\param{int }{orient}, \param{wxWindow }{*parent}, \param{const wxString\& }{label = wxEmptyString}} |
6c1635b5 VZ |
35 | |
36 | The first constructor uses an already existing static box. It takes the | |
37 | associated static box and the orientation \arg{orient}, which can be either | |
38 | \texttt{wxVERTICAL} or \texttt{wxHORIZONTAL} as parameters. | |
39 | ||
40 | The second one creates a new static box with the given label and parent window. | |
41 | ||
8fe05782 VZ |
42 | |
43 | \membersection{wxStaticBoxSizer::GetStaticBox}\label{wxstaticboxsizergetstaticbox} | |
44 | ||
45 | \func{wxStaticBox*}{GetStaticBox}{\void} | |
46 | ||
7e9a386e JS |
47 | Returns the static box associated with the sizer. |
48 |