axisitem.cpp
298 lines
| 7.4 KiB
| text/x-c
|
CppLexer
/ src / axisitem.cpp
Michal Klocek
|
r67 | #include "axisitem_p.h" | ||
Michal Klocek
|
r140 | #include "qchartaxis.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
|
r176 | AxisItem::AxisItem(AxisType type,QGraphicsItem* parent) : | ||
ChartItem(parent), | ||||
m_type(type), | ||||
m_labelsAngle(0), | ||||
m_shadesEnabled(true), | ||||
Michal Klocek
|
r184 | m_grid(parent), | ||
m_shades(parent), | ||||
m_labels(parent) | ||||
Michal Klocek
|
r67 | { | ||
Michal Klocek
|
r145 | //initial initialization | ||
Michal Klocek
|
r191 | m_shades.setZValue(0); | ||
m_grid.setZValue(2); | ||||
Michal Klocek
|
r67 | } | ||
AxisItem::~AxisItem() | ||||
{ | ||||
} | ||||
QRectF AxisItem::boundingRect() const | ||||
{ | ||||
return m_rect; | ||||
} | ||||
Michal Klocek
|
r223 | void AxisItem::createItems(int count) | ||
Michal Klocek
|
r176 | { | ||
Michal Klocek
|
r223 | for (int i = 0; i < count; ++i) { | ||
Michal Klocek
|
r176 | m_grid.addToGroup(new QGraphicsLineItem(this)); | ||
m_labels.addToGroup(new QGraphicsSimpleTextItem(this)); | ||||
if(i%2) m_shades.addToGroup(new QGraphicsRectItem(this)); | ||||
} | ||||
} | ||||
void AxisItem::clear() | ||||
{ | ||||
foreach(QGraphicsItem* item , m_shades.childItems()) { | ||||
delete item; | ||||
} | ||||
foreach(QGraphicsItem* item , m_grid.childItems()) { | ||||
delete item; | ||||
} | ||||
foreach(QGraphicsItem* item , m_labels.childItems()) { | ||||
delete item; | ||||
} | ||||
Michal Klocek
|
r223 | m_thicksList.clear(); | ||
Michal Klocek
|
r176 | } | ||
void AxisItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) | ||||
{ | ||||
Tero Ahola
|
r103 | |||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r223 | void AxisItem::updateItem(int count) | ||
Michal Klocek
|
r67 | { | ||
Michal Klocek
|
r176 | QList<QGraphicsItem *> lines = m_grid.childItems(); | ||
QList<QGraphicsItem *> labels = m_labels.childItems(); | ||||
QList<QGraphicsItem *> shades = m_shades.childItems(); | ||||
Michal Klocek
|
r67 | |||
Michal Klocek
|
r176 | switch (m_type) | ||
{ | ||||
case X_AXIS: | ||||
{ | ||||
Michal Klocek
|
r223 | const qreal deltaX = m_rect.width() / (count-1); | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r184 | m_axis.setLine(m_rect.left(), m_rect.bottom(), m_rect.right(), m_rect.bottom()); | ||
Michal Klocek
|
r223 | for (int i = 0; i < count; ++i) { | ||
Michal Klocek
|
r176 | int x = i * deltaX + m_rect.left(); | ||
QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(lines.at(i)); | ||||
lineItem->setLine(x, m_rect.top(), x, m_rect.bottom()); | ||||
QGraphicsSimpleTextItem *labelItem = static_cast<QGraphicsSimpleTextItem*>(labels.at(i)); | ||||
Michal Klocek
|
r223 | labelItem->setText(m_thicksList.at(i)); | ||
Michal Klocek
|
r176 | QPointF center = labelItem->boundingRect().center(); | ||
labelItem->setTransformOriginPoint(center.x(), center.y()); | ||||
labelItem->setPos(x - center.x(), m_rect.bottom() + label_padding); | ||||
Michal Klocek
|
r67 | |||
Michal Klocek
|
r176 | if(i%2){ | ||
QGraphicsRectItem *rectItem = static_cast<QGraphicsRectItem*>(shades.at(i/2)); | ||||
rectItem->setRect(x,m_rect.top(),deltaX,m_rect.height()); | ||||
} | ||||
} | ||||
} | ||||
break; | ||||
Michal Klocek
|
r67 | |||
Michal Klocek
|
r176 | case Y_AXIS: | ||
{ | ||||
Michal Klocek
|
r223 | const qreal deltaY = m_rect.height()/ (count-1); | ||
Michal Klocek
|
r67 | |||
Michal Klocek
|
r184 | m_axis.setLine(m_rect.left() , m_rect.top(), m_rect.left(), m_rect.bottom()); | ||
Michal Klocek
|
r223 | for (int i = 0; i < count; ++i) { | ||
Michal Klocek
|
r176 | int y = i * -deltaY + m_rect.bottom(); | ||
QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(lines.at(i)); | ||||
lineItem->setLine(m_rect.left() , y, m_rect.right(), y); | ||||
QGraphicsSimpleTextItem *labelItem = static_cast<QGraphicsSimpleTextItem*>(labels.at(i)); | ||||
Michal Klocek
|
r223 | labelItem->setText(m_thicksList.at(i)); | ||
Michal Klocek
|
r176 | QPointF center = labelItem->boundingRect().center(); | ||
labelItem->setTransformOriginPoint(center.x(), center.y()); | ||||
labelItem->setPos(m_rect.left() - labelItem->boundingRect().width() - label_padding , y-center.y()); | ||||
if(i%2){ | ||||
QGraphicsRectItem *rectItem = static_cast<QGraphicsRectItem*>(shades.at(i/2)); | ||||
rectItem->setRect(m_rect.left(),y,m_rect.width(),deltaY); | ||||
} | ||||
} | ||||
} | ||||
break; | ||||
default: | ||||
qDebug()<<"Unknown axis type"; | ||||
break; | ||||
} | ||||
Michal Klocek
|
r85 | } | ||
Michal Klocek
|
r176 | |||
Michal Klocek
|
r223 | void AxisItem::handleAxisUpdate(QChartAxis* axis) | ||
Michal Klocek
|
r85 | { | ||
Michal Klocek
|
r223 | if(axis->isAxisVisible()) { | ||
Michal Klocek
|
r189 | setAxisOpacity(100); | ||
} | ||||
else { | ||||
setAxisOpacity(0); | ||||
Michal Klocek
|
r184 | } | ||
Michal Klocek
|
r223 | if(axis->isGridVisible()) { | ||
Michal Klocek
|
r176 | setGridOpacity(100); | ||
} | ||||
else { | ||||
setGridOpacity(0); | ||||
} | ||||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r223 | if(axis->isLabelsVisible()) | ||
Michal Klocek
|
r176 | { | ||
setLabelsOpacity(100); | ||||
} | ||||
else { | ||||
setLabelsOpacity(0); | ||||
} | ||||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r223 | if(axis->isShadesVisible()) { | ||
setShadesOpacity(axis->shadesOpacity()); | ||||
Michal Klocek
|
r176 | } | ||
else { | ||||
setShadesOpacity(0); | ||||
} | ||||
Michal Klocek
|
r223 | setLabelsAngle(axis->labelsAngle()); | ||
setAxisPen(axis->axisPen()); | ||||
setLabelsPen(axis->labelsPen()); | ||||
setLabelsBrush(axis->labelsBrush()); | ||||
setLabelsFont(axis->labelFont()); | ||||
setGridPen(axis->gridPen()); | ||||
setShadesPen(axis->shadesPen()); | ||||
setShadesBrush(axis->shadesBrush()); | ||||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r241 | void AxisItem::handleLabelsChanged(QChartAxis* axis,const QStringList& labels) | ||
Michal Klocek
|
r176 | { | ||
Michal Klocek
|
r223 | m_thicksList=labels; | ||
QList<QGraphicsItem*> items = m_labels.childItems(); | ||||
if(items.size()!=m_thicksList.size()){ | ||||
clear(); | ||||
m_thicksList=labels; | ||||
createItems(m_thicksList.size()); | ||||
items = m_labels.childItems(); | ||||
Michal Klocek
|
r241 | handleAxisUpdate(axis); | ||
Michal Klocek
|
r223 | } | ||
Q_ASSERT(items.size()==m_thicksList.size()); | ||||
int i=0; | ||||
foreach(QGraphicsItem* item, items){ | ||||
static_cast<QGraphicsSimpleTextItem*>(item)->setText(m_thicksList.at(i)); | ||||
i++; | ||||
} | ||||
Michal Klocek
|
r176 | update(); | ||
} | ||||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r176 | void AxisItem::handleGeometryChanged(const QRectF& rect) | ||
{ | ||||
m_rect = rect; | ||||
Michal Klocek
|
r223 | updateItem(m_thicksList.size()); | ||
Michal Klocek
|
r176 | update(); | ||
} | ||||
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) | ||
{ | ||||
m_axis.setPen(pen); | ||||
} | ||||
Michal Klocek
|
r176 | void AxisItem::setGridPen(const QPen& pen) | ||
{ | ||||
foreach(QGraphicsItem* item , m_grid.childItems()) { | ||||
static_cast<QGraphicsLineItem*>(item)->setPen(pen); | ||||
} | ||||
} | ||||
Michal Klocek
|
r140 | |||
Michal Klocek
|
r67 | //TODO "nice numbers algorithm" | ||
Michal Klocek
|
r140 | #include "moc_axisitem_p.cpp" | ||
Michal Klocek
|
r67 | |||
QTCOMMERCIALCHART_END_NAMESPACE | ||||