qchart.cpp
190 lines
| 4.0 KiB
| text/x-c
|
CppLexer
/ src / qchart.cpp
Michal Klocek
|
r12 | #include "qchart.h" | ||
Tero Ahola
|
r42 | #include "qscatterseries.h" | ||
#include "qscatterseries_p.h" | ||||
Tero Ahola
|
r51 | #include "qpieseries.h" | ||
Michal Klocek
|
r85 | #include "qchartaxis.h" | ||
Michal Klocek
|
r131 | #include "chartpresenter_p.h" | ||
#include "chartdataset_p.h" | ||||
Michal Klocek
|
r139 | |||
//series | ||||
#include "barchartseries.h" | ||||
#include "stackedbarchartseries.h" | ||||
#include "percentbarchartseries.h" | ||||
Michal Klocek
|
r145 | #include "qlinechartseries.h" | ||
Michal Klocek
|
r139 | |||
Tero Ahola
|
r42 | #include <QGraphicsScene> | ||
Michal Klocek
|
r115 | #include <QGraphicsSceneResizeEvent> | ||
Michal Klocek
|
r21 | #include <QDebug> | ||
Michal Klocek
|
r12 | |||
Tero Ahola
|
r30 | QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||
Michal Klocek
|
r12 | |||
Michal Klocek
|
r115 | QChart::QChart(QGraphicsItem *parent, Qt::WindowFlags wFlags) : QGraphicsWidget(parent,wFlags), | ||
Michal Klocek
|
r143 | m_backgroundItem(0), | ||
m_titleItem(0), | ||||
m_dataset(new ChartDataSet(this)), | ||||
m_presenter(new ChartPresenter(this,m_dataset)) | ||||
Michal Klocek
|
r12 | { | ||
} | ||||
Michal Klocek
|
r143 | QChart::~QChart() {} | ||
Michal Klocek
|
r12 | |||
Michal Klocek
|
r21 | void QChart::addSeries(QChartSeries* series) | ||
Michal Klocek
|
r12 | { | ||
Michal Klocek
|
r143 | m_dataset->addSeries(series); | ||
Tero Ahola
|
r65 | } | ||
Michal Klocek
|
r143 | //TODO on review, is it really needed ?? | ||
Tero Ahola
|
r65 | QChartSeries* QChart::createSeries(QChartSeries::QChartSeriesType type) | ||
{ | ||||
// TODO: support also other types; not only scatter and pie | ||||
QChartSeries *series(0); | ||||
switch (type) { | ||||
Michal Klocek
|
r143 | case QChartSeries::SeriesTypeLine: { | ||
Michal Klocek
|
r145 | series = QLineChartSeries::create(); | ||
Michal Klocek
|
r143 | break; | ||
} | ||||
case QChartSeries::SeriesTypeBar: { | ||||
series = new BarChartSeries(this); | ||||
break; | ||||
} | ||||
case QChartSeries::SeriesTypeStackedBar: { | ||||
series = new StackedBarChartSeries(this); | ||||
break; | ||||
} | ||||
case QChartSeries::SeriesTypePercentBar: { | ||||
series = new PercentBarChartSeries(this); | ||||
break; | ||||
} | ||||
case QChartSeries::SeriesTypeScatter: { | ||||
series = new QScatterSeries(this); | ||||
break; | ||||
} | ||||
case QChartSeries::SeriesTypePie: { | ||||
series = new QPieSeries(this); | ||||
break; | ||||
} | ||||
default: | ||||
Tero Ahola
|
r61 | Q_ASSERT(false); | ||
Tero Ahola
|
r42 | break; | ||
} | ||||
Tero Ahola
|
r65 | addSeries(series); | ||
return series; | ||||
Tero Ahola
|
r42 | } | ||
Tero Ahola
|
r48 | |||
Michal Klocek
|
r122 | void QChart::setChartBackgroundBrush(const QBrush& brush) | ||
{ | ||||
Michal Klocek
|
r143 | if(!m_backgroundItem) { | ||
Michal Klocek
|
r122 | m_backgroundItem = new QGraphicsRectItem(this); | ||
m_backgroundItem->setZValue(-1); | ||||
} | ||||
m_backgroundItem->setBrush(brush); | ||||
m_backgroundItem->update(); | ||||
} | ||||
void QChart::setChartBackgroundPen(const QPen& pen) | ||||
{ | ||||
Michal Klocek
|
r143 | if(!m_backgroundItem) { | ||
Michal Klocek
|
r122 | m_backgroundItem = new QGraphicsRectItem(this); | ||
m_backgroundItem->setZValue(-1); | ||||
} | ||||
m_backgroundItem->setPen(pen); | ||||
m_backgroundItem->update(); | ||||
} | ||||
Michal Klocek
|
r87 | void QChart::setTitle(const QString& title,const QFont& font) | ||
Michal Klocek
|
r69 | { | ||
Michal Klocek
|
r87 | if(!m_titleItem) m_titleItem = new QGraphicsTextItem(this); | ||
m_titleItem->setPlainText(title); | ||||
m_titleItem->setFont(font); | ||||
Michal Klocek
|
r69 | } | ||
Michal Klocek
|
r28 | int QChart::margin() const | ||
{ | ||||
Jani Honkonen
|
r142 | return m_presenter->margin(); | ||
Michal Klocek
|
r28 | } | ||
Michal Klocek
|
r12 | void QChart::setMargin(int margin) | ||
{ | ||||
Michal Klocek
|
r143 | m_presenter->setMargin(margin); | ||
Michal Klocek
|
r12 | } | ||
Tero Ahola
|
r75 | void QChart::setTheme(QChart::ChartThemeId theme) | ||
Tero Ahola
|
r64 | { | ||
Michal Klocek
|
r143 | m_presenter->setTheme(theme); | ||
Tero Ahola
|
r64 | } | ||
Tero Ahola
|
r120 | QChart::ChartThemeId QChart::theme() | ||
{ | ||||
Michal Klocek
|
r143 | return (QChart::ChartThemeId) m_presenter->theme(); | ||
Tero Ahola
|
r120 | } | ||
Michal Klocek
|
r115 | void QChart::zoomInToRect(const QRectF& rectangle) | ||
Michal Klocek
|
r67 | { | ||
Michal Klocek
|
r139 | m_presenter->zoomInToRect(rectangle); | ||
Michal Klocek
|
r67 | } | ||
void QChart::zoomIn() | ||||
{ | ||||
Michal Klocek
|
r139 | m_presenter->zoomIn(); | ||
Michal Klocek
|
r67 | } | ||
void QChart::zoomOut() | ||||
{ | ||||
Michal Klocek
|
r139 | m_presenter->zoomOut(); | ||
Michal Klocek
|
r67 | } | ||
Tero Ahola
|
r93 | void QChart::zoomReset() | ||
{ | ||||
Michal Klocek
|
r139 | m_presenter->zoomReset(); | ||
Tero Ahola
|
r93 | } | ||
Michal Klocek
|
r85 | void QChart::setAxisX(const QChartAxis& axis) | ||
{ | ||||
Michal Klocek
|
r143 | |||
Michal Klocek
|
r85 | } | ||
void QChart::setAxisY(const QChartAxis& axis) | ||||
{ | ||||
Michal Klocek
|
r143 | |||
Michal Klocek
|
r85 | } | ||
void QChart::setAxisY(const QList<QChartAxis>& axis) | ||||
{ | ||||
//TODO not implemented | ||||
} | ||||
void QChart::setAxis(AxisItem *item, const QChartAxis& axis) | ||||
{ | ||||
Michal Klocek
|
r143 | |||
Michal Klocek
|
r85 | } | ||
Michal Klocek
|
r115 | void QChart::resizeEvent(QGraphicsSceneResizeEvent *event) | ||
{ | ||||
m_rect = QRectF(QPoint(0,0),event->newSize()); | ||||
QRectF rect = m_rect.adjusted(margin(),margin(), -margin(), -margin()); | ||||
// recalculate title position | ||||
if (m_titleItem) { | ||||
QPointF center = m_rect.center() -m_titleItem->boundingRect().center(); | ||||
m_titleItem->setPos(center.x(),m_rect.top()/2 + margin()/2); | ||||
} | ||||
//recalculate background gradient | ||||
if (m_backgroundItem) { | ||||
m_backgroundItem->setRect(rect); | ||||
} | ||||
Michal Klocek
|
r117 | QGraphicsWidget::resizeEvent(event); | ||
Michal Klocek
|
r115 | update(); | ||
} | ||||
Tero Ahola
|
r64 | #include "moc_qchart.cpp" | ||
Tero Ahola
|
r48 | |||
Tero Ahola
|
r30 | QTCOMMERCIALCHART_END_NAMESPACE | ||