/**************************************************************************** ** ** 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$ ** ****************************************************************************/ #include "declarativepieseries.h" #include "declarativechart.h" #include "qchart.h" #include #include #include QTCOMMERCIALCHART_BEGIN_NAMESPACE 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); } DeclarativePieSeries::DeclarativePieSeries(QObject *parent) : QPieSeries(parent) { } void DeclarativePieSeries::classBegin() { } void DeclarativePieSeries::componentComplete() { foreach(QObject *child, children()) { if (qobject_cast(child)) { QPieSeries::append(qobject_cast(child)); } else if(qobject_cast(child)) { QVPieModelMapper *mapper = qobject_cast(child); mapper->setSeries(this); } else if(qobject_cast(child)) { QHPieModelMapper *mapper = qobject_cast(child); mapper->setSeries(this); } } } QDeclarativeListProperty DeclarativePieSeries::seriesChildren() { return QDeclarativeListProperty(this, 0, &DeclarativePieSeries::appendSeriesChildren); } void DeclarativePieSeries::appendSeriesChildren(QDeclarativeListProperty * list, QObject *element) { // Empty implementation; the children are parsed in componentComplete instead Q_UNUSED(list); Q_UNUSED(element); } DeclarativePieSlice *DeclarativePieSeries::at(int index) { QList sliceList = slices(); if (index < sliceList.count()) return qobject_cast(sliceList[index]); return 0; } DeclarativePieSlice* DeclarativePieSeries::find(QString label) { foreach (QPieSlice *slice, slices()) { if (slice->label() == label) return qobject_cast(slice); } return 0; } DeclarativePieSlice* DeclarativePieSeries::append(QString label, qreal value) { // TODO: parameter order is wrong, switch it: DeclarativePieSlice *slice = new DeclarativePieSlice(this); slice->setLabel(label); slice->setValue(value); QPieSeries::append(slice); return slice; } #include "moc_declarativepieseries.cpp" QTCOMMERCIALCHART_END_NAMESPACE