.BI "int \fBmargin\fR - the width of the outside border of the layout"
.br
.ti -1c
.BI "ResizeMode \fBresizeMode\fR - the resize mode of the layout"
.br
.ti -1c
.BI "int \fBspacing\fR - the spacing between widgets inside the layout"
.br
.in -1c
.SS "Protected Members"
.in +1c
.ti -1c
.BI "void \fBaddChildLayout\fR ( QLayout * l )"
.br
.ti -1c
.BI "void \fBdeleteAllItems\fR ()"
.br
.ti -1c
.BI "void \fBsetSupportsMargin\fR ( bool b )"
.br
.ti -1c
.BI "QRect \fBalignmentRect\fR ( const QRect & r ) const"
.br
.in -1c
.SH DESCRIPTION
The QLayout class is the base class of geometry managers.
.PP
This is an abstract base class inherited by the concrete classes, QBoxLayout and QGridLayout.
.PP
For users of QLayout subclasses or of QMainWindow there is seldom any need to use the basic functions provided by QLayout, such as setResizeMode() or setMenuBar(). See the layout overview page for more information.
.PP
To make your own layout manager, subclass QGLayoutIterator and implement the functions addItem(), sizeHint(), setGeometry(), and iterator(). You should also implement minimumSize() to ensure your layout isn't resized to zero size if there is too little space. To support children whose heights depend on their widths, implement hasHeightForWidth() and heightForWidth(). See the custom layout page for an in-depth description.
.PP
Geometry management stops when the layout manager is deleted.
.PP
See also Widget Appearance and Style and Layout Management.
.SS "Member Type Documentation"
.SH "QLayout::ResizeMode"
The possible values are:
.TP
\fCQLayout::Auto\fR - If the main widget is a top-level widget with no height-for-width (hasHeightForWidth()), this is the same as \fCMinimium\fR; otherwise, this is the same as FreeResize.
.TP
\fCQLayout::Fixed\fR - The main widget's size is set to sizeHint(); it cannot be resized at all.
.TP
\fCQLayout::Minimum\fR - The main widget's minimum size is set to minimumSize(); it cannot be smaller.
.TP
\fCQLayout::FreeResize\fR - The widget is not constrained.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QLayout::QLayout ( QWidget * parent, int margin = 0, int spacing = -1, const char * name = 0 )"
Constructs a new top-level QLayout called \fIname\fR, with main widget \fIparent\fR. \fIparent\fR may not be 0.
.PP
The \fImargin\fR is the number of pixels between the edge of the widget and the managed children. The \fIspacing\fR sets the value of spacing(), which gives the spacing between the managed widgets. If \fIspacing\fR is -1 (the default), spacing is set to the value of \fImargin\fR.
.PP
There can be only one top-level layout for a widget. It is returned by QWidget::layout()
.SH "QLayout::QLayout ( QLayout * parentLayout, int spacing = -1, const char * name = 0 )"
Constructs a new child QLayout called \fIname\fR, and places it inside \fIparentLayout\fR by using the default placement defined by addItem().
.PP
If \fIspacing\fR is -1, this QLayout inherits \fIparentLayout\fR's spacing(), otherwise the value of \fIspacing\fR is used.
.SH "QLayout::QLayout ( int spacing = -1, const char * name = 0 )"
Constructs a new child QLayout called \fIname\fR. If \fIspacing\fR is -1, this QLayout inherits its parent's spacing(); otherwise the value of \fIspacing\fR is used.
.PP
This layout has to be inserted into another layout before geometry management will work.
.SH "bool QLayout::activate ()"
Redoes the layout for mainWidget(). You should generally not need to call this because it is automatically called at the most appropriate times.
.PP
However, if you set up a QLayout for a visible widget without resizing that widget, you will need to call this function in order to lay it out.
.PP
See also QWidget::updateGeometry().
.PP
Examples:
.)l layout/layout.cpp, popup/popup.cpp, scrollview/scrollview.cpp, and sql/overview/form1/main.cpp.
.SH "void QLayout::add ( QWidget * w )"
Adds widget \fIw\fR to this layout in a manner specific to the layout. This function uses addItem().
.PP
Examples:
.)l customlayout/border.cpp and customlayout/main.cpp.
.SH "void QLayout::addChildLayout ( QLayout * l )\fC [protected]\fR"
This function is called from addLayout() functions in subclasses to add layout \fIl\fR as a sub-layout.
Returns the rectangle that should be covered when the geometry of this layout is set to \fIr\fR, provided that this layout supports setAlignment().
.PP
The result is derived from sizeHint() and expanding(). It is never larger than \fIr\fR.
.SH "bool QLayout::autoAdd () const"
Returns TRUE if this layout automatically grabs all new mainWidget()'s new children and adds them as defined by addItem(); otherwise returns FALSE. This has effect only for top-level layouts, i.e. layouts that are direct children of their mainWidget().
.PP
autoAdd() is disabled by default.
.PP
Note that a top-level layout is not necessarily associated with the top-level widget.
Returns whether this layout can make use of more space than sizeHint(). A value of Vertical or Horizontal means that it wants to grow in only one dimension, whereas \fCBothDirections\fR means that it wants to grow in both dimensions.
.PP
The default implementation returns \fCBothDirections\fR.
.PP
Examples:
.)l customlayout/border.cpp and customlayout/flow.cpp.
.PP
Reimplemented from QLayoutItem.
.PP
Reimplemented in QGridLayout and QBoxLayout.
.SH "void QLayout::invalidate ()\fC [virtual]\fR"
Invalidates cached information. Reimplementations must call this.
Returns the maximum size of this layout. This is the largest size that the layout can have while still respecting the specifications. Does not include what's needed by margin() or menuBar().
.PP
The default implementation allows unlimited resizing.
.PP
Reimplemented from QLayoutItem.
.PP
Reimplemented in QGridLayout and QBoxLayout.
.SH "QMenuBar * QLayout::menuBar () const"
Returns the menu bar set for this layout, or 0 if no menu bar is set.
Returns the minimum size of this layout. This is the smallest size that the layout can have while still respecting the specifications. Does not include what's needed by margin() or menuBar().
.PP
The default implementation allows unlimited resizing.
.PP
Examples:
.)l customlayout/border.cpp, customlayout/card.cpp, and customlayout/flow.cpp.
.PP
Reimplemented from QLayoutItem.
.PP
Reimplemented in QGridLayout and QBoxLayout.
.SH "void QLayout::remove ( QWidget * widget )"
Removes the widget \fIwidget\fR from the layout. After this call, it is the caller's responsibility to give the widget a reasonable geometry or to put the widget back into a layout.
.PP
See also removeItem(), QWidget::geometry, and add().
Removes the layout item \fIitem\fR from the layout. It is the caller's responsibility to delete the item.
.PP
Notice that \fIitem\fR can be a layout (since QLayout inherits QLayoutItem).
.PP
See also remove() and addItem().
.SH "ResizeMode QLayout::resizeMode () const"
Returns the resize mode of the layout. See the "resizeMode" property for details.
.SH "void QLayout::setAutoAdd ( bool b )\fC [virtual]\fR"
If \fIb\fR is TRUE, auto-add is enabled; otherwise auto-add is disabled.
.PP
\fBWarning:\fR If auto-add is enabled, you cannot set stretch factors on the child widgets until the widgets are actually inserted in the layout (after control returned to the event loop). We therefore recommend that you avoid the auto-add feature in new programs.
.PP
See also autoAdd().
.PP
Examples:
.)l hierarchy/objects.cpp and i18n/main.cpp.
.SH "void QLayout::setEnabled ( bool enable )"
Enables this layout if \fIenable\fR is TRUE, otherwise disables it.
.PP
An enabled layout adjusts dynamically to changes; a disabled layout acts as if it did not exist.
This function is reimplemented in subclasses to perform layout.
.PP
The default implementation maintains the geometry() information given by rect \fIr\fR. Reimplementors must call this function.
.PP
Examples:
.)l customlayout/border.cpp, customlayout/card.cpp, and customlayout/flow.cpp.
.PP
Reimplemented from QLayoutItem.
.PP
Reimplemented in QGridLayout and QBoxLayout.
.SH "void QLayout::setMargin ( int )\fC [virtual]\fR"
Sets the width of the outside border of the layout. See the "margin" property for details.
.SH "void QLayout::setMenuBar ( QMenuBar * w )\fC [virtual]\fR"
Makes the geometry manager take account of the menu bar \fIw\fR. All child widgets are placed below the bottom edge of the menu bar.
.PP
A menu bar does its own geometry management: never do addWidget() on a QMenuBar.
.PP
Examples:
.)l layout/layout.cpp and scrollview/scrollview.cpp.
.SH "void QLayout::setResizeMode ( ResizeMode )"
Sets the resize mode of the layout. See the "resizeMode" property for details.
.SH "void QLayout::setSpacing ( int )\fC [virtual]\fR"
Sets the spacing between widgets inside the layout. See the "spacing" property for details.
.SH "void QLayout::setSupportsMargin ( bool b )\fC [protected]\fR"
Sets the value returned by supportsMargin(). If \fIb\fR is TRUE, margin() handling is implemented by the subclass. If \fIb\fR is FALSE (the default), QLayout will add margin() around top-level layouts.
.PP
If \fIb\fR is TRUE, margin handling needs to be implemented in setGeometry(), maximumSize(), minimumSize(), sizeHint() and heightForWidth().
.PP
See also supportsMargin().
.SH "int QLayout::spacing () const"
Returns the spacing between widgets inside the layout. See the "spacing" property for details.
.SH "bool QLayout::supportsMargin () const"
Returns TRUE if this layout supports QLayout::margin on non-top-level layouts; otherwise returns FALSE.
.PP
See also margin.
.SS "Property Documentation"
.SH "int margin"
This property holds the width of the outside border of the layout.
.PP
For some layout classes this property has an effect only on top-level layouts; QBoxLayout and QGridLayout support margins for child layouts. The default value is 0.
.PP
See also spacing.
.PP
Set this property's value with setMargin() and get this property's value with margin().
.SH "ResizeMode resizeMode"
This property holds the resize mode of the layout.
.PP
The default mode is Auto.
.PP
See also QLayout::ResizeMode.
.PP
Set this property's value with setResizeMode() and get this property's value with resizeMode().
.SH "int spacing"
This property holds the spacing between widgets inside the layout.
.PP
The default value is -1, which signifies that the layout's spacing should not override the widget's spacing.
.PP
See also margin.
.PP
Set this property's value with setSpacing() and get this property's value with spacing().