splinechartitem.cpp
89 lines
| 2.0 KiB
| text/x-c
|
CppLexer
Marek Rosa
|
r460 | #include "splinechartitem_p.h" | ||
Michal Klocek
|
r476 | #include "chartpresenter_p.h" | ||
Marek Rosa
|
r401 | #include <QPainter> | ||
Marek Rosa
|
r295 | |||
Marek Rosa
|
r401 | QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||
Michal Klocek
|
r476 | SplineChartItem::SplineChartItem(QSplineSeries* series, QGraphicsItem *parent) : | ||
Michal Klocek
|
r465 | XYChartItem(series, parent), | ||
Michal Klocek
|
r580 | m_series(series), | ||
m_pointsVisible(false) | ||||
Marek Rosa
|
r295 | { | ||
Michal Klocek
|
r476 | setZValue(ChartPresenter::LineChartZValue); | ||
QObject::connect(series,SIGNAL(updated()),this,SLOT(handleUpdated())); | ||||
handleUpdated(); | ||||
Marek Rosa
|
r295 | } | ||
Michal Klocek
|
r465 | QRectF SplineChartItem::boundingRect() const | ||
{ | ||||
return m_rect; | ||||
} | ||||
Marek Rosa
|
r295 | |||
Michal Klocek
|
r465 | QPainterPath SplineChartItem::shape() const | ||
{ | ||||
return m_path; | ||||
} | ||||
Marek Rosa
|
r401 | |||
Marek Rosa
|
r460 | QPointF SplineChartItem::calculateGeometryControlPoint(int index) const | ||
Marek Rosa
|
r401 | { | ||
Michal Klocek
|
r465 | return XYChartItem::calculateGeometryPoint(m_series->controlPoint(index)); | ||
Marek Rosa
|
r419 | } | ||
Michal Klocek
|
r557 | void SplineChartItem::setLayout(QVector<QPointF>& points) | ||
Marek Rosa
|
r419 | { | ||
Michal Klocek
|
r476 | |||
Marek Rosa
|
r545 | if(points.size()==0) | ||
{ | ||||
Michal Klocek
|
r557 | XYChartItem::setLayout(points); | ||
Marek Rosa
|
r545 | return; | ||
} | ||||
Marek Rosa
|
r423 | |||
QPainterPath splinePath; | ||||
const QPointF& point = points.at(0); | ||||
splinePath.moveTo(point); | ||||
Marek Rosa
|
r434 | for (int i = 0; i < points.size() - 1; i++) | ||
Marek Rosa
|
r423 | { | ||
const QPointF& point = points.at(i + 1); | ||||
splinePath.cubicTo(calculateGeometryControlPoint(2 * i), calculateGeometryControlPoint(2 * i + 1), point); | ||||
} | ||||
prepareGeometryChange(); | ||||
m_path = splinePath; | ||||
m_rect = splinePath.boundingRect(); | ||||
Michal Klocek
|
r557 | XYChartItem::setLayout(points); | ||
Michal Klocek
|
r465 | } | ||
Michal Klocek
|
r476 | //handlers | ||
void SplineChartItem::handleUpdated() | ||||
{ | ||||
Michal Klocek
|
r580 | m_pointsVisible = m_series->pointsVisible(); | ||
m_linePen = m_series->pen(); | ||||
m_pointPen = m_series->pen(); | ||||
m_pointPen.setWidthF(2*m_pointPen.width()); | ||||
Michal Klocek
|
r476 | update(); | ||
} | ||||
//painter | ||||
Michal Klocek
|
r465 | |||
Marek Rosa
|
r460 | void SplineChartItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) | ||
Marek Rosa
|
r423 | { | ||
Q_UNUSED(widget); | ||||
Q_UNUSED(option); | ||||
painter->save(); | ||||
Michal Klocek
|
r465 | painter->setClipRect(clipRect()); | ||
Michal Klocek
|
r580 | painter->setPen(m_linePen); | ||
Marek Rosa
|
r423 | painter->drawPath(m_path); | ||
Michal Klocek
|
r580 | if(m_pointsVisible){ | ||
painter->setPen(m_pointPen); | ||||
painter->drawPoints(points()); | ||||
} | ||||
Marek Rosa
|
r423 | painter->restore(); | ||
} | ||||
Marek Rosa
|
r417 | |||
Michal Klocek
|
r476 | |||
Marek Rosa
|
r460 | #include "moc_splinechartitem_p.cpp" | ||
Marek Rosa
|
r401 | |||
QTCOMMERCIALCHART_END_NAMESPACE | ||||