/**************************************************************************** ** ** 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$ ** ****************************************************************************/ #include "chartdatetimeaxisx_p.h" #include "chartpresenter_p.h" #include "qdatetimeaxis.h" #include #include #include #include static int label_padding = 5; QTCOMMERCIALCHART_BEGIN_NAMESPACE ChartDateTimeAxisX::ChartDateTimeAxisX(QAbstractAxis *axis, ChartPresenter *presenter) : ChartAxis(axis, presenter), m_tickCount(0) { } ChartDateTimeAxisX::~ChartDateTimeAxisX() { } void ChartDateTimeAxisX::createLabels(QStringList &labels, qreal min, qreal max, int ticks) { Q_ASSERT(max > min); Q_ASSERT(ticks > 1); QDateTimeAxis *axis = qobject_cast(m_chartAxis); int n = qMax(int(-floor(log10((max - min) / (ticks - 1)))), 0); n++; for (int i = 0; i < ticks; i++) { qreal value = min + (i * (max - min) / (ticks - 1)); labels << QDateTime::fromMSecsSinceEpoch(value).toString(axis->format()); } } QVector ChartDateTimeAxisX::calculateLayout() const { Q_ASSERT(m_tickCount >= 2); QVector points; points.resize(m_tickCount); QRectF rect = presenter()->chartsGeometry(); const qreal deltaX = rect.width() / (m_tickCount - 1); for (int i = 0; i < m_tickCount; ++i) { int x = i * deltaX + rect.left(); points[i] = x; } return points; } void ChartDateTimeAxisX::updateGeometry() { const QVector& layout = ChartAxis::layout(); if (layout.isEmpty()) return; QStringList ticksList; createLabels(ticksList, m_min, m_max, layout.size()); QList lines = m_grid->childItems(); QList labels = m_labels->childItems(); QList shades = m_shades->childItems(); QList axis = m_arrow->childItems(); Q_ASSERT(labels.size() == ticksList.size()); Q_ASSERT(layout.size() == ticksList.size()); QRectF chartRect = presenter()->chartsGeometry(); QGraphicsLineItem *lineItem = static_cast(axis.at(0)); lineItem->setLine(chartRect.left(), chartRect.bottom(), chartRect.right(), chartRect.bottom()); qreal width = 0; for (int i = 0; i < layout.size(); ++i) { QGraphicsLineItem *lineItem = static_cast(lines.at(i)); lineItem->setLine(layout[i], chartRect.top(), layout[i], chartRect.bottom()); QGraphicsSimpleTextItem *labelItem = static_cast(labels.at(i)); labelItem->setText(ticksList.at(i)); const QRectF& rect = labelItem->boundingRect(); QPointF center = rect.center(); labelItem->setTransformOriginPoint(center.x(), center.y()); labelItem->setPos(layout[i] - center.x(), chartRect.bottom() + label_padding); if (labelItem->pos().x() <= width) { labelItem->setVisible(false); lineItem->setVisible(false); } else { labelItem->setVisible(true); lineItem->setVisible(true); width = rect.width() + labelItem->pos().x(); } if ((i + 1) % 2 && i > 1) { QGraphicsRectItem *rectItem = static_cast(shades.at(i / 2 - 1)); rectItem->setRect(layout[i - 1], chartRect.top(), layout[i] - layout[i - 1], chartRect.height()); } lineItem = static_cast(axis.at(i + 1)); lineItem->setLine(layout[i], chartRect.bottom(), layout[i], chartRect.bottom() + 5); } } void ChartDateTimeAxisX::handleAxisUpdated() { //TODO:: fix this QDateTimeAxis* axis = qobject_cast(m_chartAxis); m_tickCount = axis->tickCount(); ChartAxis::handleAxisUpdated(); } QSizeF ChartDateTimeAxisX::sizeHint(Qt::SizeHint which, const QSizeF& constraint) const { Q_UNUSED(constraint) QFontMetrics fn(m_font); QSizeF sh; switch (which) { case Qt::MinimumSize: sh = QSizeF(fn.boundingRect("...").width(), fn.height()); break; case Qt::PreferredSize: { const QVector& layout = ChartAxis::layout(); if (layout.isEmpty()) break; QStringList ticksList; qreal width = 0; qreal height = 0; for (int i = 0; i < ticksList.size(); ++i) { QRectF rect = fn.boundingRect(ticksList.at(i)); width += rect.width(); height += qMax(rect.height() + label_padding, height); } sh = QSizeF(width, height); break; } default: break; } return sh; } QTCOMMERCIALCHART_END_NAMESPACE