qbarset.h
115 lines
| 3.5 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$ | ||||
** | ||||
****************************************************************************/ | ||||
sauimone
|
r169 | #ifndef QBARSET_H | ||
#define QBARSET_H | ||||
sauimone
|
r276 | #include <qchartglobal.h> | ||
sauimone
|
r183 | #include <QPen> | ||
#include <QBrush> | ||||
sauimone
|
r820 | #include <QFont> | ||
sauimone
|
r169 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
sauimone
|
r934 | class QBarSetPrivate; | ||
sauimone
|
r169 | |||
sauimone
|
r239 | class QTCOMMERCIALCHART_EXPORT QBarSet : public QObject | ||
sauimone
|
r169 | { | ||
sauimone
|
r240 | Q_OBJECT | ||
sauimone
|
r1429 | Q_PROPERTY(QString label READ label WRITE setLabel NOTIFY labelChanged) | ||
Q_PROPERTY(QPen pen READ pen WRITE setPen NOTIFY penChanged) | ||||
Q_PROPERTY(QBrush brush READ brush WRITE setBrush NOTIFY brushChanged) | ||||
Q_PROPERTY(QBrush labelBrush READ labelBrush WRITE setLabelBrush NOTIFY labelBrushChanged) | ||||
Q_PROPERTY(QFont labelFont READ labelFont WRITE setLabelFont NOTIFY labelFontChanged) | ||||
Tero Ahola
|
r1465 | Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged) | ||
Q_PROPERTY(QColor borderColor READ borderColor WRITE setBorderColor NOTIFY borderColorChanged) | ||||
Q_PROPERTY(QColor labelColor READ labelColor WRITE setLabelColor NOTIFY labelColorChanged) | ||||
Michal Klocek
|
r938 | |||
sauimone
|
r169 | public: | ||
sauimone
|
r1429 | explicit QBarSet(const QString label, QObject *parent = 0); | ||
sauimone
|
r980 | virtual ~QBarSet(); | ||
sauimone
|
r169 | |||
sauimone
|
r1429 | void setLabel(const QString label); | ||
QString label() const; | ||||
sauimone
|
r1159 | |||
sauimone
|
r1246 | void append(const qreal value); | ||
sauimone
|
r1500 | void append(const QList<qreal> &values); | ||
sauimone
|
r1159 | |||
sauimone
|
r1246 | QBarSet& operator << (const qreal &value); | ||
sauimone
|
r1159 | |||
sauimone
|
r1246 | void insert(const int index, const qreal value); | ||
sauimone
|
r1514 | void remove(const int index, const int count = 1); | ||
sauimone
|
r993 | void replace(const int index, const qreal value); | ||
sauimone
|
r1580 | qreal at(const int index) const; | ||
qreal operator [] (const int index) const; | ||||
sauimone
|
r993 | int count() const; | ||
qreal sum() const; | ||||
sauimone
|
r430 | |||
sauimone
|
r763 | void setPen(const QPen &pen); | ||
sauimone
|
r473 | QPen pen() const; | ||
sauimone
|
r214 | |||
sauimone
|
r763 | void setBrush(const QBrush &brush); | ||
sauimone
|
r473 | QBrush brush() const; | ||
sauimone
|
r214 | |||
sauimone
|
r820 | void setLabelBrush(const QBrush &brush); | ||
QBrush labelBrush() const; | ||||
void setLabelFont(const QFont &font); | ||||
QFont labelFont() const; | ||||
Tero Ahola
|
r1465 | QColor color(); | ||
void setColor(QColor color); | ||||
QColor borderColor(); | ||||
void setBorderColor(QColor color); | ||||
QColor labelColor(); | ||||
void setLabelColor(QColor color); | ||||
sauimone
|
r1353 | Q_SIGNALS: | ||
sauimone
|
r1490 | void clicked(int index); | ||
void hovered(bool status); | ||||
sauimone
|
r1353 | void penChanged(); | ||
void brushChanged(); | ||||
void labelChanged(); | ||||
void labelBrushChanged(); | ||||
void labelFontChanged(); | ||||
Tero Ahola
|
r1465 | void colorChanged(QColor color); | ||
void borderColorChanged(QColor color); | ||||
void labelColorChanged(QColor color); | ||||
sauimone
|
r1353 | |||
void valuesAdded(int index, int count); | ||||
void valuesRemoved(int index, int count); | ||||
void valueChanged(int index); | ||||
sauimone
|
r171 | private: | ||
Michal Klocek
|
r938 | QScopedPointer<QBarSetPrivate> d_ptr; | ||
sauimone
|
r934 | Q_DISABLE_COPY(QBarSet) | ||
sauimone
|
r1586 | friend class QAbstractBarSeries; | ||
sauimone
|
r953 | friend class BarLegendMarker; | ||
sauimone
|
r962 | friend class BarChartItem; | ||
sauimone
|
r1584 | friend class QAbstractBarSeriesPrivate; | ||
sauimone
|
r1580 | friend class StackedBarChartItem; | ||
friend class PercentBarChartItem; | ||||
friend class GroupedBarChartItem; | ||||
sauimone
|
r169 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif // QBARSET_H | ||||