chartintervalsaxisx.cpp
124 lines
| 4.3 KiB
| text/x-c
|
CppLexer
Marek Rosa
|
r1701 | /**************************************************************************** | ||
** | ||||
** 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 "chartintervalsaxisx_p.h" | ||||
Michal Klocek
|
r1735 | #include "qintervalsaxis.h" | ||
Marek Rosa
|
r1701 | #include "qabstractaxis.h" | ||
#include "chartpresenter_p.h" | ||||
#include <QGraphicsLayout> | ||||
#include <QFontMetrics> | ||||
Michal Klocek
|
r1735 | #include <qmath.h> | ||
Marek Rosa
|
r1701 | |||
static int label_padding = 5; | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
ChartIntervalAxisX::ChartIntervalAxisX(QAbstractAxis *axis,ChartPresenter *presenter) : ChartAxis(axis,presenter) | ||||
{ | ||||
} | ||||
ChartIntervalAxisX::~ChartIntervalAxisX() | ||||
{ | ||||
} | ||||
QVector<qreal> ChartIntervalAxisX::calculateLayout() const | ||||
{ | ||||
QIntervalsAxis *axis = qobject_cast<QIntervalsAxis *>(m_chartAxis); | ||||
int tickCount = axis->intervalsLabels().count() + 1; | ||||
QVector<qreal> points; | ||||
Marek Rosa
|
r1708 | |||
if (tickCount < 2) | ||||
return points; | ||||
Marek Rosa
|
r1701 | points.resize(tickCount); | ||
qreal scale = m_rect.width() / axis->max(); | ||||
for (int i = 0; i < tickCount; ++i) | ||||
if (i < tickCount - 1) { | ||||
int x = axis->intervalMin(axis->intervalsLabels().at(i)) * scale + m_rect.left(); | ||||
points[i] = x; | ||||
} else { | ||||
int x = axis->intervalMax(axis->intervalsLabels().at(i - 1)) * scale + m_rect.left(); | ||||
points[i] = x; | ||||
} | ||||
return points; | ||||
} | ||||
void ChartIntervalAxisX::updateGeometry() | ||||
{ | ||||
const QVector<qreal>& layout = ChartAxis::layout(); | ||||
m_minWidth = 0; | ||||
m_minHeight = 0; | ||||
if(layout.isEmpty()) return; | ||||
QIntervalsAxis *intervalAxis = qobject_cast<QIntervalsAxis *>(m_chartAxis); | ||||
QStringList ticksList = intervalAxis->intervalsLabels(); | ||||
// createNumberLabels(ticksList,m_min,m_max,layout.size()); | ||||
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
|
r1701 | |||
// Q_ASSERT(labels.size() == ticksList.size()); | ||||
// Q_ASSERT(layout.size() == ticksList.size()); | ||||
QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(axis.at(0)); | ||||
lineItem->setLine(m_rect.left(), m_rect.bottom(), m_rect.right(), m_rect.bottom()); | ||||
// qreal width = 0; | ||||
for (int i = 0; i < layout.size(); ++i) { | ||||
QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(lines.at(i)); | ||||
lineItem->setLine(layout[i], m_rect.top(), layout[i], m_rect.bottom()); | ||||
QGraphicsSimpleTextItem *labelItem = static_cast<QGraphicsSimpleTextItem*>(labels.at(i)); | ||||
if (i < ticksList.count()) { | ||||
labelItem->setText(ticksList.at(i)); | ||||
} | ||||
const QRectF& rect = labelItem->boundingRect(); | ||||
QPointF center = rect.center(); | ||||
labelItem->setTransformOriginPoint(center.x(), center.y()); | ||||
if (i < ticksList.count()) | ||||
labelItem->setPos(layout[i] + (layout[i + 1] - layout[i]) / 2 - center.x(), m_rect.bottom() + label_padding); | ||||
else | ||||
labelItem->setPos(layout[i] - center.x(), m_rect.bottom() + label_padding); | ||||
if(labelItem->pos().x() > m_rect.width() + m_rect.left() - rect.width() / 2){ | ||||
labelItem->setVisible(false); | ||||
lineItem->setVisible(false); | ||||
} | ||||
m_minWidth += rect.width(); | ||||
m_minHeight = qMax(rect.height(), m_minHeight); | ||||
if ((i + 1) % 2 && i > 1) { | ||||
QGraphicsRectItem *rectItem = static_cast<QGraphicsRectItem*>(shades.at(i / 2 - 1)); | ||||
rectItem->setRect(layout[i - 1],m_rect.top(),layout[i]-layout[i - 1],m_rect.height()); | ||||
} | ||||
lineItem = static_cast<QGraphicsLineItem*>(axis.at(i+1)); | ||||
lineItem->setLine(layout[i],m_rect.bottom(),layout[i], m_rect.bottom() + 5); | ||||
} | ||||
} | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||