##// END OF EJS Templates
Refactor current draft to fit int current design specs...
Refactor current draft to fit int current design specs * fixes compilation errors * adds QChartSeries * adds QXYChartSeries * adds QXYLineChartItem * fixes xylinechart example to use QChartWidget

File last commit:

r21:f4dbcb0551ab
r21:f4dbcb0551ab
Show More
xygrid.cpp
70 lines | 1.8 KiB | text/x-c | CppLexer
#include "xygrid_p.h"
#include <QPainter>
#include <QDebug>
QCHART_BEGIN_NAMESPACE
XYGrid::XYGrid(QGraphicsItem* parent):QGraphicsItem(parent)
{
}
XYGrid::~XYGrid()
{
// TODO Auto-generated destructor stub
}
void XYGrid::setSize(const QSizeF& size)
{
m_rect.setSize(size.toSize());
}
void XYGrid::setXYPlotData(const XYPlotData& xyPlotData)
{
m_xyPlotData = xyPlotData;
}
QRectF XYGrid::boundingRect() const
{
return m_rect;
}
void XYGrid::paint(QPainter *painter, const QStyleOptionGraphicsItem *option,QWidget *widget)
{
if (!m_rect.isValid())
return;
const qreal deltaX = (m_rect.width() -1) / m_xyPlotData.ticksX();
const qreal deltaY = (m_rect.height() - 1) / m_xyPlotData.ticksY();
for (int i = 0; i <= m_xyPlotData.ticksX(); ++i) {
int x = i * deltaX + m_rect.left();
qreal label = m_xyPlotData.m_minX + (i * m_xyPlotData.spanX()
/ m_xyPlotData.ticksX());
painter->drawLine(x, m_rect.top()+1, x, m_rect.bottom());
//painter->drawLine(x, m_rect.bottom(), x, m_rect.bottom() + 5);
painter->drawText(x - 50, m_rect.bottom() + 5, 100, 20,
Qt::AlignHCenter | Qt::AlignTop,
QString::number(label));
}
for (int j = 0; j <= m_xyPlotData.ticksY(); ++j) {
int y = j * -deltaY + m_rect.bottom();
qreal label = m_xyPlotData.m_minY + (j * m_xyPlotData.spanY()
/ m_xyPlotData.ticksY());
painter->drawLine(m_rect.left(), y, m_rect.right()-1, y);
//painter->drawLine(m_rect.left() - 5, y, m_rect.left(), y);
//TODO : margin = 50 ;
painter->drawText(m_rect.left() - 50, y - 10, 50 - 5, 20,
Qt::AlignRight | Qt::AlignVCenter,
QString::number(label));
}
//painter->drawRect(m_rect.adjusted(0, 0, -1, -1));
}
QCHART_END_NAMESPACE