verticalaxis.cpp
228 lines
| 9.1 KiB
| text/x-c
|
CppLexer
Michal Klocek
|
r2111 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2432 | ** Copyright (C) 2013 Digia Plc | ||
Michal Klocek
|
r2111 | ** 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 "verticalaxis_p.h" | ||||
#include "qabstractaxis.h" | ||||
Miikka Heikkinen
|
r2539 | #include "chartpresenter_p.h" | ||
Michal Klocek
|
r2139 | #include <QDebug> | ||
Michal Klocek
|
r2111 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Miikka Heikkinen
|
r2483 | VerticalAxis::VerticalAxis(QAbstractAxis *axis, QGraphicsItem *item, bool intervalAxis) | ||
: CartesianChartAxis(axis, item, intervalAxis) | ||||
Michal Klocek
|
r2111 | { | ||
} | ||||
VerticalAxis::~VerticalAxis() | ||||
{ | ||||
} | ||||
void VerticalAxis::updateGeometry() | ||||
{ | ||||
Miikka Heikkinen
|
r2483 | const QVector<qreal> &layout = ChartAxisElement::layout(); | ||
Michal Klocek
|
r2111 | |||
Jani Honkonen
|
r2131 | if (layout.isEmpty()) | ||
return; | ||||
Michal Klocek
|
r2111 | |||
QStringList labelList = labels(); | ||||
Miikka Heikkinen
|
r2483 | QList<QGraphicsItem *> lines = gridItems(); | ||
Michal Klocek
|
r2111 | QList<QGraphicsItem *> labels = labelItems(); | ||
QList<QGraphicsItem *> shades = shadeItems(); | ||||
Miikka Heikkinen
|
r2483 | QList<QGraphicsItem *> arrow = arrowItems(); | ||
Miikka Heikkinen
|
r2539 | QGraphicsTextItem *title = titleItem(); | ||
Michal Klocek
|
r2111 | |||
Q_ASSERT(labels.size() == labelList.size()); | ||||
Q_ASSERT(layout.size() == labelList.size()); | ||||
Jani Honkonen
|
r2131 | const QRectF &axisRect = axisGeometry(); | ||
const QRectF &gridRect = gridGeometry(); | ||||
Michal Klocek
|
r2111 | |||
qreal height = axisRect.bottom(); | ||||
Michal Klocek
|
r2133 | //arrow | ||
Miikka Heikkinen
|
r2483 | QGraphicsLineItem *arrowItem = static_cast<QGraphicsLineItem*>(arrow.at(0)); | ||
Michal Klocek
|
r2133 | |||
//arrow position | ||||
Miikka Heikkinen
|
r2483 | if (axis()->alignment() == Qt::AlignLeft) | ||
arrowItem->setLine(axisRect.right(), gridRect.top(), axisRect.right(), gridRect.bottom()); | ||||
else if (axis()->alignment() == Qt::AlignRight) | ||||
arrowItem->setLine(axisRect.left(), gridRect.top(), axisRect.left(), gridRect.bottom()); | ||||
Michal Klocek
|
r2111 | |||
Michal Klocek
|
r2148 | //title | ||
Miikka Heikkinen
|
r2415 | QRectF titleBoundingRect; | ||
Miikka Heikkinen
|
r2483 | QString titleText = axis()->titleText(); | ||
Miikka Heikkinen
|
r2540 | qreal availableSpace = axisRect.width() - labelPadding(); | ||
Miikka Heikkinen
|
r2483 | if (!titleText.isEmpty() && titleItem()->isVisible()) { | ||
Miikka Heikkinen
|
r2540 | availableSpace -= titlePadding() * 2.0; | ||
qreal minimumLabelWidth = ChartPresenter::textBoundingRect(axis()->labelsFont(), "...").width(); | ||||
QString truncatedTitle = ChartPresenter::truncatedText(axis()->titleFont(), titleText, qreal(0.0), | ||||
gridRect.height(), Qt::Horizontal, titleBoundingRect); | ||||
qreal titleSpace = availableSpace - minimumLabelWidth; | ||||
if (titleSpace < titleBoundingRect.width()) { | ||||
// Need to also truncate title vertically (multiline title) | ||||
bool skip = false; | ||||
if (truncatedTitle.endsWith("...")) { | ||||
if (truncatedTitle.size() == 3) | ||||
skip = true; // Already truncated to minimum | ||||
else | ||||
truncatedTitle.chop(3); | ||||
} | ||||
if (!skip) | ||||
truncatedTitle = ChartPresenter::truncatedText(axis()->titleFont(), truncatedTitle, qreal(0.0), | ||||
titleSpace, Qt::Vertical, titleBoundingRect); | ||||
} | ||||
title->setHtml(truncatedTitle); | ||||
Michal Klocek
|
r2148 | |||
Miikka Heikkinen
|
r2415 | titleBoundingRect = title->boundingRect(); | ||
QPointF center = gridRect.center() - titleBoundingRect.center(); | ||||
Miikka Heikkinen
|
r2540 | if (axis()->alignment() == Qt::AlignLeft) | ||
title->setPos(axisRect.left() - titleBoundingRect.width() / 2.0 + titleBoundingRect.height() / 2.0 + titlePadding(), center.y()); | ||||
else if (axis()->alignment() == Qt::AlignRight) | ||||
title->setPos(axisRect.right() - titleBoundingRect.width() / 2.0 - titleBoundingRect.height() / 2.0 - titlePadding(), center.y()); | ||||
Miikka Heikkinen
|
r2415 | title->setTransformOriginPoint(titleBoundingRect.center()); | ||
Michal Klocek
|
r2148 | title->setRotation(270); | ||
Miikka Heikkinen
|
r2540 | |||
availableSpace -= titleBoundingRect.height(); | ||||
Michal Klocek
|
r2148 | } | ||
Michal Klocek
|
r2111 | for (int i = 0; i < layout.size(); ++i) { | ||
Michal Klocek
|
r2133 | //items | ||
Jani Honkonen
|
r2131 | QGraphicsLineItem *gridItem = static_cast<QGraphicsLineItem *>(lines.at(i)); | ||
Miikka Heikkinen
|
r2483 | QGraphicsLineItem *tickItem = static_cast<QGraphicsLineItem *>(arrow.at(i + 1)); | ||
Miikka Heikkinen
|
r2539 | QGraphicsTextItem *labelItem = static_cast<QGraphicsTextItem *>(labels.at(i)); | ||
Michal Klocek
|
r2111 | |||
//grid line | ||||
Miikka Heikkinen
|
r2483 | gridItem->setLine(gridRect.left(), layout[i], gridRect.right(), layout[i]); | ||
Michal Klocek
|
r2111 | |||
Michal Klocek
|
r2133 | //label text wrapping | ||
Michal Klocek
|
r2111 | QString text = labelList.at(i); | ||
Miikka Heikkinen
|
r2534 | QRectF boundingRect; | ||
Miikka Heikkinen
|
r2539 | labelItem->setHtml(ChartPresenter::truncatedText(axis()->labelsFont(), text, axis()->labelsAngle(), | ||
Miikka Heikkinen
|
r2540 | availableSpace, Qt::Horizontal, boundingRect)); | ||
Miikka Heikkinen
|
r2412 | |||
Michal Klocek
|
r2133 | //label transformation origin point | ||
Jani Honkonen
|
r2131 | const QRectF &rect = labelItem->boundingRect(); | ||
Michal Klocek
|
r2111 | QPointF center = rect.center(); | ||
labelItem->setTransformOriginPoint(center.x(), center.y()); | ||||
Miikka Heikkinen
|
r2540 | qreal widthDiff = rect.width() - boundingRect.width(); | ||
Michal Klocek
|
r2111 | |||
//ticks and label position | ||||
Miikka Heikkinen
|
r2483 | if (axis()->alignment() == Qt::AlignLeft) { | ||
Miikka Heikkinen
|
r2540 | labelItem->setPos(axisRect.right() - rect.width() + (widthDiff / 2.0) - labelPadding(), layout[i] - center.y()); | ||
Jani Honkonen
|
r2131 | tickItem->setLine(axisRect.right() - labelPadding(), layout[i], axisRect.right(), layout[i]); | ||
Miikka Heikkinen
|
r2483 | } else if (axis()->alignment() == Qt::AlignRight) { | ||
Miikka Heikkinen
|
r2540 | labelItem->setPos(axisRect.left() + labelPadding() - (widthDiff / 2.0), layout[i] - center.y()); | ||
Jani Honkonen
|
r2131 | tickItem->setLine(axisRect.left(), layout[i], axisRect.left() + labelPadding(), layout[i]); | ||
Michal Klocek
|
r2111 | } | ||
Michal Klocek
|
r2133 | |||
Miikka Heikkinen
|
r2446 | //label in between | ||
bool forceHide = false; | ||||
if (intervalAxis() && (i + 1) != layout.size()) { | ||||
qreal lowerBound = qMin(layout[i], gridRect.bottom()); | ||||
qreal upperBound = qMax(layout[i + 1], gridRect.top()); | ||||
const qreal delta = lowerBound - upperBound; | ||||
// Hide label in case visible part of the category at the grid edge is too narrow | ||||
if (delta < boundingRect.height() | ||||
&& (lowerBound == gridRect.bottom() || upperBound == gridRect.top())) { | ||||
forceHide = true; | ||||
} else { | ||||
labelItem->setPos(labelItem->pos().x() , lowerBound - (delta / 2.0) - center.y()); | ||||
} | ||||
Michal Klocek
|
r2111 | } | ||
Miikka Heikkinen
|
r2445 | //label overlap detection - compensate one pixel for rounding errors | ||
Miikka Heikkinen
|
r2446 | if (labelItem->pos().y() + boundingRect.height() > height || forceHide || | ||
Miikka Heikkinen
|
r2445 | (labelItem->pos().y() + (boundingRect.height() / 2.0) - 1.0) > axisRect.bottom() || | ||
labelItem->pos().y() + (boundingRect.height() / 2.0) < (axisRect.top() - 1.0)) { | ||||
Michal Klocek
|
r2111 | labelItem->setVisible(false); | ||
Michal Klocek
|
r2133 | } | ||
else { | ||||
Michal Klocek
|
r2111 | labelItem->setVisible(true); | ||
Michal Klocek
|
r2133 | height=labelItem->pos().y(); | ||
Michal Klocek
|
r2111 | } | ||
//shades | ||||
Jani Honkonen
|
r2131 | if ((i + 1) % 2 && i > 1) { | ||
QGraphicsRectItem *rectItem = static_cast<QGraphicsRectItem *>(shades.at(i / 2 - 1)); | ||||
Miikka Heikkinen
|
r2448 | qreal lowerBound = qMin(layout[i - 1], gridRect.bottom()); | ||
qreal upperBound = qMax(layout[i], gridRect.top()); | ||||
rectItem->setRect(gridRect.left(), upperBound, gridRect.width(), lowerBound - upperBound); | ||||
if (rectItem->rect().height() <= 0.0) | ||||
rectItem->setVisible(false); | ||||
else | ||||
rectItem->setVisible(true); | ||||
Michal Klocek
|
r2111 | } | ||
// check if the grid line and the axis tick should be shown | ||||
qreal y = gridItem->line().p1().y(); | ||||
Michal Klocek
|
r2133 | if ((y < gridRect.top() || y > gridRect.bottom())) | ||
{ | ||||
Michal Klocek
|
r2111 | gridItem->setVisible(false); | ||
tickItem->setVisible(false); | ||||
Michal Klocek
|
r2133 | }else{ | ||
gridItem->setVisible(true); | ||||
tickItem->setVisible(true); | ||||
Michal Klocek
|
r2111 | } | ||
} | ||||
//begin/end grid line in case labels between | ||||
Jani Honkonen
|
r2131 | if (intervalAxis()) { | ||
Michal Klocek
|
r2111 | QGraphicsLineItem *gridLine; | ||
Jani Honkonen
|
r2131 | gridLine = static_cast<QGraphicsLineItem *>(lines.at(layout.size())); | ||
Michal Klocek
|
r2111 | gridLine->setLine(gridRect.left(), gridRect.top(), gridRect.right(), gridRect.top()); | ||
Michal Klocek
|
r2133 | gridLine->setVisible(true); | ||
Miikka Heikkinen
|
r2483 | gridLine = static_cast<QGraphicsLineItem*>(lines.at(layout.size() + 1)); | ||
Michal Klocek
|
r2111 | gridLine->setLine(gridRect.left(), gridRect.bottom(), gridRect.right(), gridRect.bottom()); | ||
Michal Klocek
|
r2133 | gridLine->setVisible(true); | ||
Michal Klocek
|
r2111 | } | ||
} | ||||
Michal Klocek
|
r2138 | QSizeF VerticalAxis::sizeHint(Qt::SizeHint which, const QSizeF &constraint) const | ||
{ | ||||
Q_UNUSED(constraint); | ||||
Miikka Heikkinen
|
r2483 | QSizeF sh(0, 0); | ||
Michal Klocek
|
r2138 | |||
Miikka Heikkinen
|
r2483 | if (axis()->titleText().isEmpty() || !titleItem()->isVisible()) | ||
Michal Klocek
|
r2138 | return sh; | ||
switch (which) { | ||||
Miikka Heikkinen
|
r2530 | case Qt::MinimumSize: { | ||
Miikka Heikkinen
|
r2539 | QRectF titleRect = ChartPresenter::textBoundingRect(axis()->titleFont(), "..."); | ||
Miikka Heikkinen
|
r2540 | sh = QSizeF(titleRect.height() + (titlePadding() * 2.0), titleRect.width()); | ||
Michal Klocek
|
r2138 | break; | ||
Miikka Heikkinen
|
r2530 | } | ||
Michal Klocek
|
r2138 | case Qt::MaximumSize: | ||
Miikka Heikkinen
|
r2530 | case Qt::PreferredSize: { | ||
Miikka Heikkinen
|
r2539 | QRectF titleRect = ChartPresenter::textBoundingRect(axis()->titleFont(), axis()->titleText()); | ||
Miikka Heikkinen
|
r2540 | sh = QSizeF(titleRect.height() + (titlePadding() * 2.0), titleRect.width()); | ||
Michal Klocek
|
r2138 | break; | ||
Miikka Heikkinen
|
r2530 | } | ||
Michal Klocek
|
r2138 | default: | ||
break; | ||||
} | ||||
return sh; | ||||
} | ||||
Michal Klocek
|
r2111 | QTCOMMERCIALCHART_END_NAMESPACE | ||