MCPcopy Index your code
hub / github.com/Audio4Linux/JDSP4Linux / setMinimumSize

Method setMinimumSize

3rdparty/qcustomplot/qcustomplot.cpp:3313–3321  ·  view source on GitHub ↗

! Sets the minimum size of this layout element. A parent layout tries to respect the \a size here by changing row/column sizes in the layout accordingly. If the parent layout size is not sufficient to satisfy all minimum size constraints of its child layout elements, the layout may set a size that is actually smaller than \a size. QCustomPlot propagates the layout's size constraints t

Source from the content-addressed store, hash-verified

3311 setSizeConstraintRect (see \ref rect and \ref outerRect).
3312*/
3313void QCPLayoutElement::setMinimumSize(const QSize &size)
3314{
3315 if (mMinimumSize != size)
3316 {
3317 mMinimumSize = size;
3318 if (mParentLayout)
3319 mParentLayout->sizeConstraintsChanged();
3320 }
3321}
3322
3323/*! \overload
3324

Callers 1

MainWindowMethod · 0.80

Calls 1

Tested by

no test coverage detected