chartvalueaxisx.cpp
116 lines
| 3.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" | ||
Michal Klocek
|
r2106 | #include "chartlayout_p.h" | ||
Marek Rosa
|
r1555 | #include <QGraphicsLayout> | ||
#include <QFontMetrics> | ||||
Michal Klocek
|
r1735 | #include <qmath.h> | ||
Marek Rosa
|
r1555 | |||
Michal Klocek
|
r2106 | |||
Marek Rosa
|
r1555 | QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||
Jani Honkonen
|
r2131 | ChartValueAxisX::ChartValueAxisX(QValueAxis *axis, ChartPresenter *presenter) | ||
: HorizontalAxis(axis, presenter), | ||||
m_tickCount(0), m_axis(axis) | ||||
Marek Rosa
|
r1555 | { | ||
} | ||||
Marek Rosa
|
r1805 | ChartValueAxisX::~ChartValueAxisX() | ||
Marek Rosa
|
r1555 | { | ||
} | ||||
Marek Rosa
|
r1805 | QVector<qreal> ChartValueAxisX::calculateLayout() const | ||
Marek Rosa
|
r1555 | { | ||
Jani Honkonen
|
r2131 | Q_ASSERT(m_tickCount >= 2); | ||
Marek Rosa
|
r1555 | |||
QVector<qreal> points; | ||||
Michal Klocek
|
r1698 | points.resize(m_tickCount); | ||
Marek Rosa
|
r1555 | |||
Jani Honkonen
|
r2131 | const QRectF &gridRect = gridGeometry(); | ||
const qreal deltaX = gridRect.width() / (m_tickCount - 1); | ||||
Michal Klocek
|
r1698 | for (int i = 0; i < m_tickCount; ++i) { | ||
Michal Klocek
|
r2144 | points[i] = i * deltaX + gridRect.left(); | ||
Marek Rosa
|
r1555 | } | ||
return points; | ||||
} | ||||
Marek Rosa
|
r1805 | void ChartValueAxisX::updateGeometry() | ||
Marek Rosa
|
r1555 | { | ||
const QVector<qreal>& layout = ChartAxis::layout(); | ||||
Jani Honkonen
|
r2131 | if (layout.isEmpty()) | ||
return; | ||||
Michal Klocek
|
r2111 | setLabels(createValueLabels(layout.size())); | ||
HorizontalAxis::updateGeometry(); | ||||
Marek Rosa
|
r1555 | } | ||
Marek Rosa
|
r1805 | void ChartValueAxisX::handleAxisUpdated() | ||
Michal Klocek
|
r1698 | { | ||
Michal Klocek
|
r2111 | if (m_tickCount != m_axis->tickCount()) { | ||
m_tickCount = m_axis->tickCount(); | ||||
Michal Klocek
|
r2106 | presenter()->layout()->invalidate(); | ||
} | ||||
Michal Klocek
|
r1698 | ChartAxis::handleAxisUpdated(); | ||
} | ||||
Jani Honkonen
|
r2131 | QSizeF ChartValueAxisX::sizeHint(Qt::SizeHint which, const QSizeF &constraint) const | ||
Michal Klocek
|
r1965 | { | ||
Q_UNUSED(constraint) | ||||
Michal Klocek
|
r2111 | QFontMetrics fn(font()); | ||
Michal Klocek
|
r1965 | QSizeF sh; | ||
Michal Klocek
|
r2138 | QSizeF base = HorizontalAxis::sizeHint(which, constraint); | ||
Michal Klocek
|
r2111 | QStringList ticksList = createValueLabels(m_tickCount); | ||
Jani Honkonen
|
r2131 | qreal width = 0; | ||
qreal height = 0; | ||||
Michal Klocek
|
r1965 | |||
Marek Rosa
|
r2093 | switch (which) { | ||
Michal Klocek
|
r2133 | case Qt::MinimumSize:{ | ||
int count = qMax(ticksList.last().count(),ticksList.first().count()); | ||||
count = qMin(count,5); | ||||
Jani Honkonen
|
r2131 | width = fn.averageCharWidth() * count; | ||
height = fn.height() + labelPadding(); | ||||
Michal Klocek
|
r2133 | width = qMax(width,base.width()); | ||
Jani Honkonen
|
r2131 | height += base.height(); | ||
Michal Klocek
|
r2133 | sh = QSizeF(width,height); | ||
Marek Rosa
|
r2093 | break; | ||
Michal Klocek
|
r2105 | } | ||
Michal Klocek
|
r2133 | case Qt::PreferredSize:{ | ||
int count = qMax(ticksList.last().count(),ticksList.first().count()); | ||||
width=fn.averageCharWidth() * count; | ||||
height=fn.height()+labelPadding(); | ||||
width=qMax(width,base.width()); | ||||
height+=base.height(); | ||||
sh = QSizeF(width,height); | ||||
Marek Rosa
|
r2093 | break; | ||
Michal Klocek
|
r2105 | } | ||
Marek Rosa
|
r2093 | default: | ||
break; | ||||
} | ||||
Michal Klocek
|
r1965 | |||
Marek Rosa
|
r2093 | return sh; | ||
Michal Klocek
|
r1965 | } | ||
Marek Rosa
|
r1555 | QTCOMMERCIALCHART_END_NAMESPACE | ||