qareaseries.h
69 lines
| 1.9 KiB
| text/x-c
|
CLexer
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
|
r421 | #ifndef QAREASERIES_H_ | ||
#define QAREASERIES_H_ | ||||
Jani Honkonen
|
r697 | #include <qchartglobal.h> | ||
#include <qseries.h> | ||||
Michal Klocek
|
r421 | #include <QPen> | ||
#include <QBrush> | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
class QLineSeries; | ||||
class QTCOMMERCIALCHART_EXPORT QAreaSeries : public QSeries | ||||
{ | ||||
Q_OBJECT | ||||
public: | ||||
Tero Ahola
|
r760 | QAreaSeries(QLineSeries *upperSeries, QLineSeries *lowerSeries = 0); | ||
Michal Klocek
|
r421 | virtual ~QAreaSeries(); | ||
public: // from QChartSeries | ||||
Tero Ahola
|
r760 | virtual QSeriesType type() const { return QSeries::SeriesTypeArea; } | ||
Michal Klocek
|
r421 | |||
Tero Ahola
|
r760 | QLineSeries* upperSeries() const { return m_upperSeries; } | ||
QLineSeries* lowerSeries() const { return m_lowerSeries; } | ||||
Michal Klocek
|
r421 | |||
sauimone
|
r743 | void setPen(const QPen &pen); | ||
Michal Klocek
|
r421 | QPen pen() const { return m_pen;} | ||
sauimone
|
r743 | void setBrush(const QBrush &brush); | ||
Michal Klocek
|
r421 | QBrush brush() const { return m_brush;} | ||
void setPointsVisible(bool visible); | ||||
Tero Ahola
|
r760 | bool pointsVisible() const { return m_pointsVisible; } | ||
Michal Klocek
|
r421 | |||
sauimone
|
r775 | Q_SIGNALS: | ||
Michal Klocek
|
r421 | void updated(); | ||
sauimone
|
r743 | void clicked(const QPointF &point); | ||
Michal Klocek
|
r855 | void selected(); | ||
Michal Klocek
|
r421 | |||
private: | ||||
QBrush m_brush; | ||||
QPen m_pen; | ||||
QLineSeries* m_upperSeries; | ||||
QLineSeries* m_lowerSeries; | ||||
bool m_pointsVisible; | ||||
}; | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif | ||||