! * position is set to invalid if the parent item is not drawn on the scene * (e.g. axis is not drawn because it's outside plot ranges -> don't draw axis' title label) */
| 829 | * (e.g. axis is not drawn because it's outside plot ranges -> don't draw axis' title label) |
| 830 | */ |
| 831 | void WorksheetElement::setPositionInvalid(bool invalid) { |
| 832 | Q_D(WorksheetElement); |
| 833 | if (invalid != d->positionInvalid) |
| 834 | d->positionInvalid = invalid; |
| 835 | } |
| 836 | |
| 837 | GRAPHICSITEM_SETTER_CMD_IMPL_F_S(WorksheetElement, SetRotationAngle, qreal, rotation, setRotation, recalcShapeAndBoundingRect) |
| 838 | void WorksheetElement::setRotationAngle(qreal angle) { |
no outgoing calls
no test coverage detected