qareaseries.h
86 lines
| 2.5 KiB
| text/x-c
|
CLexer
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2432 | ** Copyright (C) 2013 Digia Plc | ||
Jani Honkonen
|
r794 | ** All rights reserved. | ||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
Miikka Heikkinen
|
r2574 | ** This file is part of the Qt Enterprise Charts Add-on. | ||
Jani Honkonen
|
r794 | ** | ||
** $QT_BEGIN_LICENSE$ | ||||
Miikka Heikkinen
|
r2574 | ** Licensees holding valid Qt Enterprise licenses may use this file in | ||
** accordance with the Qt Enterprise License Agreement provided with the | ||||
Jani Honkonen
|
r794 | ** 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 | |||
Jani Honkonen
|
r2104 | void setUpperSeries(QLineSeries *series); | ||
QLineSeries *upperSeries() const; | ||||
void setLowerSeries(QLineSeries *series); | ||||
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: | ||
Marek Rosa
|
r2264 | void clicked(const QPointF &point); | ||
void hovered(const QPointF &point, bool state); | ||||
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; | ||||
sauimone
|
r2176 | friend class QAreaLegendMarkerPrivate; | ||
Michal Klocek
|
r421 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
Jani Honkonen
|
r2046 | #endif // QAREASERIES_H | ||