wxFileDialog displays current dir now, wxTipProvider uses statictext for headline messagebox (and other) dialogs now always display an OK buttons, unless wxYES_NO is given Appending a menu to a menu bar after having called wxFrame::SetMenuBar() should now work Added test to configure so that it correctly sets compiler flags etc if GCC is used on Solaris and IRIX instead of CC, also changed default shared library create to GCC from G++ on some platforms (as previously already Linux) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3429 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
28 lines
970 B
TeX
28 lines
970 B
TeX
\section{\class{wxStaticBoxSizer}}\label{wxstaticboxsizer}
|
|
|
|
wxStaticBoxSizer is a sizer derived from wxBoxSizer. It is useful for
|
|
layouts which make use of static boxes in connection with sizers.
|
|
|
|
See also \helpref{wxSizer}{wxsizer}, \helpref{wxStaticBox}{wxstaticbox} and
|
|
\helpref{wxBoxSizer}{wxboxsizer}.
|
|
|
|
\wxheading{Derived from}
|
|
|
|
\helpref{wxBoxSizer}{wxboxsizer}\\
|
|
\helpref{wxSizer}{wxsizer}\\
|
|
\helpref{wxObject}{wxobject}
|
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
\membersection{wxStaticBoxSizer::wxStaticBoxSizer}\label{wxstaticboxsizerwxstaticboxsizer}
|
|
|
|
\func{}{wxStaticBoxSizer}{\param{wxStaticBox* }{box}, \param{int }{orient}}
|
|
|
|
Constructor. It takes an associated static box and the orientation {\it orient}
|
|
as parameters - orient can be either of wxVERTICAL or wxHORIZONTAL.
|
|
|
|
\membersection{wxStaticBoxSizer::GetStaticBox}\label{wxstaticboxsizergetstaticbox}
|
|
|
|
\func{wxStaticBox*}{GetStaticBox}{\void}
|
|
|
|
Returns the static box associated with the sizer. |