#include <wx/sizer.h>

For more information, please see Programming with wxBoxSizer.
Public Member Functions | |
| wxBoxSizer (int orient) | |
| virtual wxSize | CalcMin () |
| int | GetOrientation () const |
| void | RecalcSizes () |
| wxBoxSizer::wxBoxSizer | ( | int | orient | ) |
Constructor for a wxBoxSizer. orient may be either of wxVERTICAL or wxHORIZONTAL for creating either a column sizer or a row sizer.
| virtual wxSize wxBoxSizer::CalcMin | ( | ) | [virtual] |
Implements the calculation of a box sizer's minimal.
It is used internally only and must not be called by the user. Documented for information.
Reimplemented from wxSizer.
| int wxBoxSizer::GetOrientation | ( | ) | const |
Returns the orientation of the box sizer, either wxVERTICAL or wxHORIZONTAL.
| void wxBoxSizer::RecalcSizes | ( | ) | [virtual] |
Implements the calculation of a box sizer's dimensions and then sets the size of its children (calling wxWindow::SetSize if the child is a window).
It is used internally only and must not be called by the user (call Layout() if you want to resize). Documented for information.
Reimplemented from wxSizer.
|
[ top ] |