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

Method setSelected

3rdparty/qcustomplot/qcustomplot.cpp:13017–13024  ·  view source on GitHub ↗

! Sets whether this item is selected or not. When selected, it might use a different visual appearance (e.g. pen and brush), this depends on the specific item though. The entire selection mechanism for items is handled automatically when \ref QCustomPlot::setInteractions contains QCustomPlot::iSelectItems. You only need to call this function when you wish to change the selection state m

Source from the content-addressed store, hash-verified

13015 \see setSelectable, selectTest
13016*/
13017void QCPAbstractItem::setSelected(bool selected)
13018{
13019 if (mSelected != selected)
13020 {
13021 mSelected = selected;
13022 emit selectionChanged(mSelected);
13023 }
13024}
13025
13026/*!
13027 Returns the QCPItemPosition with the specified \a name. If this item doesn't have a position by

Callers 1

setSelectedPartsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected