##// END OF EJS Templates
Fix documentation typo...
Fix documentation typo Change-Id: Ibc5b1f403f143eddc49a8aeeedd9de4145825b94 Reviewed-by: Titta Heikkala <titta.heikkala@theqtcompany.com>

File last commit:

r2780:740f4f94adf8
r2785:b99b50e22ed3
Show More
declarativecategoryaxis.cpp
112 lines | 3.4 KiB | text/x-c | CppLexer
/ src / chartsqml2 / declarativecategoryaxis.cpp
Tero Ahola
Added missing sources to declarative plugin
r1872 /****************************************************************************
**
Titta Heikkala
Copyright header changes...
r2776 ** Copyright (C) 2015 The Qt Company Ltd
Tero Ahola
Added missing sources to declarative plugin
r1872 ** All rights reserved.
Titta Heikkala
Copyright header changes...
r2776 ** For any questions to The Qt Company, please use contact form at http://qt.io
Tero Ahola
Added missing sources to declarative plugin
r1872 **
Titta Heikkala
Updated license headers...
r2740 ** This file is part of the Qt Charts module.
Tero Ahola
Added missing sources to declarative plugin
r1872 **
Titta Heikkala
Updated license headers...
r2740 ** Licensees holding valid commercial license for Qt may use this file in
** accordance with the Qt License Agreement provided with the Software
** or, alternatively, in accordance with the terms contained in a written
Titta Heikkala
Copyright header changes...
r2776 ** agreement between you and The Qt Company.
Tero Ahola
Added missing sources to declarative plugin
r1872 **
** If you have questions regarding the use of this file, please use
Titta Heikkala
Updated license headers...
r2740 ** contact form at http://qt.io
Tero Ahola
Added missing sources to declarative plugin
r1872 **
****************************************************************************/
#include "declarativecategoryaxis.h"
Titta Heikkala
Fix include syntax...
r2714 #include <QtCore/QDebug>
Tero Ahola
Added missing sources to declarative plugin
r1872
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
Tero Ahola
Added missing sources to declarative plugin
r1872
Titta Heikkala
Fix Charts documentation...
r2639 /*!
\qmltype CategoryRange
Titta Heikkala
Qt Charts project file structure change...
r2712 \inqmlmodule QtCharts
Titta Heikkala
Fix Charts documentation...
r2639
Titta Heikkala
Qt Charts project file structure change...
r2712 \brief With CategoryRange you can define a range used by a CategoryAxis.
\sa CategoryAxis
Titta Heikkala
Fix Charts documentation...
r2639 */
Tero Ahola
Added missing sources to declarative plugin
r1872
DeclarativeCategoryRange::DeclarativeCategoryRange(QObject *parent) :
QObject(parent),
m_endValue(0),
m_label(QString())
{
}
DeclarativeCategoryAxis::DeclarativeCategoryAxis(QObject *parent) :
QCategoryAxis(parent)
{
}
void DeclarativeCategoryAxis::classBegin()
{
}
void DeclarativeCategoryAxis::componentComplete()
{
Tero Ahola
CategoryRange objects no longer need to be in a specific order
r2080 QList<QPair<QString, qreal> > ranges;
Jani Honkonen
coding style: foreach whitespace fix
r2100 foreach (QObject *child, children()) {
Tero Ahola
Added missing sources to declarative plugin
r1872 if (qobject_cast<DeclarativeCategoryRange *>(child)) {
DeclarativeCategoryRange *range = qobject_cast<DeclarativeCategoryRange *>(child);
Tero Ahola
CategoryRange objects no longer need to be in a specific order
r2080 ranges.append(QPair<QString, qreal>(range->label(), range->endValue()));
Tero Ahola
Added missing sources to declarative plugin
r1872 }
}
Tero Ahola
CategoryRange objects no longer need to be in a specific order
r2080
// Sort and append the range objects according to end value
qSort(ranges.begin(), ranges.end(), endValueLessThan);
for (int i(0); i < ranges.count(); i++)
append(ranges.at(i).first, ranges.at(i).second);
}
bool DeclarativeCategoryAxis::endValueLessThan(const QPair<QString, qreal> &value1, const QPair<QString, qreal> &value2)
{
return value1.second < value2.second;
Tero Ahola
Added missing sources to declarative plugin
r1872 }
Titta Heikkala
Qt Charts project file structure change...
r2712 QQmlListProperty<QObject> DeclarativeCategoryAxis::axisChildren()
Tero Ahola
Added missing sources to declarative plugin
r1872 {
Titta Heikkala
Qt Charts project file structure change...
r2712 return QQmlListProperty<QObject>(this, 0, &DeclarativeCategoryAxis::appendAxisChildren ,0,0,0);
Tero Ahola
Added missing sources to declarative plugin
r1872 }
void DeclarativeCategoryAxis::append(const QString &label, qreal categoryEndValue)
{
QCategoryAxis::append(label, categoryEndValue);
}
void DeclarativeCategoryAxis::remove(const QString &label)
{
QCategoryAxis::remove(label);
}
Jani Honkonen
coding style fixes for plugins
r2101 void DeclarativeCategoryAxis::replace(const QString &oldLabel, const QString &newLabel)
Tero Ahola
Added missing sources to declarative plugin
r1872 {
QCategoryAxis::replaceLabel(oldLabel, newLabel);
}
Titta Heikkala
Qt Charts project file structure change...
r2712 void DeclarativeCategoryAxis::appendAxisChildren(QQmlListProperty<QObject> *list, QObject *element)
Tero Ahola
Added missing sources to declarative plugin
r1872 {
// Empty implementation; the children are parsed in componentComplete instead
Q_UNUSED(list)
Q_UNUSED(element)
}
Titta Heikkala
Added possibility to set labels position for QCategoryAxis...
r2780 DeclarativeCategoryAxis::AxisLabelsPosition DeclarativeCategoryAxis::labelsPosition() const
{
return (DeclarativeCategoryAxis::AxisLabelsPosition) QCategoryAxis::labelsPosition();
}
void DeclarativeCategoryAxis::setLabelsPosition(AxisLabelsPosition position)
{
QCategoryAxis::AxisLabelsPosition labelsPosition = (QCategoryAxis::AxisLabelsPosition) position;
if (labelsPosition != m_labelsPosition) {
QCategoryAxis::setLabelsPosition(labelsPosition);
emit labelsPositionChanged(position);
}
}
Tero Ahola
Added missing sources to declarative plugin
r1872 #include "moc_declarativecategoryaxis.cpp"
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE