qareaseries.h
84 lines
| 2.4 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
|
r969 | #ifndef QAREASERIES_H | ||
#define QAREASERIES_H | ||||
Michal Klocek
|
r421 | |||
Jani Honkonen
|
r697 | #include <qchartglobal.h> | ||
Tero Ahola
|
r988 | #include <qabstractseries.h> | ||
Michal Klocek
|
r421 | #include <QPen> | ||
#include <QBrush> | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
class QLineSeries; | ||||
Michal Klocek
|
r938 | class QAreaSeriesPrivate; | ||
Michal Klocek
|
r421 | |||
Tero Ahola
|
r988 | class QTCOMMERCIALCHART_EXPORT QAreaSeries : public QAbstractSeries | ||
Michal Klocek
|
r421 | { | ||
Q_OBJECT | ||||
Tero Ahola
|
r1498 | Q_PROPERTY(QLineSeries *upperSeries READ upperSeries) | ||
Q_PROPERTY(QLineSeries *lowerSeries READ lowerSeries) | ||||
Tero Ahola
|
r1481 | Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged) | ||
Q_PROPERTY(QColor borderColor READ borderColor WRITE setBorderColor NOTIFY borderColorChanged) | ||||
Tero Ahola
|
r1308 | |||
Michal Klocek
|
r421 | public: | ||
Tero Ahola
|
r1202 | explicit QAreaSeries(QObject *parent = 0); | ||
Michal Klocek
|
r970 | explicit QAreaSeries(QLineSeries *upperSeries, QLineSeries *lowerSeries = 0); | ||
~QAreaSeries(); | ||||
Michal Klocek
|
r421 | |||
Michal Klocek
|
r938 | public: | ||
Michal Klocek
|
r1107 | QAbstractSeries::SeriesType type() const; | ||
Michal Klocek
|
r421 | |||
Tero Ahola
|
r1202 | void setUpperSeries(QLineSeries* series); | ||
Michal Klocek
|
r938 | QLineSeries* upperSeries() const; | ||
Tero Ahola
|
r1202 | void setLowerSeries(QLineSeries* series); | ||
Michal Klocek
|
r938 | 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 | |||
Tero Ahola
|
r1481 | void setColor(const QColor &color); | ||
QColor color() const; | ||||
void setBorderColor(const QColor &color); | ||||
QColor borderColor() const; | ||||
Tero Ahola
|
r987 | void setPointsVisible(bool visible = true); | ||
Michal Klocek
|
r938 | bool pointsVisible() const; | ||
sauimone
|
r775 | Q_SIGNALS: | ||
sauimone
|
r743 | void clicked(const QPointF &point); | ||
Michal Klocek
|
r855 | void selected(); | ||
Tero Ahola
|
r1481 | void colorChanged(QColor color); | ||
void borderColorChanged(QColor color); | ||||
Michal Klocek
|
r421 | |||
private: | ||||
Tero Ahola
|
r1481 | Q_DECLARE_PRIVATE(QAreaSeries) | ||
Q_DISABLE_COPY(QAreaSeries) | ||||
Michal Klocek
|
r938 | friend class AreaLegendMarker; | ||
friend class AreaChartItem; | ||||
Michal Klocek
|
r421 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif | ||||