| 786 | } |
| 787 | |
| 788 | KDChart::LineWithMarkerLayoutItem::LineWithMarkerLayoutItem( |
| 789 | KDChart::AbstractDiagram *diagram, |
| 790 | int lineLength, |
| 791 | const QPen &linePen, |
| 792 | int markerOffs, |
| 793 | const MarkerAttributes &marker, |
| 794 | const QBrush &markerBrush, |
| 795 | const QPen &markerPen, |
| 796 | Qt::Alignment alignment) |
| 797 | : AbstractLayoutItem(alignment) |
| 798 | , mDiagram(diagram) |
| 799 | , mLineLength(lineLength) |
| 800 | , mLinePen(linePen) |
| 801 | , mMarkerOffs(markerOffs) |
| 802 | , mMarker(marker) |
| 803 | , mMarkerBrush(markerBrush) |
| 804 | , mMarkerPen(markerPen) |
| 805 | { |
| 806 | } |
| 807 | |
| 808 | Qt::Orientations KDChart::LineWithMarkerLayoutItem::expandingDirections() const |
| 809 | { |
nothing calls this directly
no outgoing calls
no test coverage detected