##// END OF EJS Templates
Added license text to piemodelmapper classes
Added license text to piemodelmapper classes

File last commit:

r1230:39fc8bad4e45
r1309:62cab2834ea4
Show More
qabstractseries.cpp
130 lines | 3.3 KiB | text/x-c | CppLexer
/ src / qabstractseries.cpp
Jani Honkonen
Add license headers
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$
**
****************************************************************************/
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 #include "qabstractseries.h"
#include "qabstractseries_p.h"
Michal Klocek
Adds if series deleted , remove series from chart
r1062 #include "chartdataset_p.h"
Michal Klocek
Adds big fat pimpl to series classes...
r938
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
Refactored series creation.
r62
Tero Ahola
qdoc for QChartSeries
r309 /*!
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 \class QAbstractSeries
Tero Ahola
qdoc for QChartSeries
r309 \brief Base class for all QtCommercial Chart series.
\mainclass
Tero Ahola
Documenting QChartSeries continues
r310
Usually you use the series type specific inherited classes instead of the base class.
Tero Ahola
Updated documentation, warnings from legend and area left
r973 \sa QXYSeries, QLineSeries, QSplineSeries, QScatterSeries, QAreaSeries, QBarSeries, QStackedBarSeries,
QPercentBarSeries, QPieSeries
Tero Ahola
qdoc for QChartSeries
r309 */
/*!
Michal Klocek
Fixes to API , QSeriesType -> SeriesType , add missing getters
r1107 \enum QAbstractSeries::SeriesType
Tero Ahola
qdoc for QChartSeries
r309
The type of the series object.
\value SeriesTypeLine
\value SeriesTypeArea
\value SeriesTypeBar
\value SeriesTypeStackedBar
\value SeriesTypePercentBar
sauimone
Fixed category handling of barcharts. Now the categories can be undefined. Updated documentation.
r1208 \value SeriesTypeGroupedBar
Tero Ahola
qdoc for QChartSeries
r309 \value SeriesTypePie
\value SeriesTypeScatter
\value SeriesTypeSpline
*/
/*!
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 \fn QSeriesType QAbstractSeries::type() const
Tero Ahola
qdoc for QChartSeries
r309 \brief The type of the series.
*/
/*!
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 \fn bool QAbstractSeries::setModel(QAbstractItemModel *model)
Tero Ahola
qdoc for QChartSeries
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
Docs updated
r908 /*!
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 \property QAbstractSeries::name
Marek Rosa
Docs updated
r908 \brief name of the series property
*/
Jani Honkonen
Add doc for QSeries title stuff
r414 /*!
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 \fn void QAbstractSeries::setName(const QString& name)
Tero Ahola
Title and name of QSeries replaced with name
r731 \brief Sets a \a name for the series.
Jani Honkonen
Add doc for QSeries title stuff
r414
Tero Ahola
Title and name of QSeries replaced with name
r731 The name of a series is shown in the legend for QXYSeries.
\sa QChart::setTitle()
Jani Honkonen
Doc fixes for pie
r809 \sa QPieSlice::setLabel()
Tero Ahola
Title and name of QSeries replaced with name
r731 \sa QBarSet::setName()
Jani Honkonen
Add doc for QSeries title stuff
r414 */
/*!
Tero Ahola
Updated documentation, warnings from legend and area left
r973 \internal
\brief Constructs ChartSeries object with \a parent.
Jani Honkonen
Add doc for QSeries title stuff
r414 */
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 QAbstractSeries::QAbstractSeries(QAbstractSeriesPrivate &d, QObject *parent) :
Tero Ahola
Updated documentation, warnings from legend and area left
r973 QObject(parent),
d_ptr(&d)
Michal Klocek
Adds big fat pimpl to series classes...
r938 {
}
Tero Ahola
Updated documentation, warnings from legend and area left
r973 /*!
\brief Virtual destructor for the chart series.
*/
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 QAbstractSeries::~QAbstractSeries()
Michal Klocek
Adds big fat pimpl to series classes...
r938 {
Michal Klocek
Bugfix for destruction of qlineseries
r1069 if(d_ptr->m_dataset) qFatal("Still binded series detected !");
Michal Klocek
Adds big fat pimpl to series classes...
r938 }
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 void QAbstractSeries::setName(const QString& name)
Michal Klocek
Adds big fat pimpl to series classes...
r938 {
d_ptr->m_name = name;
}
Tero Ahola
Updated documentation, warnings from legend and area left
r973 /*!
\brief Returns the name of the series.
\sa setName()
*/
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 QString QAbstractSeries::name() const
Michal Klocek
Adds big fat pimpl to series classes...
r938 {
return d_ptr->m_name;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
Marek Rosa
QXYSeries: support for adding data to model when using custom mapping
r1054 QAbstractSeriesPrivate::QAbstractSeriesPrivate(QAbstractSeries* q):
q_ptr(q),
Marek Rosa
Mapper class added for xyseries and pieseries. Model support commented out for barseries for now.
r1164 m_dataset(0)
Michal Klocek
Adds big fat pimpl to series classes...
r938 {
}
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 QAbstractSeriesPrivate::~QAbstractSeriesPrivate()
Michal Klocek
Adds big fat pimpl to series classes...
r938 {
}
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 #include "moc_qabstractseries.cpp"
#include "moc_qabstractseries_p.cpp"
Michal Klocek
Adds big fat pimpl to series classes...
r938
QTCOMMERCIALCHART_END_NAMESPACE