declarativepieseries.cpp
152 lines
| 4.4 KiB
| text/x-c
|
CppLexer
Jani Honkonen
|
r830 | /**************************************************************************** | ||
** | ||||
Titta Heikkala
|
r2776 | ** Copyright (C) 2015 The Qt Company Ltd | ||
Jani Honkonen
|
r830 | ** All rights reserved. | ||
Titta Heikkala
|
r2776 | ** For any questions to The Qt Company, please use contact form at http://qt.io | ||
Jani Honkonen
|
r830 | ** | ||
Titta Heikkala
|
r2740 | ** This file is part of the Qt Charts module. | ||
Jani Honkonen
|
r830 | ** | ||
Titta Heikkala
|
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
|
r2776 | ** agreement between you and The Qt Company. | ||
Jani Honkonen
|
r830 | ** | ||
** If you have questions regarding the use of this file, please use | ||||
Titta Heikkala
|
r2740 | ** contact form at http://qt.io | ||
Jani Honkonen
|
r830 | ** | ||
****************************************************************************/ | ||||
Tero Ahola
|
r215 | #include "declarativepieseries.h" | ||
Titta Heikkala
|
r2714 | #include <QtCharts/QPieSlice> | ||
#include <QtCharts/QVPieModelMapper> | ||||
#include <QtCharts/QHPieModelMapper> | ||||
Tero Ahola
|
r215 | |||
Titta Heikkala
|
r2712 | QT_CHARTS_BEGIN_NAMESPACE | ||
Tero Ahola
|
r215 | |||
Titta Heikkala
|
r2681 | DeclarativePieSlice::DeclarativePieSlice(QObject *parent) | ||
: QPieSlice(parent) | ||||
{ | ||||
connect(this, SIGNAL(brushChanged()), this, SLOT(handleBrushChanged())); | ||||
} | ||||
QString DeclarativePieSlice::brushFilename() const | ||||
{ | ||||
return m_brushFilename; | ||||
} | ||||
void DeclarativePieSlice::setBrushFilename(const QString &brushFilename) | ||||
{ | ||||
QImage brushImage(brushFilename); | ||||
if (QPieSlice::brush().textureImage() != brushImage) { | ||||
QBrush brush = QPieSlice::brush(); | ||||
brush.setTextureImage(brushImage); | ||||
QPieSlice::setBrush(brush); | ||||
m_brushFilename = brushFilename; | ||||
m_brushImage = brushImage; | ||||
emit brushFilenameChanged(brushFilename); | ||||
} | ||||
} | ||||
void DeclarativePieSlice::handleBrushChanged() | ||||
{ | ||||
// If the texture image of the brush has changed along the brush | ||||
// the brush file name needs to be cleared. | ||||
if (!m_brushFilename.isEmpty() && QPieSlice::brush().textureImage() != m_brushImage) { | ||||
m_brushFilename.clear(); | ||||
emit brushFilenameChanged(QString("")); | ||||
} | ||||
} | ||||
// Declarative pie series ========================================================================= | ||||
Titta Heikkala
|
r2712 | DeclarativePieSeries::DeclarativePieSeries(QQuickItem *parent) : | ||
Tero Ahola
|
r1117 | QPieSeries(parent) | ||
Tero Ahola
|
r215 | { | ||
Tero Ahola
|
r1503 | connect(this, SIGNAL(added(QList<QPieSlice*>)), this, SLOT(handleAdded(QList<QPieSlice*>))); | ||
connect(this, SIGNAL(removed(QList<QPieSlice*>)), this, SLOT(handleRemoved(QList<QPieSlice*>))); | ||||
Tero Ahola
|
r215 | } | ||
Tero Ahola
|
r1186 | void DeclarativePieSeries::classBegin() | ||
{ | ||||
} | ||||
void DeclarativePieSeries::componentComplete() | ||||
{ | ||||
Jani Honkonen
|
r2100 | foreach (QObject *child, children()) { | ||
Tero Ahola
|
r1329 | if (qobject_cast<QPieSlice *>(child)) { | ||
QPieSeries::append(qobject_cast<QPieSlice *>(child)); | ||||
Jani Honkonen
|
r2101 | } else if (qobject_cast<QVPieModelMapper *>(child)) { | ||
Tero Ahola
|
r1254 | QVPieModelMapper *mapper = qobject_cast<QVPieModelMapper *>(child); | ||
mapper->setSeries(this); | ||||
Jani Honkonen
|
r2101 | } else if (qobject_cast<QHPieModelMapper *>(child)) { | ||
Tero Ahola
|
r1254 | QHPieModelMapper *mapper = qobject_cast<QHPieModelMapper *>(child); | ||
mapper->setSeries(this); | ||||
Tero Ahola
|
r1186 | } | ||
} | ||||
} | ||||
Titta Heikkala
|
r2712 | QQmlListProperty<QObject> DeclarativePieSeries::seriesChildren() | ||
Tero Ahola
|
r1254 | { | ||
Titta Heikkala
|
r2712 | return QQmlListProperty<QObject>(this, 0, &DeclarativePieSeries::appendSeriesChildren ,0,0,0); | ||
Tero Ahola
|
r1254 | } | ||
Titta Heikkala
|
r2712 | void DeclarativePieSeries::appendSeriesChildren(QQmlListProperty<QObject> * list, QObject *element) | ||
Tero Ahola
|
r1186 | { | ||
Tero Ahola
|
r1254 | // Empty implementation; the children are parsed in componentComplete instead | ||
Q_UNUSED(list); | ||||
Q_UNUSED(element); | ||||
Tero Ahola
|
r1186 | } | ||
Tero Ahola
|
r1329 | QPieSlice *DeclarativePieSeries::at(int index) | ||
Tero Ahola
|
r1162 | { | ||
Jani Honkonen
|
r2101 | QList<QPieSlice *> sliceList = slices(); | ||
Tero Ahola
|
r1503 | if (index >= 0 && index < sliceList.count()) | ||
Tero Ahola
|
r1329 | return sliceList[index]; | ||
Tero Ahola
|
r1162 | |||
return 0; | ||||
} | ||||
Jani Honkonen
|
r2101 | QPieSlice *DeclarativePieSeries::find(QString label) | ||
Tero Ahola
|
r1202 | { | ||
foreach (QPieSlice *slice, slices()) { | ||||
if (slice->label() == label) | ||||
Tero Ahola
|
r1329 | return slice; | ||
Tero Ahola
|
r1202 | } | ||
return 0; | ||||
} | ||||
Titta Heikkala
|
r2681 | DeclarativePieSlice *DeclarativePieSeries::append(QString label, qreal value) | ||
Tero Ahola
|
r1189 | { | ||
Titta Heikkala
|
r2681 | DeclarativePieSlice *slice = new DeclarativePieSlice(this); | ||
Tero Ahola
|
r1259 | slice->setLabel(label); | ||
slice->setValue(value); | ||||
Titta Heikkala
|
r2681 | if (QPieSeries::append(slice)) | ||
return slice; | ||||
delete slice; | ||||
return 0; | ||||
Tero Ahola
|
r215 | } | ||
Tero Ahola
|
r1511 | bool DeclarativePieSeries::remove(QPieSlice *slice) | ||
Tero Ahola
|
r1503 | { | ||
Tero Ahola
|
r1511 | return QPieSeries::remove(slice); | ||
Tero Ahola
|
r1503 | } | ||
void DeclarativePieSeries::clear() | ||||
{ | ||||
QPieSeries::clear(); | ||||
} | ||||
Jani Honkonen
|
r2101 | void DeclarativePieSeries::handleAdded(QList<QPieSlice *> slices) | ||
Tero Ahola
|
r1503 | { | ||
Jani Honkonen
|
r2100 | foreach (QPieSlice *slice, slices) | ||
Tero Ahola
|
r1503 | emit sliceAdded(slice); | ||
} | ||||
Jani Honkonen
|
r2101 | void DeclarativePieSeries::handleRemoved(QList<QPieSlice *> slices) | ||
Tero Ahola
|
r1503 | { | ||
Jani Honkonen
|
r2100 | foreach (QPieSlice *slice, slices) | ||
Tero Ahola
|
r1503 | emit sliceRemoved(slice); | ||
} | ||||
Tero Ahola
|
r215 | #include "moc_declarativepieseries.cpp" | ||
Titta Heikkala
|
r2712 | QT_CHARTS_END_NAMESPACE | ||