
We bake cookies in your browser for a better experience. Using this site means that you consent.Read More
TheQFormLayout class manages forms of input widgets and their associated labels.More...
| Header: | #include <QFormLayout> |
| Since: | Qt 4.4 |
| Inherits: | QLayout |
| enum | FieldGrowthPolicy { FieldsStayAtSizeHint, ExpandingFieldsGrow, AllNonFixedFieldsGrow } |
| enum | ItemRole { LabelRole, FieldRole, SpanningRole } |
| enum | RowWrapPolicy { DontWrapRows, WrapLongRows, WrapAllRows } |
|
|
| QFormLayout(QWidget * parent = 0) | |
| ~QFormLayout() | |
| void | addRow(QWidget * label, QWidget * field) |
| void | addRow(QWidget * label, QLayout * field) |
| void | addRow(const QString & labelText, QWidget * field) |
| void | addRow(const QString & labelText, QLayout * field) |
| void | addRow(QWidget * widget) |
| void | addRow(QLayout * layout) |
| FieldGrowthPolicy | fieldGrowthPolicy() const |
| Qt::Alignment | formAlignment() const |
| void | getItemPosition(int index, int * rowPtr, ItemRole * rolePtr) const |
| void | getLayoutPosition(QLayout * layout, int * rowPtr, ItemRole * rolePtr) const |
| void | getWidgetPosition(QWidget * widget, int * rowPtr, ItemRole * rolePtr) const |
| int | horizontalSpacing() const |
| void | insertRow(int row, QWidget * label, QWidget * field) |
| void | insertRow(int row, QWidget * label, QLayout * field) |
| void | insertRow(int row, const QString & labelText, QWidget * field) |
| void | insertRow(int row, const QString & labelText, QLayout * field) |
| void | insertRow(int row, QWidget * widget) |
| void | insertRow(int row, QLayout * layout) |
| QLayoutItem * | itemAt(int row, ItemRole role) const |
| Qt::Alignment | labelAlignment() const |
| QWidget * | labelForField(QWidget * field) const |
| QWidget * | labelForField(QLayout * field) const |
| int | rowCount() const |
| RowWrapPolicy | rowWrapPolicy() const |
| void | setFieldGrowthPolicy(FieldGrowthPolicy policy) |
| void | setFormAlignment(Qt::Alignment alignment) |
| void | setHorizontalSpacing(int spacing) |
| void | setItem(int row, ItemRole role, QLayoutItem * item) |
| void | setLabelAlignment(Qt::Alignment alignment) |
| void | setLayout(int row, ItemRole role, QLayout * layout) |
| void | setRowWrapPolicy(RowWrapPolicy policy) |
| void | setSpacing(int spacing) |
| void | setVerticalSpacing(int spacing) |
| void | setWidget(int row, ItemRole role, QWidget * widget) |
| int | spacing() const |
| int | verticalSpacing() const |
| virtual void | addItem(QLayoutItem * item) |
| virtual int | count() const |
| virtual Qt::Orientations | expandingDirections() const |
| virtual bool | hasHeightForWidth() const |
| virtual int | heightForWidth(int width) const |
| virtual void | invalidate() |
| virtual QLayoutItem * | itemAt(int index) const |
| virtual QSize | minimumSize() const |
| virtual void | setGeometry(const QRect & rect) |
| virtual QSize | sizeHint() const |
| virtual QLayoutItem * | takeAt(int index) |
TheQFormLayout class manages forms of input widgets and their associated labels.
QFormLayout is a convenience layout class that lays out its children in a two-column form. The left column consists of labels and the right column consists of "field" widgets (line editors, spin boxes, etc.).
Traditionally, such two-column form layouts were achieved usingQGridLayout.QFormLayout is a higher-level alternative that provides the following advantages:
For example, theMac OS X Aqua and KDE guidelines specify that the labels should be right-aligned, whereas Windows and GNOME applications normally use left-alignment.
For devices with small displays,QFormLayout can be set towrap long rows, or even towrap all rows.
TheaddRow() overload that takes aQString and aQWidget * creates aQLabel behind the scenes and automatically set up its buddy. We can then write code like this:
QFormLayout*formLayout=newQFormLayout;formLayout->addRow(tr("&Name:"), nameLineEdit);formLayout->addRow(tr("&Email:"), emailLineEdit);formLayout->addRow(tr("&Age:"), ageSpinBox);setLayout(formLayout);
Compare this with the following code, written usingQGridLayout:
nameLabel=newQLabel(tr("&Name:"));nameLabel->setBuddy(nameLineEdit);emailLabel=newQLabel(tr("&Name:"));emailLabel->setBuddy(emailLineEdit);ageLabel=newQLabel(tr("&Name:"));ageLabel->setBuddy(ageSpinBox);QGridLayout*gridLayout=newQGridLayout;gridLayout->addWidget(nameLabel,0,0);gridLayout->addWidget(nameLineEdit,0,1);gridLayout->addWidget(emailLabel,1,0);gridLayout->addWidget(emailLineEdit,1,1);gridLayout->addWidget(ageLabel,2,0);gridLayout->addWidget(ageSpinBox,2,1);setLayout(gridLayout);
The table below shows the default appearance in different styles.
| QCommonStyle derived styles (exceptQPlastiqueStyle) | QMacStyle | QPlastiqueStyle | Qt Extended styles |
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| Traditional style used for Windows, GNOME, and earlier versions of KDE. Labels are left aligned, and expanding fields grow to fill the available space. (This normally corresponds to what we would get using a two-columnQGridLayout.) | Style based on theMac OS X Aqua guidelines. Labels are right-aligned, the fields don't grow beyond their size hint, and the form is horizontally centered. | Recommended style forKDE applications. Similar to MacStyle, except that the form is left-aligned and all fields grow to fill the available space. | Default style for Qt Extended styles. Labels are right-aligned, expanding fields grow to fill the available space, and row wrapping is enabled for long lines. |
The form styles can be also be overridden individually by callingsetLabelAlignment(),setFormAlignment(),setFieldGrowthPolicy(), andsetRowWrapPolicy(). For example, to simulate the form layout appearance ofQMacStyle on all platforms, but with left-aligned labels, you could write:
formLayout->setRowWrapPolicy(QFormLayout::DontWrapRows);formLayout->setFieldGrowthPolicy(QFormLayout::FieldsStayAtSizeHint);formLayout->setFormAlignment(Qt::AlignHCenter|Qt::AlignTop);formLayout->setLabelAlignment(Qt::AlignLeft);
See alsoQGridLayout,QBoxLayout, andQStackedLayout.
This enum specifies the different policies that can be used to control the way in which the form's fields grow.
| Constant | Value | Description |
|---|---|---|
QFormLayout::FieldsStayAtSizeHint | 0 | The fields never grow beyond theireffective size hint. This is the default forQMacStyle. |
QFormLayout::ExpandingFieldsGrow | 1 | Fields with an horizontalsize policy ofExpanding orMinimumExpanding will grow to fill the available space. The other fields will not grow beyond their effective size hint. This is the default policy for Plastique. |
QFormLayout::AllNonFixedFieldsGrow | 2 | All fields with a size policy that allows them to grow will grow to fill the available space. This is the default policy for most styles. |
See alsofieldGrowthPolicy.
This enum specifies the types of widgets (or other layout items) that may appear in a row.
| Constant | Value | Description |
|---|---|---|
QFormLayout::LabelRole | 0 | A label widget. |
QFormLayout::FieldRole | 1 | A field widget. |
QFormLayout::SpanningRole | 2 | A widget that spans label and field columns. |
See alsoitemAt() andgetItemPosition().
This enum specifies the different policies that can be used to control the way in which the form's rows wrap.
| Constant | Value | Description |
|---|---|---|
QFormLayout::DontWrapRows | 0 | Fields are always laid out next to their label. This is the default policy for all styles except Qt Extended styles andQS60Style. |
QFormLayout::WrapLongRows | 1 | Labels are given enough horizontal space to fit the widest label, and the rest of the space is given to the fields. If the minimum size of a field pair is wider than the available space, the field is wrapped to the next line. This is the default policy for Qt Extended styles and andQS60Style. |
QFormLayout::WrapAllRows | 2 | Fields are always laid out below their label. |
See alsorowWrapPolicy.
This property holds the way in which the form's fields grow.
The default value depends on the widget or application style. ForQMacStyle, the default isFieldsStayAtSizeHint; forQCommonStyle derived styles (like Plastique and Windows), the default isExpandingFieldsGrow; for Qt Extended styles, the default isAllNonFixedFieldsGrow.
If none of the fields can grow and the form is resized, extra space is distributed according to the currentform alignment.
Access functions:
| FieldGrowthPolicy | fieldGrowthPolicy() const |
| void | setFieldGrowthPolicy(FieldGrowthPolicy policy) |
See alsoformAlignment androwWrapPolicy.
This property holds the alignment of the form layout's contents within the layout's geometry.
The default value depends on the widget or application style. ForQMacStyle, the default isQt::AlignHCenter |Qt::AlignTop; for the other styles, the default isQt::AlignLeft |Qt::AlignTop.
Access functions:
| Qt::Alignment | formAlignment() const |
| void | setFormAlignment(Qt::Alignment alignment) |
See alsolabelAlignment androwWrapPolicy.
This property holds the spacing between widgets that are laid out side by side.
By default, if no value is explicitly set, the layout's horizontal spacing is inherited from the parent layout, or from the style settings for the parent widget.
Access functions:
| int | horizontalSpacing() const |
| void | setHorizontalSpacing(int spacing) |
See alsoverticalSpacing,QStyle::pixelMetric(), andPM_LayoutHorizontalSpacing.
This property holds the horizontal alignment of the labels.
The default value depends on the widget or application style. ForQCommonStyle derived styles, except forQPlastiqueStyle, the default isQt::AlignLeft; for the other styles, the default isQt::AlignRight.
Access functions:
| Qt::Alignment | labelAlignment() const |
| void | setLabelAlignment(Qt::Alignment alignment) |
See alsoformAlignment.
This property holds the way in which the form's rows wrap.
The default value depends on the widget or application style. For Qt Extended styles andQS60Style, the default isWrapLongRows; for the other styles, the default isDontWrapRows.
If you want to display each label above its associated field (instead of next to it), set this property toWrapAllRows.
Access functions:
| RowWrapPolicy | rowWrapPolicy() const |
| void | setRowWrapPolicy(RowWrapPolicy policy) |
See alsofieldGrowthPolicy.
This property holds the spacing between widgets that are laid out vertically.
By default, if no value is explicitly set, the layout's vertical spacing is inherited from the parent layout, or from the style settings for the parent widget.
Access functions:
| int | verticalSpacing() const |
| void | setVerticalSpacing(int spacing) |
See alsohorizontalSpacing,QStyle::pixelMetric(), andPM_LayoutHorizontalSpacing.
Constructs a new form layout with the givenparent widget.
See alsoQWidget::setLayout().
Destroys the form layout.
[virtual]void QFormLayout::addItem(QLayoutItem * item)Reimplemented fromQLayout::addItem().
Adds a new row to the bottom of this form layout, with the givenlabel andfield.
See alsoinsertRow().
This is an overloaded function.
This is an overloaded function.
This overload automatically creates aQLabel behind the scenes withlabelText as its text. Thefield is set as the newQLabel'sbuddy.
This is an overloaded function.
This overload automatically creates aQLabel behind the scenes withlabelText as its text.
This is an overloaded function.
Adds the specifiedwidget at the end of this form layout. Thewidget spans both columns.
This is an overloaded function.
Adds the specifiedlayout at the end of this form layout. Thelayout spans both columns.
[virtual]int QFormLayout::count() constReimplemented fromQLayout::count().
[virtual]Qt::Orientations QFormLayout::expandingDirections() constReimplemented fromQLayoutItem::expandingDirections().
Retrieves the row and role (column) of the item at the specifiedindex. Ifindex is out of bounds, *rowPtr is set to -1; otherwise the row is stored in *rowPtr and the role is stored in *rolePtr.
See alsoitemAt(),count(),getLayoutPosition(), andgetWidgetPosition().
Retrieves the row and role (column) of the specified childlayout. Iflayout is not in the form layout, *rowPtr is set to -1; otherwise the row is stored in *rowPtr and the role is stored in *rolePtr.
Retrieves the row and role (column) of the specifiedwidget in the layout. Ifwidget is not in the layout, *rowPtr is set to -1; otherwise the row is stored in *rowPtr and the role is stored in *rolePtr.
See alsogetItemPosition() anditemAt().
[virtual]bool QFormLayout::hasHeightForWidth() constReimplemented fromQLayoutItem::hasHeightForWidth().
[virtual]int QFormLayout::heightForWidth(int width) constReimplemented fromQLayoutItem::heightForWidth().
Inserts a new row at positionrow in this form layout, with the givenlabel andfield. Ifrow is out of bounds, the new row is added at the end.
See alsoaddRow().
This is an overloaded function.
This is an overloaded function.
This overload automatically creates aQLabel behind the scenes withlabelText as its text. Thefield is set as the newQLabel'sbuddy.
This is an overloaded function.
This overload automatically creates aQLabel behind the scenes withlabelText as its text.
This is an overloaded function.
Inserts the specifiedwidget at positionrow in this form layout. Thewidget spans both columns. Ifrow is out of bounds, the widget is added at the end.
This is an overloaded function.
Inserts the specifiedlayout at positionrow in this form layout. Thelayout spans both columns. Ifrow is out of bounds, the widget is added at the end.
[virtual]void QFormLayout::invalidate()Reimplemented fromQLayoutItem::invalidate().
Returns the layout item in the givenrow with the specifiedrole (column). Returns 0 if there is no such item.
See alsoQLayout::itemAt() andsetItem().
[virtual]QLayoutItem * QFormLayout::itemAt(int index) constReimplemented fromQLayout::itemAt().
Returns the label associated with the givenfield.
See alsoitemAt().
This is an overloaded function.
[virtual]QSize QFormLayout::minimumSize() constReimplemented fromQLayoutItem::minimumSize().
Returns the number of rows in the form.
See alsoQLayout::count().
[virtual]void QFormLayout::setGeometry(constQRect & rect)Reimplemented fromQLayoutItem::setGeometry().
Sets the item in the givenrow for the givenrole toitem, extending the layout with empty rows if necessary.
If the cell is already occupied, theitem is not inserted and an error message is sent to the console. Theitem spans both columns.
Warning: Do not use this function to add child layouts or child widget items. UsesetLayout() orsetWidget() instead.
See alsosetLayout().
Sets the sub-layout in the givenrow for the givenrole tolayout, extending the form layout with empty rows if necessary.
If the cell is already occupied, thelayout is not inserted and an error message is sent to the console.
Note: For most applications,addRow() orinsertRow() should be used instead of setLayout().
See alsosetWidget().
This function sets both the vertical and horizontal spacing tospacing.
See alsospacing(),setVerticalSpacing(), andsetHorizontalSpacing().
Sets the widget in the givenrow for the givenrole towidget, extending the layout with empty rows if necessary.
If the cell is already occupied, thewidget is not inserted and an error message is sent to the console.
Note: For most applications,addRow() orinsertRow() should be used instead of setWidget().
See alsosetLayout().
[virtual]QSize QFormLayout::sizeHint() constReimplemented fromQLayoutItem::sizeHint().
If the vertical spacing is equal to the horizontal spacing, this function returns that value; otherwise it returns -1.
See alsosetSpacing(),verticalSpacing(), andhorizontalSpacing().
[virtual]QLayoutItem * QFormLayout::takeAt(int index)Reimplemented fromQLayout::takeAt().
© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.