QSizePolicy Class

The QSizePolicy class is a layout attribute describing horizontal and vertical resizing policy. 更多...

头文件: #include <QSizePolicy>
qmake: QT += widgets

公有类型

enum ControlType { DefaultType, ButtonBox, CheckBox, ComboBox, ..., ToolButton }
flags ControlTypes
enum Policy { Fixed, Minimum, Maximum, Preferred, ..., Ignored }
enum PolicyFlag { GrowFlag, ExpandFlag, ShrinkFlag, IgnoreFlag }

公有函数

QSizePolicy()
QSizePolicy(Policy horizontal, Policy vertical, ControlType type = DefaultType)
ControlType controlType() const
Qt::Orientations expandingDirections() const
bool hasHeightForWidth() const
bool hasWidthForHeight() const
Policy horizontalPolicy() const
int horizontalStretch() const
bool retainSizeWhenHidden() const
void setControlType(ControlType type)
void setHeightForWidth(bool dependent)
void setHorizontalPolicy(Policy policy)
void setHorizontalStretch(int stretchFactor)
void setRetainSizeWhenHidden(bool retainSize)
void setVerticalPolicy(Policy policy)
void setVerticalStretch(int stretchFactor)
void setWidthForHeight(bool dependent)
void transpose()
QSizePolicy transposed() const
Policy verticalPolicy() const
int verticalStretch() const
operator QVariant() const
bool operator!=(const QSizePolicy &other) const
bool operator==(const QSizePolicy &other) const
uint qHash(QSizePolicy key, uint seed = 0)
QDataStream &operator<<(QDataStream &stream, const QSizePolicy &policy)
QDataStream &operator>>(QDataStream &stream, QSizePolicy &policy)

详细描述

The QSizePolicy class is a layout attribute describing horizontal and vertical resizing policy.

The size policy of a widget is an expression of its willingness to be resized in various ways, and affects how the widget is treated by the layout engine. Each widget returns a QSizePolicy that describes the horizontal and vertical resizing policy it prefers when being laid out. You can change this for a specific widget by changing its QWidget::sizePolicy property.

QSizePolicy contains two independent QSizePolicy::Policy values and two stretch factors; one describes the widgets's horizontal size policy, and the other describes its vertical size policy. It also contains a flag to indicate whether the height and width of its preferred size are related.

The horizontal and vertical policies can be set in the constructor, and altered using the setHorizontalPolicy() and setVerticalPolicy() functions. The stretch factors can be set using the setHorizontalStretch() and setVerticalStretch() functions. The flag indicating whether the widget's sizeHint() is width-dependent (such as a menu bar or a word-wrapping label) can be set using the setHeightForWidth() function.

The current size policies and stretch factors be retrieved using the horizontalPolicy(), verticalPolicy(), horizontalStretch() and verticalStretch() functions. Alternatively, use the transpose() function to swap the horizontal and vertical policies and stretches. The hasHeightForWidth() function returns the current status of the flag indicating the size hint dependencies.

Use the expandingDirections() function to determine whether the associated widget can make use of more space than its sizeHint() function indicates, as well as find out in which directions it can expand.

Finally, the QSizePolicy class provides operators comparing this size policy to a given policy, as well as a QVariant operator storing this QSizePolicy as a QVariant object.

参见 QSize, QWidget::sizeHint(), QWidget::sizePolicy, and QLayoutItem::sizeHint().

成员类型

enum QSizePolicy::ControlType
flags QSizePolicy::ControlTypes

This enum specifies the different types of widgets in terms of layout interaction:

ConstantValueDescription
QSizePolicy::DefaultType0x00000001The default type, when none is specified.
QSizePolicy::ButtonBox0x00000002A QDialogButtonBox instance.
QSizePolicy::CheckBox0x00000004A QCheckBox instance.
QSizePolicy::ComboBox0x00000008A QComboBox instance.
QSizePolicy::Frame0x00000010A QFrame instance.
QSizePolicy::GroupBox0x00000020A QGroupBox instance.
QSizePolicy::Label0x00000040A QLabel instance.
QSizePolicy::Line0x00000080A QFrame instance with QFrame::HLine or QFrame::VLine.
QSizePolicy::LineEdit0x00000100A QLineEdit instance.
QSizePolicy::PushButton0x00000200A QPushButton instance.
QSizePolicy::RadioButton0x00000400A QRadioButton instance.
QSizePolicy::Slider0x00000800A QAbstractSlider instance.
QSizePolicy::SpinBox0x00001000A QAbstractSpinBox instance.
QSizePolicy::TabWidget0x00002000A QTabWidget instance.
QSizePolicy::ToolButton0x00004000A QToolButton instance.

