##// END OF EJS Templates
rename functions add() -> append()
rename functions add() -> append()

File last commit:

r794:4c76de65bbac
r796:4bbe1f66d4b7
Show More
qareaseries.h
72 lines | 2.1 KiB | text/x-c | CLexer
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$
**
****************************************************************************/
Michal Klocek
Adds area chart...
r421 #ifndef QAREASERIES_H_
#define QAREASERIES_H_
Jani Honkonen
Change includes in public headers from #include "xxx" -> #include <xxx>
r697 #include <qchartglobal.h>
#include <qseries.h>
Michal Klocek
Adds area chart...
r421 #include <QPen>
#include <QBrush>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QLineSeries;
class QTCOMMERCIALCHART_EXPORT QAreaSeries : public QSeries
{
Q_OBJECT
public:
Tero Ahola
Internal review: Removed extra semicolons
r760 QAreaSeries(QLineSeries *upperSeries, QLineSeries *lowerSeries = 0);
Michal Klocek
Adds area chart...
r421 virtual ~QAreaSeries();
public: // from QChartSeries
Tero Ahola
Internal review: Removed extra semicolons
r760 virtual QSeriesType type() const { return QSeries::SeriesTypeArea; }
Michal Klocek
Adds area chart...
r421
Tero Ahola
Internal review: Removed extra semicolons
r760 QLineSeries* upperSeries() const { return m_upperSeries; }
QLineSeries* lowerSeries() const { return m_lowerSeries; }
Michal Klocek
Adds area chart...
r421
sauimone
minor code review issues. indent, spaces, brackets etc.
r743 void setPen(const QPen &pen);
Michal Klocek
Adds area chart...
r421 QPen pen() const { return m_pen;}
sauimone
minor code review issues. indent, spaces, brackets etc.
r743 void setBrush(const QBrush &brush);
Michal Klocek
Adds area chart...
r421 QBrush brush() const { return m_brush;}
void setPointsVisible(bool visible);
Tero Ahola
Internal review: Removed extra semicolons
r760 bool pointsVisible() const { return m_pointsVisible; }
Michal Klocek
Adds area chart...
r421
Marek Rosa
Added support for data from model to QBarSeries. Various fixes and small modifications to data from model support to other series
r630 // bool setModel(QAbstractItemModel* model);
// void setModelMappingUpper(int modelX, int modelY, Qt::Orientation orientation = Qt::Vertical);
// void setModelMappingLower(int modelX, int modelY, Qt::Orientation orientation = Qt::Vertical);
sauimone
Q_SIGNALS and Q_SLOTS
r775 Q_SIGNALS:
Michal Klocek
Adds area chart...
r421 void updated();
sauimone
minor code review issues. indent, spaces, brackets etc.
r743 void clicked(const QPointF &point);
Michal Klocek
Adds area chart...
r421
private:
QBrush m_brush;
QPen m_pen;
QLineSeries* m_upperSeries;
QLineSeries* m_lowerSeries;
bool m_pointsVisible;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif