]>
Commit | Line | Data |
---|---|---|
8fe05782 VZ |
1 | \section{\class{wxBoxSizer}}\label{wxboxsizer} |
2 | ||
be2577e4 | 3 | The basic idea behind a box sizer is that windows will most often be laid out in rather |
1912918c | 4 | simple basic geometry, typically in a row or a column or several hierarchies of either. |
515da557 | 5 | |
1c0c339c | 6 | For more information, please see \helpref{Programming with wxBoxSizer}{boxsizerprogramming}. |
8fe05782 | 7 | |
8fe05782 VZ |
8 | \wxheading{Derived from} |
9 | ||
36edded9 | 10 | \helpref{wxSizer}{wxsizer}\\ |
4130b487 | 11 | \helpref{wxObject}{wxobject} |
8fe05782 | 12 | |
0bf97466 RN |
13 | \wxheading{Include files} |
14 | ||
15 | <wx/sizer.h> | |
16 | ||
a7af285d VZ |
17 | \wxheading{Library} |
18 | ||
19 | \helpref{wxCore}{librarieslist} | |
20 | ||
1c0c339c JS |
21 | \wxheading{See also} |
22 | ||
23 | \helpref{wxSizer}{wxsizer}, \helpref{Sizer overview}{sizeroverview} | |
24 | ||
809e21b5 FM |
25 | |
26 | \latexignore{\rtfignore{\wxheading{Members}}} | |
27 | ||
8fe05782 VZ |
28 | \membersection{wxBoxSizer::wxBoxSizer}\label{wxboxsizerwxboxsizer} |
29 | ||
30 | \func{}{wxBoxSizer}{\param{int }{orient}} | |
31 | ||
515da557 RR |
32 | Constructor for a wxBoxSizer. {\it orient} may be either of wxVERTICAL |
33 | or wxHORIZONTAL for creating either a column sizer or a row sizer. | |
8fe05782 VZ |
34 | |
35 | \membersection{wxBoxSizer::RecalcSizes}\label{wxboxsizerrecalcsizes} | |
36 | ||
37 | \func{void}{RecalcSizes}{\void} | |
38 | ||
9c884972 | 39 | Implements the calculation of a box sizer's dimensions and then sets |
43e8916f | 40 | the size of its children (calling \helpref{wxWindow::SetSize}{wxwindowsetsize} |
be2577e4 | 41 | if the child is a window). It is used internally only and must not be called |
fab86f26 | 42 | by the user (call Layout() if you want to resize). Documented for information. |
8fe05782 VZ |
43 | |
44 | \membersection{wxBoxSizer::CalcMin}\label{wxboxsizercalcmin} | |
45 | ||
46 | \func{wxSize}{CalcMin}{\void} | |
47 | ||
9c884972 | 48 | Implements the calculation of a box sizer's minimal. It is used internally |
fa482912 | 49 | only and must not be called by the user. Documented for information. |
8fe05782 VZ |
50 | |
51 | \membersection{wxBoxSizer::GetOrientation}\label{wxboxsizergetorientation} | |
52 | ||
53 | \func{int}{GetOrientation}{\void} | |
54 | ||
fa482912 | 55 | Returns the orientation of the box sizer, either wxVERTICAL |
9c884972 RR |
56 | or wxHORIZONTAL. |
57 |