This enum was introduced or modified in Qt 4.3.

The ControlTypes type is a typedef for QFlags<ControlType>. It stores an OR combination of ControlType values.

参见 setControlType() and controlType().

enum QSizePolicy::Policy

This enum describes the various per-dimension sizing types used when constructing a QSizePolicy.

ConstantValueDescription
QSizePolicy::Fixed0The QWidget::sizeHint() is the only acceptable alternative, so the widget can never grow or shrink (e.g. the vertical direction of a push button).
QSizePolicy::MinimumGrowFlagThe sizeHint() is minimal, and sufficient. The widget can be expanded, but there is no advantage to it being larger (e.g. the horizontal direction of a push button). It cannot be smaller than the size provided by sizeHint().
QSizePolicy::MaximumShrinkFlagThe sizeHint() is a maximum. The widget can be shrunk any amount without detriment if other widgets need the space (e.g. a separator line). It cannot be larger than the size provided by sizeHint().
QSizePolicy::PreferredGrowFlag | ShrinkFlagThe sizeHint() is best, but the widget can be shrunk and still be useful. The widget can be expanded, but there is no advantage to it being larger than sizeHint() (the default QWidget policy).
QSizePolicy::ExpandingGrowFlag | ShrinkFlag | ExpandFlagThe sizeHint() is a sensible size, but the widget can be shrunk and still be useful. The widget can make use of extra space, so it should get as much space as possible (e.g. the horizontal direction of a horizontal slider).
QSizePolicy::MinimumExpandingGrowFlag | ExpandFlagThe sizeHint() is minimal, and sufficient. The widget can make use of extra space, so it should get as much space as possible (e.g. the horizontal direction of a horizontal slider).
QSizePolicy::IgnoredShrinkFlag | GrowFlag | IgnoreFlagThe sizeHint() is ignored. The widget will get as much space as possible.

参见 PolicyFlag, setHorizontalPolicy(), and setVerticalPolicy().

enum QSizePolicy::PolicyFlag

These flags are combined together to form the various Policy values:

ConstantValueDescription
QSizePolicy::GrowFlag1The widget can grow beyond its size hint if necessary.
QSizePolicy::ExpandFlag2The widget should get as much space as possible.
QSizePolicy::ShrinkFlag4The widget can shrink below its size hint if necessary.
QSizePolicy::IgnoreFlag8The widget's size hint is ignored. The widget will get as much space as possible.

参见 Policy.

成员函数

QSizePolicy::QSizePolicy()

Constructs a QSizePolicy object with Fixed as its horizontal and vertical policies.

The policies can be altered using the setHorizontalPolicy() and setVerticalPolicy() functions. Use the setHeightForWidth() function if the preferred height of the widget is dependent on the width of the widget (for example, a QLabel with line wrapping).

参见 setHorizontalStretch() and setVerticalStretch().

QSizePolicy::QSizePolicy(Policy horizontal, Policy vertical, ControlType type = DefaultType)

Constructs a QSizePolicy object with the given horizontal and vertical policies, and the specified control type.

Use setHeightForWidth() if the preferred height of the widget is dependent on the width of the widget (for example, a QLabel with line wrapping).

This function was introduced in Qt 4.3.

参见 setHorizontalStretch(), setVerticalStretch(), and controlType().

ControlType QSizePolicy::controlType() const

Returns the control type associated with the widget for which this size policy applies.

This function was introduced in Qt 4.3.

参见 setControlType().

Qt::Orientations QSizePolicy::expandingDirections() const

Returns whether a widget can make use of more space than the QWidget::sizeHint() function indicates.

A value of Qt::Horizontal or Qt::Vertical means that the widget can grow horizontally or vertically (i.e., the horizontal or vertical policy is Expanding or MinimumExpanding), whereas Qt::Horizontal | Qt::Vertical means that it can grow in both dimensions.

参见 horizontalPolicy() and verticalPolicy().

bool QSizePolicy::hasHeightForWidth() const

Returns true if the widget's preferred height depends on its width; otherwise returns false.

参见 setHeightForWidth().

bool QSizePolicy::hasWidthForHeight() const

Returns true if the widget's width depends on its height; otherwise returns false.

参见 setWidthForHeight().

Policy QSizePolicy::horizontalPolicy() const

Returns the horizontal component of the size policy.

参见 setHorizontalPolicy(), verticalPolicy(), and horizontalStretch().

int QSizePolicy::horizontalStretch() const

Returns the horizontal stretch factor of the size policy.

