qareaseries.h
71 lines
| 1.8 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; | ||||
Michal Klocek
|
r938 | class QAreaSeriesPrivate; | ||
Michal Klocek
|
r421 | |||
class QTCOMMERCIALCHART_EXPORT QAreaSeries : public QSeries | ||||
{ | ||||
Q_OBJECT | ||||
public: | ||||
Tero Ahola
|
r760 | QAreaSeries(QLineSeries *upperSeries, QLineSeries *lowerSeries = 0); | ||
Michal Klocek
|
r421 | virtual ~QAreaSeries(); | ||
Michal Klocek
|
r938 | public: | ||
QSeries::QSeriesType type() const; | ||||
Michal Klocek
|
r421 | |||
Michal Klocek
|
r938 | QLineSeries* upperSeries() const; | ||
QLineSeries* lowerSeries() const; | ||||
Michal Klocek
|
r421 | |||
sauimone
|
r743 | void setPen(const QPen &pen); | ||
Michal Klocek
|
r938 | QPen pen() const; | ||
Michal Klocek
|
r421 | |||
sauimone
|
r743 | void setBrush(const QBrush &brush); | ||
Michal Klocek
|
r938 | QBrush brush() const; | ||
Michal Klocek
|
r421 | |||
void setPointsVisible(bool visible); | ||||
Michal Klocek
|
r938 | bool pointsVisible() const; | ||
bool setModel(QAbstractItemModel* model); | ||||
QAbstractItemModel* model() const; | ||||
Michal Klocek
|
r421 | |||
sauimone
|
r775 | Q_SIGNALS: | ||
sauimone
|
r743 | void clicked(const QPointF &point); | ||
Michal Klocek
|
r855 | void selected(); | ||
Michal Klocek
|
r421 | |||
private: | ||||
Michal Klocek
|
r938 | Q_DECLARE_PRIVATE(QAreaSeries); | ||
Q_DISABLE_COPY(QAreaSeries); | ||||
friend class AreaLegendMarker; | ||||
friend class AreaChartItem; | ||||
Michal Klocek
|
r421 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif | ||||