1999-08-13 16:33:19 -04:00
|
|
|
\section{\class{wxStaticBoxSizer}}\label{wxstaticboxsizer}
|
|
|
|
|
1999-08-21 09:54:32 -04:00
|
|
|
wxStaticBoxSizer is a sizer derived from wxBoxSizer but adds a static
|
2005-01-21 15:56:39 -05:00
|
|
|
box around the sizer. This static box has to be created independently or the
|
|
|
|
sizer may create it itself as a convenience.
|
1999-08-13 16:33:19 -04:00
|
|
|
|
|
|
|
\wxheading{Derived from}
|
|
|
|
|
1999-08-19 14:41:41 -04:00
|
|
|
\helpref{wxBoxSizer}{wxboxsizer}\\
|
|
|
|
\helpref{wxSizer}{wxsizer}\\
|
|
|
|
\helpref{wxObject}{wxobject}
|
1999-08-13 16:33:19 -04:00
|
|
|
|
2004-09-23 19:17:12 -04:00
|
|
|
\wxheading{Include files}
|
|
|
|
|
|
|
|
<wx/sizer.h>
|
|
|
|
|
2002-01-27 14:58:13 -05:00
|
|
|
\wxheading{See also}
|
|
|
|
|
|
|
|
\helpref{wxSizer}{wxsizer}, \helpref{wxStaticBox}{wxstaticbox}, \helpref{wxBoxSizer}{wxboxsizer}, \helpref{Sizer overview}{sizeroverview}
|
|
|
|
|
1999-08-13 16:33:19 -04:00
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
|
2005-01-21 15:56:39 -05:00
|
|
|
|
1999-08-13 16:33:19 -04:00
|
|
|
\membersection{wxStaticBoxSizer::wxStaticBoxSizer}\label{wxstaticboxsizerwxstaticboxsizer}
|
|
|
|
|
|
|
|
\func{}{wxStaticBoxSizer}{\param{wxStaticBox* }{box}, \param{int }{orient}}
|
|
|
|
|
2005-01-25 10:59:24 -05:00
|
|
|
\func{}{wxStaticBoxSizer}{\param{int }{orient}, \param{wxWindow }{*parent}, \param{const wxString\& }{label = wxEmptyString}}
|
2005-01-21 15:56:39 -05:00
|
|
|
|
|
|
|
The first constructor uses an already existing static box. It takes the
|
|
|
|
associated static box and the orientation \arg{orient}, which can be either
|
|
|
|
\texttt{wxVERTICAL} or \texttt{wxHORIZONTAL} as parameters.
|
|
|
|
|
|
|
|
The second one creates a new static box with the given label and parent window.
|
|
|
|
|
1999-08-13 16:33:19 -04:00
|
|
|
|
|
|
|
\membersection{wxStaticBoxSizer::GetStaticBox}\label{wxstaticboxsizergetstaticbox}
|
|
|
|
|
|
|
|
\func{wxStaticBox*}{GetStaticBox}{\void}
|
|
|
|
|
1999-09-05 15:42:03 -04:00
|
|
|
Returns the static box associated with the sizer.
|
|
|
|
|