qseries.cpp
144 lines
| 3.2 KiB
| text/x-c
|
CppLexer
/ src / qseries.cpp
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
** 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$ | ||||
** | ||||
****************************************************************************/ | ||||
Michal Klocek
|
r360 | #include "qseries.h" | ||
Michal Klocek
|
r938 | #include "qseries_p.h" | ||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
sauimone
|
r62 | |||
Tero Ahola
|
r309 | /*! | ||
Michal Klocek
|
r360 | \class QSeries | ||
Tero Ahola
|
r309 | \brief Base class for all QtCommercial Chart series. | ||
\mainclass | ||||
Tero Ahola
|
r310 | |||
Usually you use the series type specific inherited classes instead of the base class. | ||||
\sa QScatterSeries | ||||
Tero Ahola
|
r309 | */ | ||
/*! | ||||
Michal Klocek
|
r360 | \enum QSeries::QSeriesType | ||
Tero Ahola
|
r309 | |||
The type of the series object. | ||||
\value SeriesTypeLine | ||||
\value SeriesTypeArea | ||||
\value SeriesTypeBar | ||||
\value SeriesTypeStackedBar | ||||
\value SeriesTypePercentBar | ||||
\value SeriesTypePie | ||||
\value SeriesTypeScatter | ||||
\value SeriesTypeSpline | ||||
*/ | ||||
/*! | ||||
Michal Klocek
|
r360 | \fn QSeries::QSeries(QObject *parent) | ||
Tero Ahola
|
r309 | \brief Constructs ChartSeries object with \a parent. | ||
*/ | ||||
/*! | ||||
Michal Klocek
|
r360 | \fn QSeries::~QSeries() | ||
Tero Ahola
|
r309 | \brief Virtual destructor for the chart series. | ||
*/ | ||||
/*! | ||||
Michal Klocek
|
r360 | \fn QSeriesType QSeries::type() const | ||
Tero Ahola
|
r309 | \brief The type of the series. | ||
*/ | ||||
/*! | ||||
Michal Klocek
|
r360 | \fn bool QSeries::setModel(QAbstractItemModel *model) | ||
Tero Ahola
|
r309 | \brief Use the \a model to provide data for the series. The model overrides possible user data | ||
set with QChartSeries type specific data setters. For example if you call both | ||||
QScatterSeries::addData() and QScatterSeries::setModel, only the data provided by the model is | ||||
used by the series. Returns true if the model is valid for the series. | ||||
*/ | ||||
Marek Rosa
|
r924 | /*! | ||
\fn QAbstractItemModel* QSeries::model() const | ||||
\brief Returns the pointer to the model that is used as the series data source | ||||
*/ | ||||
Marek Rosa
|
r908 | /*! | ||
Marek Rosa
|
r935 | \property QSeries::name | ||
Marek Rosa
|
r908 | \brief name of the series property | ||
*/ | ||||
Jani Honkonen
|
r414 | /*! | ||
Marek Rosa
|
r940 | \fn void QSeries::setName(const QString& name) | ||
Tero Ahola
|
r731 | \brief Sets a \a name for the series. | ||
Jani Honkonen
|
r414 | |||
Tero Ahola
|
r731 | The name of a series is shown in the legend for QXYSeries. | ||
\sa QChart::setTitle() | ||||
Jani Honkonen
|
r809 | \sa QPieSlice::setLabel() | ||
Tero Ahola
|
r731 | \sa QBarSet::setName() | ||
Jani Honkonen
|
r414 | */ | ||
/*! | ||||
Marek Rosa
|
r908 | \fn QString QSeries::name() const | ||
Tero Ahola
|
r731 | \brief Returns the name of the series. | ||
Marek Rosa
|
r908 | \sa setName() | ||
Jani Honkonen
|
r414 | */ | ||
Michal Klocek
|
r938 | QSeries::QSeries(QSeriesPrivate &d,QObject *parent) : QObject(parent), | ||
d_ptr(&d) | ||||
{ | ||||
} | ||||
QSeries::~QSeries() | ||||
{ | ||||
} | ||||
QAbstractItemModel* QSeries::model() const | ||||
{ | ||||
return d_ptr->m_model; | ||||
} | ||||
void QSeries::setName(const QString& name) | ||||
{ | ||||
d_ptr->m_name = name; | ||||
} | ||||
QString QSeries::name() const | ||||
{ | ||||
return d_ptr->m_name; | ||||
} | ||||
/////////////////////////////////////////////////////////////////////////////////////////////////// | ||||
QSeriesPrivate::QSeriesPrivate(QSeries* q): q_ptr(q),m_model(0) | ||||
{ | ||||
} | ||||
QSeriesPrivate::~QSeriesPrivate() | ||||
{ | ||||
} | ||||
Michal Klocek
|
r360 | #include "moc_qseries.cpp" | ||
Michal Klocek
|
r938 | |||
QTCOMMERCIALCHART_END_NAMESPACE | ||||