qbarset.h
104 lines
| 3.0 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
|
r169 | public: | ||
sauimone
|
r280 | QBarSet(QString name, QObject *parent = 0); | ||
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
|
r812 | void clicked(QString category, Qt::MouseButtons button); // Clicked and hover signals exposed to user | ||
sauimone
|
r239 | |||
sauimone
|
r296 | // TODO: TO PIMPL ---> | ||
sauimone
|
r934 | // void structureChanged(); | ||
// void valueChanged(); | ||||
// void hoverEnter(QPoint pos); | ||||
// void hoverLeave(); | ||||
// void showToolTip(QPoint pos, QString tip); // Private signal | ||||
// void labelsVisibleChanged(bool visible); | ||||
sauimone
|
r296 | // <--- TO PIMPL | ||
sauimone
|
r280 | |||
sauimone
|
r296 | public Q_SLOTS: | ||
// These are for internal communication | ||||
// TODO: TO PIMPL ---> | ||||
sauimone
|
r934 | // void barHoverEnterEvent(QPoint pos); | ||
// void barHoverLeaveEvent(); | ||||
sauimone
|
r296 | // <--- TO PIMPL | ||
sauimone
|
r239 | |||
sauimone
|
r171 | private: | ||
sauimone
|
r934 | QBarSetPrivate * const d_ptr; | ||
Q_DECLARE_PRIVATE(QBarSet) | ||||
Q_DISABLE_COPY(QBarSet) | ||||
/* | ||||
sauimone
|
r763 | QString m_name; | ||
QList<qreal> m_values; // TODO: replace with map (category, value) | ||||
QMap<QString, qreal> m_mappedValues; | ||||
QPen m_pen; | ||||
QBrush m_brush; | ||||
sauimone
|
r820 | QPen m_labelPen; | ||
QBrush m_labelBrush; | ||||
QFont m_labelFont; | ||||
bool m_labelsVisible; | ||||
sauimone
|
r934 | */ | ||
sauimone
|
r169 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif // QBARSET_H | ||||