qbarset.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$ | ||||
** | ||||
****************************************************************************/ | ||||
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 | ||
Michal Klocek
|
r938 | |||
sauimone
|
r169 | public: | ||
Michal Klocek
|
r970 | explicit QBarSet(QString name, QObject *parent = 0); | ||
~QBarSet(); | ||||
sauimone
|
r169 | |||
void setName(QString name); | ||||
sauimone
|
r776 | QString name() const; | ||
sauimone
|
r183 | QBarSet& operator << (const qreal &value); // appends new value to set | ||
Marek Rosa
|
r662 | void insertValue(int i, qreal value); | ||
Marek Rosa
|
r663 | void removeValue(int i); | ||
sauimone
|
r776 | int count() const; // count of values in set | ||
sauimone
|
r934 | qreal valueAt(int index) const; // for modifying individual values | ||
sauimone
|
r280 | void setValue(int index, qreal value); // setter for individual value | ||
sauimone
|
r934 | qreal sum() const; // sum of all values in the set | ||
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 setLabelPen(const QPen &pen); | ||
QPen labelPen() const; | ||||
sauimone
|
r512 | |||
sauimone
|
r820 | void setLabelBrush(const QBrush &brush); | ||
QBrush labelBrush() const; | ||||
void setLabelFont(const QFont &font); | ||||
QFont labelFont() const; | ||||
void setLabelsVisible(bool visible = true); | ||||
bool labelsVisible() const; | ||||
sauimone
|
r813 | |||
sauimone
|
r263 | Q_SIGNALS: | ||
sauimone
|
r975 | void clicked(QString category, Qt::MouseButtons button); | ||
void selected(); | ||||
void hovered(bool status); | ||||
sauimone
|
r239 | |||
sauimone
|
r171 | private: | ||
Michal Klocek
|
r938 | QScopedPointer<QBarSetPrivate> d_ptr; | ||
sauimone
|
r934 | Q_DISABLE_COPY(QBarSet) | ||
Michal Klocek
|
r938 | friend class QBarSeries; | ||
sauimone
|
r953 | friend class BarLegendMarker; | ||
sauimone
|
r962 | friend class BarChartItem; | ||
sauimone
|
r968 | friend class QBarSeriesPrivate; | ||
sauimone
|
r169 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif // QBARSET_H | ||||