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

Method append

3rdparty/qcustomplot/qcustomplot.cpp:24100–24112  ·  view source on GitHub ↗

! Adds the specified \a bars plottable to this group. Alternatively, you can also use \ref QCPBars::setBarsGroup on the \a bars instance. \see insert, remove */

Source from the content-addressed store, hash-verified

24098 \see insert, remove
24099*/
24100void QCPBarsGroup::append(QCPBars *bars)
24101{
24102 if (!bars)
24103 {
24104 qDebug() << Q_FUNC_INFO << "bars is 0";
24105 return;
24106 }
24107
24108 if (!mBars.contains(bars))
24109 bars->setBarsGroup(this);
24110 else
24111 qDebug() << Q_FUNC_INFO << "bars plottable is already in this bars group:" << reinterpret_cast<quintptr>(bars);
24112}
24113
24114/*!
24115 Inserts the specified \a bars plottable into this group at the specified index position \a i.

Callers 15

addChildMethod · 0.80
QCPDataSelectionMethod · 0.80
addDataRangeMethod · 0.80
setMarginGroupMethod · 0.80
elementsMethod · 0.80
getSectionSizesMethod · 0.80
setFillOrderMethod · 0.80
expandToMethod · 0.80
insertRowMethod · 0.80
addElementMethod · 0.80
createSubTickVectorMethod · 0.80

Calls 2

setBarsGroupMethod · 0.80
containsMethod · 0.45

Tested by 1

chaining_voidMethod · 0.64