chartvalueaxisx.cpp
160 lines
| 5.1 KiB
| text/x-c
|
CppLexer
Marek Rosa
|
r1555 | /**************************************************************************** | ||
** | ||||
** Copyright (C) 2012 Digia Plc | ||||
** All rights reserved. | ||||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
** This file is part of the Qt Commercial Charts Add-on. | ||||
** | ||||
** $QT_BEGIN_LICENSE$ | ||||
** Licensees holding valid Qt Commercial licenses may use this file in | ||||
** accordance with the Qt Commercial License Agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and Digia. | ||||
** | ||||
** If you have questions regarding the use of this file, please use | ||||
** contact form at http://qt.digia.com | ||||
** $QT_END_LICENSE$ | ||||
** | ||||
****************************************************************************/ | ||||
Marek Rosa
|
r1805 | #include "chartvalueaxisx_p.h" | ||
Marek Rosa
|
r1555 | #include "qabstractaxis.h" | ||
#include "chartpresenter_p.h" | ||||
Marek Rosa
|
r1805 | #include "qvalueaxis.h" | ||
Marek Rosa
|
r1555 | #include <QGraphicsLayout> | ||
#include <QFontMetrics> | ||||
Michal Klocek
|
r1735 | #include <qmath.h> | ||
Michal Klocek
|
r1965 | #include <QDebug> | ||
Marek Rosa
|
r1555 | |||
static int label_padding = 5; | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Marek Rosa
|
r1805 | ChartValueAxisX::ChartValueAxisX(QAbstractAxis *axis,ChartPresenter *presenter) : ChartAxis(axis,presenter), | ||
Michal Klocek
|
r1698 | m_tickCount(0) | ||
Marek Rosa
|
r1555 | { | ||
} | ||||
Marek Rosa
|
r1805 | ChartValueAxisX::~ChartValueAxisX() | ||
Marek Rosa
|
r1555 | { | ||
} | ||||
Marek Rosa
|
r1805 | QVector<qreal> ChartValueAxisX::calculateLayout() const | ||
Marek Rosa
|
r1555 | { | ||
Michal Klocek
|
r1698 | Q_ASSERT(m_tickCount>=2); | ||
Marek Rosa
|
r1555 | |||
QVector<qreal> points; | ||||
Michal Klocek
|
r1698 | points.resize(m_tickCount); | ||
Marek Rosa
|
r1555 | |||
Michal Klocek
|
r1965 | QRectF rect = presenter()->chartsGeometry(); | ||
const qreal deltaX = rect.width()/(m_tickCount-1); | ||||
Michal Klocek
|
r1698 | for (int i = 0; i < m_tickCount; ++i) { | ||
Michal Klocek
|
r1965 | int x = i * deltaX + rect.left(); | ||
Marek Rosa
|
r1555 | points[i] = x; | ||
} | ||||
return points; | ||||
} | ||||
Marek Rosa
|
r1805 | void ChartValueAxisX::updateGeometry() | ||
Marek Rosa
|
r1555 | { | ||
const QVector<qreal>& layout = ChartAxis::layout(); | ||||
if(layout.isEmpty()) return; | ||||
Michal Klocek
|
r1965 | QStringList ticksList = createNumberLabels(m_min,m_max,layout.size()); | ||
Marek Rosa
|
r1555 | |||
QList<QGraphicsItem *> lines = m_grid->childItems(); | ||||
QList<QGraphicsItem *> labels = m_labels->childItems(); | ||||
QList<QGraphicsItem *> shades = m_shades->childItems(); | ||||
Michal Klocek
|
r1729 | QList<QGraphicsItem *> axis = m_arrow->childItems(); | ||
Marek Rosa
|
r1555 | |||
Q_ASSERT(labels.size() == ticksList.size()); | ||||
Q_ASSERT(layout.size() == ticksList.size()); | ||||
Michal Klocek
|
r1965 | QRectF chartRrect = presenter()->chartsGeometry(); | ||
Marek Rosa
|
r1555 | QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(axis.at(0)); | ||
Michal Klocek
|
r1965 | lineItem->setLine(chartRrect.left(), chartRrect.bottom(), chartRrect.right(), chartRrect.bottom()); | ||
Marek Rosa
|
r1555 | |||
qreal width = 0; | ||||
for (int i = 0; i < layout.size(); ++i) { | ||||
QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(lines.at(i)); | ||||
Michal Klocek
|
r1965 | lineItem->setLine(layout[i], chartRrect.top(), layout[i], chartRrect.bottom()); | ||
Marek Rosa
|
r1555 | QGraphicsSimpleTextItem *labelItem = static_cast<QGraphicsSimpleTextItem*>(labels.at(i)); | ||
labelItem->setText(ticksList.at(i)); | ||||
const QRectF& rect = labelItem->boundingRect(); | ||||
QPointF center = rect.center(); | ||||
labelItem->setTransformOriginPoint(center.x(), center.y()); | ||||
Michal Klocek
|
r1965 | labelItem->setPos(layout[i] - center.x(), chartRrect.bottom() + label_padding); | ||
if(labelItem->pos().x() <= width || | ||||
labelItem->pos().x() < m_rect.left() || | ||||
labelItem->pos().x() + rect.width() > m_rect.right()){ | ||||
Marek Rosa
|
r1555 | labelItem->setVisible(false); | ||
lineItem->setVisible(false); | ||||
}else{ | ||||
labelItem->setVisible(true); | ||||
lineItem->setVisible(true); | ||||
width=rect.width()+labelItem->pos().x(); | ||||
} | ||||
Michal Klocek
|
r1577 | |||
Marek Rosa
|
r1555 | if ((i+1)%2 && i>1) { | ||
QGraphicsRectItem *rectItem = static_cast<QGraphicsRectItem*>(shades.at(i/2-1)); | ||||
Michal Klocek
|
r1965 | rectItem->setRect(layout[i-1],chartRrect.top(),layout[i]-layout[i-1],chartRrect.height()); | ||
Marek Rosa
|
r1555 | } | ||
lineItem = static_cast<QGraphicsLineItem*>(axis.at(i+1)); | ||||
Michal Klocek
|
r1965 | lineItem->setLine(layout[i],chartRrect.bottom(),layout[i],chartRrect.bottom()+5); | ||
Marek Rosa
|
r1555 | } | ||
} | ||||
Marek Rosa
|
r1805 | void ChartValueAxisX::handleAxisUpdated() | ||
Michal Klocek
|
r1698 | { | ||
//TODO:: fix this | ||||
Marek Rosa
|
r1804 | QValueAxis* axis = qobject_cast<QValueAxis*>(m_chartAxis); | ||
Marek Rosa
|
r1807 | m_tickCount = axis->tickCount(); | ||
Michal Klocek
|
r1698 | ChartAxis::handleAxisUpdated(); | ||
} | ||||
Michal Klocek
|
r1965 | QSizeF ChartValueAxisX::sizeHint(Qt::SizeHint which, const QSizeF& constraint) const | ||
{ | ||||
Q_UNUSED(constraint) | ||||
QFontMetrics fn(m_font); | ||||
QSizeF sh; | ||||
QSizeF base = ChartAxis::sizeHint(which, constraint); | ||||
QStringList ticksList = createNumberLabels(m_min,m_max,m_tickCount); | ||||
qreal width=0; | ||||
qreal height=0; | ||||
switch (which) { | ||||
case Qt::MinimumSize:{ | ||||
int count = qMax(ticksList.last().count(),ticksList.first().count()); | ||||
width=fn.averageCharWidth()*count; | ||||
height=fn.height()+label_padding; | ||||
width=qMax(width,base.width()); | ||||
height+=base.height(); | ||||
sh = QSizeF(width,height); | ||||
break; | ||||
} | ||||
case Qt::PreferredSize:{ | ||||
for (int i = 0; i < ticksList.size(); ++i) | ||||
{ | ||||
width+=fn.averageCharWidth()*ticksList.at(i).count(); | ||||
} | ||||
height=fn.height()+label_padding; | ||||
width=qMax(width,base.width()); | ||||
height+=base.height(); | ||||
sh = QSizeF(width,height); | ||||
break; | ||||
} | ||||
default: | ||||
break; | ||||
} | ||||
return sh; | ||||
} | ||||
Marek Rosa
|
r1555 | QTCOMMERCIALCHART_END_NAMESPACE | ||