declarativepieseries.cpp
62 lines
| 1.7 KiB
| text/x-c
|
CppLexer
/ qmlplugin / declarativepieseries.cpp
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
|
r215 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Tero Ahola
|
r789 | DeclarativePieSeries::DeclarativePieSeries(QObject *parent) : | ||
Tero Ahola
|
r1117 | QPieSeries(parent) | ||
Tero Ahola
|
r215 | { | ||
} | ||||
Tero Ahola
|
r1162 | QPieSlice *DeclarativePieSeries::slice(int index) | ||
{ | ||||
QList<QPieSlice*> sliceList = slices(); | ||||
if (index < sliceList.count()) | ||||
return sliceList[index]; | ||||
return 0; | ||||
} | ||||
Tero Ahola
|
r1130 | bool DeclarativePieSeries::setPieModel(DeclarativePieModel *model) | ||
Tero Ahola
|
r215 | { | ||
Tero Ahola
|
r1130 | QAbstractItemModel *m = qobject_cast<QAbstractItemModel *>(model); | ||
bool value(false); | ||||
if (m) { | ||||
value = QPieSeries::setModel(m); | ||||
setModelMapping(0, 1, Qt::Vertical); | ||||
Tero Ahola
|
r1139 | } else { | ||
qWarning("DeclarativePieSeries: Illegal model"); | ||||
Tero Ahola
|
r1130 | } | ||
return value; | ||||
Tero Ahola
|
r215 | } | ||
Tero Ahola
|
r1130 | DeclarativePieModel *DeclarativePieSeries::pieModel() | ||
Tero Ahola
|
r215 | { | ||
Tero Ahola
|
r1130 | return qobject_cast<DeclarativePieModel *>(model()); | ||
Tero Ahola
|
r215 | } | ||
#include "moc_declarativepieseries.cpp" | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||