axisitem.cpp
393 lines
| 10.3 KiB
| text/x-c
|
CppLexer
/ src / axisitem.cpp
Michal Klocek
|
r67 | #include "axisitem_p.h" | ||
Michal Klocek
|
r140 | #include "qchartaxis.h" | ||
Michal Klocek
|
r262 | #include "chartpresenter_p.h" | ||
Michal Klocek
|
r67 | #include <QPainter> | ||
#include <QDebug> | ||||
Michal Klocek
|
r176 | static int label_padding = 5; | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r67 | QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||
Michal Klocek
|
r439 | AxisItem::AxisItem(QChartAxis* axis,AxisType type,QGraphicsItem* parent) : | ||
Michal Klocek
|
r176 | ChartItem(parent), | ||
Michal Klocek
|
r439 | m_chartAxis(axis), | ||
Michal Klocek
|
r176 | m_type(type), | ||
m_labelsAngle(0), | ||||
Michal Klocek
|
r184 | m_grid(parent), | ||
m_shades(parent), | ||||
Michal Klocek
|
r262 | m_labels(parent), | ||
Michal Klocek
|
r272 | m_axis(parent) | ||
Michal Klocek
|
r67 | { | ||
Michal Klocek
|
r145 | //initial initialization | ||
Michal Klocek
|
r272 | m_axis.setZValue(ChartPresenter::AxisZValue); | ||
Michal Klocek
|
r262 | m_shades.setZValue(ChartPresenter::ShadesZValue); | ||
m_grid.setZValue(ChartPresenter::GridZValue); | ||||
Michal Klocek
|
r272 | setFlags(QGraphicsItem::ItemHasNoContents); | ||
Michal Klocek
|
r439 | |||
QObject::connect(m_chartAxis,SIGNAL(updated()),this,SLOT(handleAxisUpdated())); | ||||
Michal Klocek
|
r67 | } | ||
AxisItem::~AxisItem() | ||||
{ | ||||
} | ||||
QRectF AxisItem::boundingRect() const | ||||
{ | ||||
Michal Klocek
|
r291 | return QRectF(); | ||
Michal Klocek
|
r67 | } | ||
Michal Klocek
|
r223 | void AxisItem::createItems(int count) | ||
Michal Klocek
|
r176 | { | ||
Michal Klocek
|
r291 | if(m_axis.children().size()==0) | ||
m_axis.addToGroup(new QGraphicsLineItem()); | ||||
Michal Klocek
|
r223 | for (int i = 0; i < count; ++i) { | ||
Michal Klocek
|
r291 | m_grid.addToGroup(new QGraphicsLineItem()); | ||
m_labels.addToGroup(new QGraphicsSimpleTextItem()); | ||||
if(m_grid.childItems().size()%2) m_shades.addToGroup(new QGraphicsRectItem()); | ||||
m_axis.addToGroup(new QGraphicsLineItem()); | ||||
Michal Klocek
|
r176 | } | ||
} | ||||
Michal Klocek
|
r291 | void AxisItem::clear(int count) | ||
Michal Klocek
|
r176 | { | ||
Michal Klocek
|
r291 | QList<QGraphicsItem *> lines = m_grid.childItems(); | ||
QList<QGraphicsItem *> labels = m_labels.childItems(); | ||||
QList<QGraphicsItem *> shades = m_shades.childItems(); | ||||
QList<QGraphicsItem *> axis = m_axis.childItems(); | ||||
Michal Klocek
|
r176 | |||
Michal Klocek
|
r291 | for (int i = 0; i < count; ++i) { | ||
delete(lines.takeLast()); | ||||
delete(labels.takeLast()); | ||||
if(lines.size()%2) delete(shades.takeLast()); | ||||
delete(axis.takeLast()); | ||||
Michal Klocek
|
r272 | } | ||
Michal Klocek
|
r176 | } | ||
void AxisItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) | ||||
{ | ||||
Michal Klocek
|
r291 | Q_UNUSED(painter); | ||
Q_UNUSED(option); | ||||
Q_UNUSED(widget); | ||||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r452 | void AxisItem::updateItem() | ||
Michal Klocek
|
r67 | { | ||
Michal Klocek
|
r452 | QStringList labels = createLabels(m_ticks,m_min,m_max); | ||
int diff = m_thicksList.size() - labels.size(); | ||||
if(diff>0) { | ||||
clear(diff); | ||||
} | ||||
else if(diff<0) { | ||||
createItems(-diff); | ||||
} | ||||
if(diff!=0) handleAxisUpdated(); | ||||
m_thicksList=labels; | ||||
QVector<qreal> layout = calculateLayout(); | ||||
if(layout.count()==0) return; | ||||
setLayout(layout); | ||||
Michal Klocek
|
r85 | } | ||
Michal Klocek
|
r176 | |||
Michal Klocek
|
r439 | QStringList AxisItem::createLabels(int ticks, qreal min, qreal max) | ||
Michal Klocek
|
r85 | { | ||
Michal Klocek
|
r298 | |||
Michal Klocek
|
r184 | |||
Michal Klocek
|
r439 | Q_ASSERT(max>=min); | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r439 | QStringList labels; | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r439 | //int ticks = axis->ticksCount()-1; | ||
Michal Klocek
|
r291 | |||
Michal Klocek
|
r439 | for(int i=0; i<= ticks; i++) { | ||
qreal value = min + (i * (max - min)/ ticks); | ||||
QString label ;//= axis->axisTickLabel(value); | ||||
if(label.isEmpty()) { | ||||
labels << QString::number(value); | ||||
} | ||||
else { | ||||
labels << label; | ||||
} | ||||
Michal Klocek
|
r223 | } | ||
Michal Klocek
|
r439 | return labels; | ||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r184 | void AxisItem::setAxisOpacity(qreal opacity) | ||
{ | ||||
m_axis.setOpacity(opacity); | ||||
} | ||||
qreal AxisItem::axisOpacity() const | ||||
{ | ||||
return m_axis.opacity(); | ||||
} | ||||
Michal Klocek
|
r176 | void AxisItem::setGridOpacity(qreal opacity) | ||
{ | ||||
m_grid.setOpacity(opacity); | ||||
} | ||||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r176 | qreal AxisItem::gridOpacity() const | ||
{ | ||||
return m_grid.opacity(); | ||||
} | ||||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r176 | void AxisItem::setLabelsOpacity(qreal opacity) | ||
{ | ||||
m_labels.setOpacity(opacity); | ||||
} | ||||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r176 | qreal AxisItem::labelsOpacity() const | ||
{ | ||||
return m_labels.opacity(); | ||||
} | ||||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r176 | void AxisItem::setShadesOpacity(qreal opacity) | ||
{ | ||||
m_shades.setOpacity(opacity); | ||||
} | ||||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r176 | qreal AxisItem::shadesOpacity() const | ||
{ | ||||
return m_shades.opacity(); | ||||
} | ||||
Michal Klocek
|
r67 | |||
Michal Klocek
|
r176 | void AxisItem::setLabelsAngle(int angle) | ||
{ | ||||
foreach(QGraphicsItem* item , m_labels.childItems()) { | ||||
QPointF center = item->boundingRect().center(); | ||||
item->setRotation(angle); | ||||
Michal Klocek
|
r145 | } | ||
Michal Klocek
|
r176 | |||
m_labelsAngle=angle; | ||||
Michal Klocek
|
r67 | } | ||
Michal Klocek
|
r176 | void AxisItem::setLabelsPen(const QPen& pen) | ||
Michal Klocek
|
r140 | { | ||
Michal Klocek
|
r176 | foreach(QGraphicsItem* item , m_labels.childItems()) { | ||
static_cast<QGraphicsSimpleTextItem*>(item)->setPen(pen); | ||||
} | ||||
Michal Klocek
|
r140 | } | ||
Michal Klocek
|
r176 | void AxisItem::setLabelsBrush(const QBrush& brush) | ||
Michal Klocek
|
r140 | { | ||
Michal Klocek
|
r176 | foreach(QGraphicsItem* item , m_labels.childItems()) { | ||
static_cast<QGraphicsSimpleTextItem*>(item)->setBrush(brush); | ||||
} | ||||
Michal Klocek
|
r140 | } | ||
Michal Klocek
|
r176 | void AxisItem::setLabelsFont(const QFont& font) | ||
Michal Klocek
|
r140 | { | ||
Michal Klocek
|
r176 | foreach(QGraphicsItem* item , m_labels.childItems()) { | ||
static_cast<QGraphicsSimpleTextItem*>(item)->setFont(font); | ||||
} | ||||
Michal Klocek
|
r140 | } | ||
Michal Klocek
|
r176 | void AxisItem::setShadesBrush(const QBrush& brush) | ||
Michal Klocek
|
r140 | { | ||
Michal Klocek
|
r176 | foreach(QGraphicsItem* item , m_shades.childItems()) { | ||
static_cast<QGraphicsRectItem*>(item)->setBrush(brush); | ||||
} | ||||
Michal Klocek
|
r140 | } | ||
Michal Klocek
|
r176 | void AxisItem::setShadesPen(const QPen& pen) | ||
Michal Klocek
|
r140 | { | ||
Michal Klocek
|
r176 | foreach(QGraphicsItem* item , m_shades.childItems()) { | ||
static_cast<QGraphicsRectItem*>(item)->setPen(pen); | ||||
} | ||||
} | ||||
Michal Klocek
|
r184 | void AxisItem::setAxisPen(const QPen& pen) | ||
{ | ||||
Michal Klocek
|
r272 | foreach(QGraphicsItem* item , m_axis.childItems()) { | ||
static_cast<QGraphicsLineItem*>(item)->setPen(pen); | ||||
} | ||||
Michal Klocek
|
r184 | } | ||
Michal Klocek
|
r176 | void AxisItem::setGridPen(const QPen& pen) | ||
{ | ||||
foreach(QGraphicsItem* item , m_grid.childItems()) { | ||||
static_cast<QGraphicsLineItem*>(item)->setPen(pen); | ||||
} | ||||
} | ||||
Michal Klocek
|
r393 | QVector<qreal> AxisItem::calculateLayout() const | ||
Michal Klocek
|
r291 | { | ||
Michal Klocek
|
r393 | QVector<qreal> points; | ||
points.resize(m_thicksList.size()); | ||||
Michal Klocek
|
r291 | switch (m_type) | ||
{ | ||||
case X_AXIS: | ||||
{ | ||||
const qreal deltaX = m_rect.width()/(m_thicksList.size()-1); | ||||
for (int i = 0; i < m_thicksList.size(); ++i) { | ||||
int x = i * deltaX + m_rect.left(); | ||||
Michal Klocek
|
r393 | points[i] = x; | ||
Michal Klocek
|
r291 | } | ||
} | ||||
break; | ||||
case Y_AXIS: | ||||
{ | ||||
const qreal deltaY = m_rect.height()/(m_thicksList.size()-1); | ||||
for (int i = 0; i < m_thicksList.size(); ++i) { | ||||
int y = i * -deltaY + m_rect.bottom(); | ||||
Michal Klocek
|
r393 | points[i] = y; | ||
Michal Klocek
|
r291 | } | ||
} | ||||
break; | ||||
} | ||||
Michal Klocek
|
r393 | return points; | ||
Michal Klocek
|
r291 | } | ||
Michal Klocek
|
r452 | void AxisItem::setLayout(const QVector<qreal>& layout) | ||
Michal Klocek
|
r291 | { | ||
QList<QGraphicsItem *> lines = m_grid.childItems(); | ||||
QList<QGraphicsItem *> labels = m_labels.childItems(); | ||||
QList<QGraphicsItem *> shades = m_shades.childItems(); | ||||
QList<QGraphicsItem *> axis = m_axis.childItems(); | ||||
Q_ASSERT(labels.size() == m_thicksList.size()); | ||||
Michal Klocek
|
r452 | Q_ASSERT(layout.size() == m_thicksList.size()); | ||
Michal Klocek
|
r291 | |||
switch (m_type) | ||||
{ | ||||
case X_AXIS: | ||||
{ | ||||
QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(axis.at(0)); | ||||
lineItem->setLine(m_rect.left(), m_rect.bottom(), m_rect.right(), m_rect.bottom()); | ||||
Michal Klocek
|
r452 | for (int i = 0; i < layout.size(); ++i) { | ||
Michal Klocek
|
r291 | QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(lines.at(i)); | ||
Michal Klocek
|
r452 | lineItem->setLine(layout[i], m_rect.top(), layout[i], m_rect.bottom()); | ||
Michal Klocek
|
r291 | QGraphicsSimpleTextItem *labelItem = static_cast<QGraphicsSimpleTextItem*>(labels.at(i)); | ||
labelItem->setText(m_thicksList.at(i)); | ||||
QPointF center = labelItem->boundingRect().center(); | ||||
labelItem->setTransformOriginPoint(center.x(), center.y()); | ||||
Michal Klocek
|
r452 | labelItem->setPos(layout[i] - center.x(), m_rect.bottom() + label_padding); | ||
Michal Klocek
|
r291 | if(i%2){ | ||
QGraphicsRectItem *rectItem = static_cast<QGraphicsRectItem*>(shades.at(i/2)); | ||||
Michal Klocek
|
r452 | rectItem->setRect(layout[i],m_rect.top(),layout[i+1]-layout[i],m_rect.height()); | ||
Michal Klocek
|
r291 | } | ||
lineItem = static_cast<QGraphicsLineItem*>(axis.at(i+1)); | ||||
Michal Klocek
|
r452 | lineItem->setLine(layout[i],m_rect.bottom(),layout[i],m_rect.bottom()+5); | ||
Michal Klocek
|
r291 | } | ||
} | ||||
break; | ||||
case Y_AXIS: | ||||
{ | ||||
QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(axis.at(0)); | ||||
lineItem->setLine(m_rect.left() , m_rect.top(), m_rect.left(), m_rect.bottom()); | ||||
Michal Klocek
|
r452 | for (int i = 0; i < layout.size(); ++i) { | ||
Michal Klocek
|
r291 | QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(lines.at(i)); | ||
Michal Klocek
|
r452 | lineItem->setLine(m_rect.left() , layout[i], m_rect.right(), layout[i]); | ||
Michal Klocek
|
r291 | QGraphicsSimpleTextItem *labelItem = static_cast<QGraphicsSimpleTextItem*>(labels.at(i)); | ||
labelItem->setText(m_thicksList.at(i)); | ||||
QPointF center = labelItem->boundingRect().center(); | ||||
labelItem->setTransformOriginPoint(center.x(), center.y()); | ||||
Michal Klocek
|
r452 | labelItem->setPos(m_rect.left() - labelItem->boundingRect().width() - label_padding , layout[i]-center.y()); | ||
Michal Klocek
|
r291 | if(i%2){ | ||
QGraphicsRectItem *rectItem = static_cast<QGraphicsRectItem*>(shades.at(i/2)); | ||||
Michal Klocek
|
r452 | rectItem->setRect(m_rect.left(),layout[i],m_rect.width(),layout[i]-layout[i+1]); | ||
Michal Klocek
|
r291 | } | ||
lineItem = static_cast<QGraphicsLineItem*>(axis.at(i+1)); | ||||
Michal Klocek
|
r452 | lineItem->setLine(m_rect.left()-5,layout[i],m_rect.left(),layout[i]); | ||
Michal Klocek
|
r291 | } | ||
} | ||||
break; | ||||
default: | ||||
qDebug()<<"Unknown axis type"; | ||||
break; | ||||
} | ||||
Michal Klocek
|
r452 | |||
m_layoutVector=layout; | ||||
Michal Klocek
|
r291 | } | ||
Michal Klocek
|
r140 | |||
Michal Klocek
|
r439 | //handlers | ||
void AxisItem::handleAxisUpdated() | ||||
{ | ||||
Michal Klocek
|
r452 | if(isEmpty()) return; | ||
Michal Klocek
|
r439 | |||
if(m_chartAxis->isAxisVisible()) { | ||||
setAxisOpacity(100); | ||||
} | ||||
else { | ||||
setAxisOpacity(0); | ||||
} | ||||
if(m_chartAxis->isGridVisible()) { | ||||
setGridOpacity(100); | ||||
} | ||||
else { | ||||
setGridOpacity(0); | ||||
} | ||||
if(m_chartAxis->labelsVisible()) | ||||
{ | ||||
setLabelsOpacity(100); | ||||
} | ||||
else { | ||||
setLabelsOpacity(0); | ||||
} | ||||
if(m_chartAxis->shadesVisible()) { | ||||
setShadesOpacity(m_chartAxis->shadesOpacity()); | ||||
} | ||||
else { | ||||
setShadesOpacity(0); | ||||
} | ||||
setLabelsAngle(m_chartAxis->labelsAngle()); | ||||
setAxisPen(m_chartAxis->axisPen()); | ||||
setLabelsPen(m_chartAxis->labelsPen()); | ||||
setLabelsBrush(m_chartAxis->labelsBrush()); | ||||
setLabelsFont(m_chartAxis->labelsFont()); | ||||
setGridPen(m_chartAxis->gridPen()); | ||||
setShadesPen(m_chartAxis->shadesPen()); | ||||
setShadesBrush(m_chartAxis->shadesBrush()); | ||||
Michal Klocek
|
r452 | |||
Michal Klocek
|
r439 | } | ||
void AxisItem::handleRangeChanged(qreal min, qreal max) | ||||
{ | ||||
Michal Klocek
|
r452 | m_min = min; | ||
m_max = max; | ||||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r452 | if(isEmpty()) return; | ||
updateItem(); | ||||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r452 | } | ||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r452 | void AxisItem::handleTicksCountChanged(int ticks) | ||
{ | ||||
m_ticks=ticks; | ||||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r452 | if(isEmpty()) return; | ||
updateItem(); | ||||
Michal Klocek
|
r439 | } | ||
void AxisItem::handleGeometryChanged(const QRectF& rect) | ||||
{ | ||||
m_rect = rect; | ||||
Michal Klocek
|
r452 | if(isEmpty()) return; | ||
updateItem(); | ||||
} | ||||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r452 | bool AxisItem::isEmpty() | ||
{ | ||||
return m_rect.isEmpty() || m_min==m_max || m_ticks==0; | ||||
Michal Klocek
|
r439 | } | ||
Michal Klocek
|
r67 | //TODO "nice numbers algorithm" | ||
Michal Klocek
|
r140 | #include "moc_axisitem_p.cpp" | ||
Michal Klocek
|
r67 | |||
QTCOMMERCIALCHART_END_NAMESPACE | ||||