|
|
#include "qchart.h"
|
|
|
#include "qchartaxis.h"
|
|
|
#include "chartpresenter_p.h"
|
|
|
#include "chartdataset_p.h"
|
|
|
#include <QGraphicsScene>
|
|
|
#include <QGraphicsSceneResizeEvent>
|
|
|
#include <QDebug>
|
|
|
|
|
|
QTCOMMERCIALCHART_BEGIN_NAMESPACE
|
|
|
|
|
|
QChart::QChart(QGraphicsItem *parent, Qt::WindowFlags wFlags) : QGraphicsWidget(parent,wFlags),
|
|
|
m_backgroundItem(0),
|
|
|
m_titleItem(0),
|
|
|
m_dataset(new ChartDataSet(this)),
|
|
|
m_presenter(new ChartPresenter(this,m_dataset))
|
|
|
{
|
|
|
}
|
|
|
|
|
|
QChart::~QChart() {}
|
|
|
|
|
|
void QChart::addSeries(QChartSeries* series,QChartAxis* axisY)
|
|
|
{
|
|
|
m_dataset->addSeries(series,axisY);
|
|
|
}
|
|
|
|
|
|
void QChart::removeSeries(QChartSeries* series)
|
|
|
{
|
|
|
m_dataset->removeSeries(series);
|
|
|
}
|
|
|
|
|
|
void QChart::setChartBackgroundBrush(const QBrush& brush)
|
|
|
{
|
|
|
createChartBackgroundItem();
|
|
|
m_backgroundItem->setBrush(brush);
|
|
|
m_backgroundItem->update();
|
|
|
}
|
|
|
|
|
|
void QChart::setChartBackgroundPen(const QPen& pen)
|
|
|
{
|
|
|
createChartBackgroundItem();
|
|
|
m_backgroundItem->setPen(pen);
|
|
|
m_backgroundItem->update();
|
|
|
}
|
|
|
|
|
|
void QChart::setChartTitle(const QString& title)
|
|
|
{
|
|
|
createChartTitleItem();
|
|
|
m_titleItem->setPlainText(title);
|
|
|
}
|
|
|
|
|
|
void QChart::setChartTitleFont(const QFont& font)
|
|
|
{
|
|
|
createChartTitleItem();
|
|
|
m_titleItem->setFont(font);
|
|
|
}
|
|
|
|
|
|
void QChart::createChartBackgroundItem()
|
|
|
{
|
|
|
if(!m_backgroundItem) {
|
|
|
m_backgroundItem = new QGraphicsRectItem(this);
|
|
|
m_backgroundItem->setZValue(-1);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
void QChart::createChartTitleItem()
|
|
|
{
|
|
|
if(!m_titleItem) m_titleItem = new QGraphicsTextItem(this);
|
|
|
}
|
|
|
|
|
|
int QChart::margin() const
|
|
|
{
|
|
|
return m_presenter->margin();
|
|
|
}
|
|
|
|
|
|
void QChart::setMargin(int margin)
|
|
|
{
|
|
|
m_presenter->setMargin(margin);
|
|
|
}
|
|
|
|
|
|
void QChart::setChartTheme(QChart::ChartTheme theme)
|
|
|
{
|
|
|
m_presenter->setChartTheme(theme);
|
|
|
}
|
|
|
|
|
|
QChart::ChartTheme QChart::chartTheme() const
|
|
|
{
|
|
|
return m_presenter->chartTheme();
|
|
|
}
|
|
|
|
|
|
void QChart::zoomIn()
|
|
|
{
|
|
|
if (!m_dataset->nextDomain()) {
|
|
|
QRectF rect = m_presenter->geometry();
|
|
|
rect.setWidth(rect.width()/2);
|
|
|
rect.setHeight(rect.height()/2);
|
|
|
rect.moveCenter(m_presenter->geometry().center());
|
|
|
zoomIn(rect);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
void QChart::zoomIn(const QRectF& rect)
|
|
|
{
|
|
|
if(!rect.isValid()) return;
|
|
|
QRectF r = rect.normalized();
|
|
|
int margin = m_presenter->margin();
|
|
|
r.translate(-margin, -margin);
|
|
|
m_dataset->addDomain(r,m_presenter->geometry());
|
|
|
}
|
|
|
|
|
|
void QChart::zoomOut()
|
|
|
{
|
|
|
m_dataset->previousDomain();
|
|
|
}
|
|
|
|
|
|
void QChart::zoomReset()
|
|
|
{
|
|
|
m_dataset->clearDomains();
|
|
|
}
|
|
|
|
|
|
QChartAxis* QChart::axisX() const
|
|
|
{
|
|
|
return m_dataset->axisX();
|
|
|
}
|
|
|
|
|
|
QChartAxis* QChart::axisY() const
|
|
|
{
|
|
|
return m_dataset->axisY();
|
|
|
}
|
|
|
|
|
|
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);
|
|
|
}
|
|
|
|
|
|
QGraphicsWidget::resizeEvent(event);
|
|
|
update();
|
|
|
}
|
|
|
|
|
|
#include "moc_qchart.cpp"
|
|
|
|
|
|
QTCOMMERCIALCHART_END_NAMESPACE
|
|
|
|