参见 setHorizontalStretch(), verticalStretch(), and horizontalPolicy().

bool QSizePolicy::retainSizeWhenHidden() const

Returns whether the layout should retain the widget's size when it is hidden. This is false by default.

This function was introduced in Qt 5.2.

参见 setRetainSizeWhenHidden().

void QSizePolicy::setControlType(ControlType type)

Sets the control type associated with the widget for which this size policy applies to type.

The control type specifies the type of the widget for which this size policy applies. It is used by some styles, notably QMacStyle, to insert proper spacing between widgets. For example, the macOS Aqua guidelines specify that push buttons should be separated by 12 pixels, whereas vertically stacked radio buttons only require 6 pixels.

This function was introduced in Qt 4.3.

参见 controlType() and QStyle::layoutSpacing().

void QSizePolicy::setHeightForWidth(bool dependent)

Sets the flag determining whether the widget's preferred height depends on its width, to dependent.

参见 hasHeightForWidth() and setWidthForHeight().

void QSizePolicy::setHorizontalPolicy(Policy policy)

Sets the horizontal component to the given policy.

参见 horizontalPolicy(), setVerticalPolicy(), and setHorizontalStretch().

void QSizePolicy::setHorizontalStretch(int stretchFactor)

Sets the horizontal stretch factor of the size policy to the given stretchFactor. stretchFactor must be in the range [0,255].

When two widgets are adjacent to each other in a horizontal layout, setting the horizontal stretch factor of the widget on the left to 2 and the factor of widget on the right to 1 will ensure that the widget on the left will always be twice the size of the one on the right.

参见 horizontalStretch(), setVerticalStretch(), and setHorizontalPolicy().

void QSizePolicy::setRetainSizeWhenHidden(bool retainSize)

Sets whether a layout should retain the widget's size when it is hidden. If retainSize is true, the layout will not be changed by hiding the widget.

This function was introduced in Qt 5.2.

参见 retainSizeWhenHidden().

void QSizePolicy::setVerticalPolicy(Policy policy)

Sets the vertical component to the given policy.

参见 verticalPolicy(), setHorizontalPolicy(), and setVerticalStretch().

void QSizePolicy::setVerticalStretch(int stretchFactor)

Sets the vertical stretch factor of the size policy to the given stretchFactor. stretchFactor must be in the range [0,255].

When two widgets are adjacent to each other in a vertical layout, setting the vertical stretch factor of the widget on the top to 2 and the factor of widget on the bottom to 1 will ensure that the widget on the top will always be twice the size of the one on the bottom.

参见 verticalStretch(), setHorizontalStretch(), and setVerticalPolicy().

void QSizePolicy::setWidthForHeight(bool dependent)

Sets the flag determining whether the widget's width depends on its height, to dependent.

This is only supported for QGraphicsLayout's subclasses. It is not possible to have a layout with both height-for-width and width-for-height constraints at the same time.

参见 hasWidthForHeight() and setHeightForWidth().

void QSizePolicy::transpose()

Swaps the horizontal and vertical policies and stretches.

参见 transposed().

QSizePolicy QSizePolicy::transposed() const

Returns a size policy object with the horizontal and vertical policies and stretches swapped.

This function was introduced in Qt 5.9.

参见 transpose().

Policy QSizePolicy::verticalPolicy() const

Returns the vertical component of the size policy.

参见 setVerticalPolicy(), horizontalPolicy(), and verticalStretch().

int QSizePolicy::verticalStretch() const

Returns the vertical stretch factor of the size policy.

参见 setVerticalStretch(), horizontalStretch(), and verticalPolicy().

QSizePolicy::operator QVariant() const

Returns a QVariant storing this QSizePolicy.

bool QSizePolicy::operator!=(const QSizePolicy &other) const

Returns true if this policy is different from other; otherwise returns false.

参见 operator==().

bool QSizePolicy::operator==(const QSizePolicy &other) const

Returns true if this policy is equal to other; otherwise returns false.

参见 operator!=().

相关非成员

uint qHash(QSizePolicy key, uint seed = 0)

Returns the hash value for key, using seed to seed the calculation.

This function was introduced in Qt 5.6.

QDataStream &operator<<(QDataStream &stream, const QSizePolicy &policy)

Writes the size policy to the data stream stream.

This function was introduced in Qt 4.2.

参见 Format of the QDataStream operators.

QDataStream &operator>>(QDataStream &stream, QSizePolicy &policy)

Reads the size policy from the data stream stream.

This function was introduced in Qt 4.2.

参见 Format of the QDataStream operators.