declarativepieseries.cpp
150 lines
| 3.8 KiB
| text/x-c
|
CppLexer
Jani Honkonen
|
r830 | /**************************************************************************** | ||
** | ||||
** 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$ | ||||
** | ||||
****************************************************************************/ | ||||
Tero Ahola
|
r215 | #include "declarativepieseries.h" | ||
#include "declarativechart.h" | ||||
#include "qchart.h" | ||||
Tero Ahola
|
r1130 | #include <qdeclarativelist.h> | ||
Tero Ahola
|
r1254 | #include <QVPieModelMapper> | ||
#include <QHPieModelMapper> | ||||
Tero Ahola
|
r215 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Tero Ahola
|
r1259 | DeclarativePieSlice::DeclarativePieSlice(QObject *parent) : | ||
QPieSlice(parent) | ||||
{ | ||||
} | ||||
QColor DeclarativePieSlice::color() | ||||
{ | ||||
return brush().color(); | ||||
} | ||||
void DeclarativePieSlice::setColor(QColor color) | ||||
{ | ||||
QBrush b = brush(); | ||||
b.setColor(color); | ||||
setBrush(b); | ||||
} | ||||
QColor DeclarativePieSlice::borderColor() | ||||
{ | ||||
return pen().color(); | ||||
} | ||||
void DeclarativePieSlice::setBorderColor(QColor color) | ||||
{ | ||||
QPen p = pen(); | ||||
p.setColor(color); | ||||
setPen(p); | ||||
} | ||||
int DeclarativePieSlice::borderWidth() | ||||
{ | ||||
return pen().width(); | ||||
} | ||||
void DeclarativePieSlice::setBorderWidth(int width) | ||||
{ | ||||
QPen p = pen(); | ||||
p.setWidth(width); | ||||
setPen(p); | ||||
} | ||||
Tero Ahola
|
r1298 | QColor DeclarativePieSlice::labelColor() | ||
{ | ||||
Tero Ahola
|
r1307 | return labelBrush().color(); | ||
Tero Ahola
|
r1298 | } | ||
void DeclarativePieSlice::setLabelColor(QColor color) | ||||
{ | ||||
Tero Ahola
|
r1307 | // TODO: use brush instead for label color | ||
QBrush b = labelBrush(); | ||||
b.setColor(color); | ||||
setLabelBrush(b); | ||||
Tero Ahola
|
r1298 | } | ||
Tero Ahola
|
r789 | DeclarativePieSeries::DeclarativePieSeries(QObject *parent) : | ||
Tero Ahola
|
r1117 | QPieSeries(parent) | ||
Tero Ahola
|
r215 | { | ||
} | ||||
Tero Ahola
|
r1186 | void DeclarativePieSeries::classBegin() | ||
{ | ||||
} | ||||
void DeclarativePieSeries::componentComplete() | ||||
{ | ||||
foreach(QObject *child, children()) { | ||||
Tero Ahola
|
r1259 | if (qobject_cast<DeclarativePieSlice *>(child)) { | ||
QPieSeries::append(qobject_cast<DeclarativePieSlice *>(child)); | ||||
Tero Ahola
|
r1254 | } else if(qobject_cast<QVPieModelMapper *>(child)) { | ||
QVPieModelMapper *mapper = qobject_cast<QVPieModelMapper *>(child); | ||||
mapper->setSeries(this); | ||||
} else if(qobject_cast<QHPieModelMapper *>(child)) { | ||||
QHPieModelMapper *mapper = qobject_cast<QHPieModelMapper *>(child); | ||||
mapper->setSeries(this); | ||||
Tero Ahola
|
r1186 | } | ||
} | ||||
} | ||||
Tero Ahola
|
r1254 | QDeclarativeListProperty<QObject> DeclarativePieSeries::seriesChildren() | ||
{ | ||||
return QDeclarativeListProperty<QObject>(this, 0, &DeclarativePieSeries::appendSeriesChildren); | ||||
} | ||||
void DeclarativePieSeries::appendSeriesChildren(QDeclarativeListProperty<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
|
r1259 | DeclarativePieSlice *DeclarativePieSeries::at(int index) | ||
Tero Ahola
|
r1162 | { | ||
QList<QPieSlice*> sliceList = slices(); | ||||
if (index < sliceList.count()) | ||||
Tero Ahola
|
r1259 | return qobject_cast<DeclarativePieSlice *>(sliceList[index]); | ||
Tero Ahola
|
r1162 | |||
return 0; | ||||
} | ||||
Tero Ahola
|
r1259 | DeclarativePieSlice* DeclarativePieSeries::find(QString label) | ||
Tero Ahola
|
r1202 | { | ||
foreach (QPieSlice *slice, slices()) { | ||||
if (slice->label() == label) | ||||
Tero Ahola
|
r1259 | return qobject_cast<DeclarativePieSlice *>(slice); | ||
Tero Ahola
|
r1202 | } | ||
return 0; | ||||
} | ||||
Tero Ahola
|
r1259 | DeclarativePieSlice* DeclarativePieSeries::append(QString label, qreal value) | ||
Tero Ahola
|
r1189 | { | ||
// TODO: parameter order is wrong, switch it: | ||||
Tero Ahola
|
r1259 | DeclarativePieSlice *slice = new DeclarativePieSlice(this); | ||
slice->setLabel(label); | ||||
slice->setValue(value); | ||||
QPieSeries::append(slice); | ||||
return slice; | ||||
Tero Ahola
|
r215 | } | ||
#include "moc_declarativepieseries.cpp" | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||