##// END OF EJS Templates
Boxplot outline pen adjustment...
Boxplot outline pen adjustment Change-Id: I26aa8047e40667aad0466accd20a22d1ba86a668 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2574:599370d0561c
r2581:7eaf3a640343
Show More
declarativecategoryaxis.cpp
98 lines | 2.9 KiB | text/x-c | CppLexer
/ plugins / declarative / declarativecategoryaxis.cpp
Tero Ahola
Added missing sources to declarative plugin
r1872 /****************************************************************************
**
Miikka Heikkinen
More copyright year changes
r2433 ** Copyright (C) 2013 Digia Plc
Tero Ahola
Added missing sources to declarative plugin
r1872 ** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** This file is part of the Qt Enterprise Charts Add-on.
Tero Ahola
Added missing sources to declarative plugin
r1872 **
** $QT_BEGIN_LICENSE$
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
Tero Ahola
Added missing sources to declarative plugin
r1872 ** 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 "declarativecategoryaxis.h"
#include <QDebug>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
\qmlclass CategoryRange
\brief With CategoryRange you can define a range used by a CategoryAxis.
\sa CategoryAxis
*/
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 }
Miikka Heikkinen
Generate charts plugin for QtQuick2 as well as QtQuick1...
r2488 QDECLARATIVE_LIST_PROPERTY<QObject> DeclarativeCategoryAxis::axisChildren()
Tero Ahola
Added missing sources to declarative plugin
r1872 {
Miikka Heikkinen
Generate charts plugin for QtQuick2 as well as QtQuick1...
r2488 return QDECLARATIVE_LIST_PROPERTY<QObject>(this, 0, &DeclarativeCategoryAxis::appendAxisChildren LIST_PROPERTY_PARAM_DEFAULTS);
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);
}
Miikka Heikkinen
Generate charts plugin for QtQuick2 as well as QtQuick1...
r2488 void DeclarativeCategoryAxis::appendAxisChildren(QDECLARATIVE_LIST_PROPERTY<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)
}
#include "moc_declarativecategoryaxis.cpp"
QTCOMMERCIALCHART_END_NAMESPACE