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

Method isEmpty

3rdparty/qcustomplot/qcustomplot.cpp:3060–3070  ·  view source on GitHub ↗

! Returns whether this margin group is empty. If this function returns true, no layout elements use this margin group to synchronize margin sides. */

Source from the content-addressed store, hash-verified

3058 this margin group to synchronize margin sides.
3059*/
3060bool QCPMarginGroup::isEmpty() const
3061{
3062 QHashIterator<QCP::MarginSide, QList<QCPLayoutElement*> > it(mChildren);
3063 while (it.hasNext())
3064 {
3065 it.next();
3066 if (!it.value().isEmpty())
3067 return false;
3068 }
3069 return true;
3070}
3071
3072/*!
3073 Clears this margin group. The synchronization of the margin sides that use this margin group is

Callers 15

restoreMethod · 0.45
~QCPLayerMethod · 0.45
QCPLayerableMethod · 0.45
boundedMethod · 0.45
qcustomplot.cppFile · 0.45
simplifyMethod · 0.45
enforceTypeMethod · 0.45
containsMethod · 0.45
getSectionSizesMethod · 0.45
insertRowMethod · 0.45
insertColumnMethod · 0.45
drawLabelMaybeCachedMethod · 0.45

Calls 2

hasNextMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected