Adjust Spacing and Margins between Widgets in Layout: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Style)
(Localisation)
Line 1: Line 1:
[[Category:HowTo]]
[[Category:HowTo]]
{{LangSwitch}}
== Overview ==
== Overview ==
To adjust margins and spacing between {{DocLink|QWidget}}s use the following methods {{DocLinkAnchorLbl|QLayout|spacing-prop|setSpacing}} and {{DocLinkAnchorLbl|QLayout|contentsMargins|setContentsMargins}} that are implemented in class {{DocLink|QLayout}}.
To adjust margins and spacing between {{DocLink|QWidget}}s use the following methods {{DocLinkAnchorLbl|QLayout|spacing-prop|setSpacing}} and {{DocLinkAnchorLbl|QLayout|contentsMargins|setContentsMargins}} that are implemented in class {{DocLink|QLayout}}.

Revision as of 19:59, 12 March 2015

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

Overview

To adjust margins and spacing between QWidgets use the following methods setSpacing and setContentsMargins that are implemented in class QLayout.

Example

This code snippet shows how to remove spacing and margins between widgets in instance of QVBoxLayout.

pLayout = new QVBoxLayout(this);

pLayout->setSpacing(0);
pLayout->setMargin(0);

pLayout->setContentsMargins(0,0,0,0);

pLayout->addWidget(m_pLabel, 0, Qt::AlignTop);
pLayout->addWidget(m_pButton, 0, Qt::AlignTop);

setLayout(pLayout);