wxboxsizerthe basic idea behind a box sizer is that windows will most often be laid out in rather simple basic geometry, typically in a row or a column or several hierarchies of either. for more information, please see programming with wxboxsizer. derived from include files <wx/sizer.h> see also
wxboxsizer::wxboxsizer
wxboxsizer::wxboxsizerwxboxsizer(int orient) constructor for a wxboxsizer. orient may be either of wxvertical or wxhorizontal for creating either a column sizer or a row sizer.
wxboxsizer::recalcsizesvoid recalcsizes() 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. documented for information.
wxboxsizer::calcminwxsize calcmin() 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.
wxboxsizer::getorientationint getorientation() returns the orientation of the box sizer, either wxvertical or wxhorizontal.
|