##// END OF EJS Templates
Fixed AreaSeries initialization for PolarChart...
Fixed AreaSeries initialization for PolarChart The correct domain has to be set for the upper and the lower series of the AreaSeries with polar chart. Updating the geometry of LineChartItem will have problems if the correct domain is not set. Change-Id: Id9664ae175d2ee272c4705fbdbf17d9a719cf428 Task-number: QTRD-3507 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2782:5fbd172ba15f
r2791:53fbaba3122c
Show More
qboxplotlegendmarker.cpp
124 lines | 3.2 KiB | text/x-c | CppLexer
/ src / charts / legend / qboxplotlegendmarker.cpp
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 /****************************************************************************
**
Titta Heikkala
Copyright header changes...
r2776 ** Copyright (C) 2015 The Qt Company Ltd
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 ** All rights reserved.
Titta Heikkala
Copyright header changes...
r2776 ** For any questions to The Qt Company, please use contact form at http://qt.io
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 **
Titta Heikkala
Updated license headers...
r2740 ** This file is part of the Qt Charts module.
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 **
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.
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 **
** If you have questions regarding the use of this file, please use
Titta Heikkala
Updated license headers...
r2740 ** contact form at http://qt.io
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 **
****************************************************************************/
Titta Heikkala
Fix include syntax...
r2714 #include <QtCharts/QBoxPlotLegendMarker>
#include <private/qboxplotlegendmarker_p.h>
#include <QtCharts/QBoxPlotSeries>
#include <private/qboxplotseries_p.h>
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
/*!
\class QBoxPlotLegendMarker
Titta Heikkala
Fix Charts documentation...
r2639 \inmodule Qt Charts
Titta Heikkala
Qt Charts project file structure change...
r2712 \brief QLegendMarker subclass for box plot series.
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
QBoxPlotLegendMarker is related to QBoxPlotSeries classes.
Titta Heikkala
Fix Charts documentation...
r2639 \sa QLegend, QBoxPlotSeries
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 */
/*!
\fn virtual LegendMarkerType QBoxPlotLegendMarker::type()
Returns QLegendMarker::LegendMarkerTypeBoxPlot
*/
/*!
\internal
*/
QBoxPlotLegendMarker::QBoxPlotLegendMarker(QBoxPlotSeries *series, QLegend *legend, QObject *parent) :
QLegendMarker(*new QBoxPlotLegendMarkerPrivate(this,series,legend), parent)
{
d_ptr->updated();
}
/*!
Destructor
*/
QBoxPlotLegendMarker::~QBoxPlotLegendMarker()
{
}
/*!
\internal
*/
QBoxPlotLegendMarker::QBoxPlotLegendMarker(QBoxPlotLegendMarkerPrivate &d, QObject *parent) :
QLegendMarker(d, parent)
{
}
/*!
Returns the related series
*/
QBoxPlotSeries* QBoxPlotLegendMarker::series()
{
Q_D(QBoxPlotLegendMarker);
return d->m_series;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
QBoxPlotLegendMarkerPrivate::QBoxPlotLegendMarkerPrivate(QBoxPlotLegendMarker *q, QBoxPlotSeries *series, QLegend *legend) :
QLegendMarkerPrivate(q,legend),
q_ptr(q),
m_series(series)
{
QObject::connect(m_series, SIGNAL(nameChanged()), this, SLOT(updated()));
QObject::connect(m_series->d_func(), SIGNAL(updated()), this, SLOT(updated()));
}
QBoxPlotLegendMarkerPrivate::~QBoxPlotLegendMarkerPrivate()
{
}
QAbstractSeries* QBoxPlotLegendMarkerPrivate::series()
{
return m_series;
}
QObject* QBoxPlotLegendMarkerPrivate::relatedObject()
{
return m_series;
}
void QBoxPlotLegendMarkerPrivate::updated()
{
bool labelChanged = false;
bool brushChanged = false;
if (!m_customLabel && (m_item->label() != m_series->name())) {
m_item->setLabel(m_series->name());
labelChanged = true;
}
if (!m_customBrush && (m_item->brush() != m_series->brush())) {
m_item->setBrush(m_series->brush());
brushChanged = true;
}
invalidateLegend();
if (labelChanged)
emit q_ptr->labelChanged();
if (brushChanged)
emit q_ptr->brushChanged();
}
#include "moc_qboxplotlegendmarker.cpp"
#include "moc_qboxplotlegendmarker_p.cpp"
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548