|
|
#ifndef QPIESLICE_H
|
|
|
#define QPIESLICE_H
|
|
|
|
|
|
#include <qchartglobal.h>
|
|
|
#include <QObject>
|
|
|
#include <QPen>
|
|
|
#include <QBrush>
|
|
|
#include <QFont>
|
|
|
|
|
|
QTCOMMERCIALCHART_BEGIN_NAMESPACE
|
|
|
|
|
|
class QTCOMMERCIALCHART_EXPORT QPieSlice : public QObject
|
|
|
{
|
|
|
Q_OBJECT
|
|
|
Q_PROPERTY(QString label READ label WRITE setLabel NOTIFY changed)
|
|
|
Q_PROPERTY(qreal value READ value WRITE setValue NOTIFY changed)
|
|
|
|
|
|
public:
|
|
|
QPieSlice(QObject *parent = 0);
|
|
|
QPieSlice(qreal value, QString label, QObject *parent = 0);
|
|
|
virtual ~QPieSlice();
|
|
|
|
|
|
// data
|
|
|
qreal value() const;
|
|
|
QString label() const;
|
|
|
bool isLabelVisible() const;
|
|
|
bool isExploded() const;
|
|
|
qreal explodeDistance() const;
|
|
|
|
|
|
// generated data
|
|
|
qreal percentage() const;
|
|
|
qreal startAngle() const;
|
|
|
qreal endAngle() const;
|
|
|
|
|
|
// customization
|
|
|
QPen pen() const;
|
|
|
QBrush brush() const;
|
|
|
QPen labelPen() const;
|
|
|
QFont labelFont() const;
|
|
|
qreal labelArmLength() const;
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
void clicked();
|
|
|
void hoverEnter();
|
|
|
void hoverLeave();
|
|
|
void changed();
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
|
|
// data
|
|
|
void setLabel(QString label);
|
|
|
void setLabelVisible(bool visible);
|
|
|
void setValue(qreal value);
|
|
|
void setExploded(bool exploded);
|
|
|
void setExplodeDistance(qreal distance);
|
|
|
|
|
|
// customization
|
|
|
void setPen(QPen pen);
|
|
|
void setBrush(QBrush brush);
|
|
|
void setLabelFont(QFont font);
|
|
|
void setLabelPen(QPen pen);
|
|
|
void setLabelArmLength(qreal len);
|
|
|
|
|
|
// TODO: label position in general
|
|
|
// setLabelFlags(inside|outside|labelArmOn|labelArmOff|???)
|
|
|
// setLabelOrientation(horizontal|vertical|same as slice center angle|???)
|
|
|
|
|
|
private:
|
|
|
|
|
|
// TODO: use private class
|
|
|
friend class QPieSeries;
|
|
|
friend class PiePresenter;
|
|
|
friend class PieSlice;
|
|
|
|
|
|
// data
|
|
|
qreal m_value;
|
|
|
QString m_label;
|
|
|
bool m_isLabelVisible;
|
|
|
bool m_isExploded;
|
|
|
qreal m_explodeDistance;
|
|
|
|
|
|
// generated data
|
|
|
qreal m_percentage;
|
|
|
qreal m_startAngle;
|
|
|
qreal m_angleSpan;
|
|
|
|
|
|
// customization
|
|
|
QPen m_pen;
|
|
|
QBrush m_brush;
|
|
|
QPen m_labelPen;
|
|
|
QFont m_labelFont;
|
|
|
qreal m_labelArmLength;
|
|
|
};
|
|
|
|
|
|
QTCOMMERCIALCHART_END_NAMESPACE
|
|
|
|
|
|
#endif // QPIESLICE_H
|
|
|
|