! Sets which elements are forcibly drawn antialiased as an \a or combination of QCP::AntialiasedElement. This overrides the antialiasing settings for whole element groups, normally controlled with the \a setAntialiasing function on the individual elements. If an element is neither specified in \ref setAntialiasedElements nor in \ref setNotAntialiasedElements, the antialiasing setting on
| 13726 | \see setNotAntialiasedElements |
| 13727 | */ |
| 13728 | void QCustomPlot::setAntialiasedElements(const QCP::AntialiasedElements &antialiasedElements) |
| 13729 | { |
| 13730 | mAntialiasedElements = antialiasedElements; |
| 13731 | |
| 13732 | // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: |
| 13733 | if ((mNotAntialiasedElements & mAntialiasedElements) != 0) |
| 13734 | mNotAntialiasedElements |= ~mAntialiasedElements; |
| 13735 | } |
| 13736 | |
| 13737 | /*! |
| 13738 | Sets whether the specified \a antialiasedElement is forcibly drawn antialiased. |