##// END OF EJS Templates
Rest of the pie, bar, area and scatter properties to QML property tester
Rest of the pie, bar, area and scatter properties to QML property tester

File last commit:

r1307:7b3a3ea4ca65
r1308:dde391dc31a2
Show More
qpieslice.h
114 lines | 3.6 KiB | text/x-c | CLexer
/****************************************************************************
**
** 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$
**
****************************************************************************/
#ifndef QPIESLICE_H
#define QPIESLICE_H
#include <qchartglobal.h>
#include <QObject>
#include <QPen>
#include <QBrush>
#include <QFont>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QPieSlicePrivate;
class QTCOMMERCIALCHART_EXPORT QPieSlice : public QObject
{
Q_OBJECT
Q_PROPERTY(QString label READ label WRITE setLabel NOTIFY labelChanged)
Q_PROPERTY(qreal value READ value WRITE setValue NOTIFY valueChanged)
Q_PROPERTY(bool labelVisible READ isLabelVisible WRITE setLabelVisible NOTIFY labelVisibleChanged)
Q_PROPERTY(bool exploded READ isExploded WRITE setExploded NOTIFY explodedChanged)
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)
Q_PROPERTY(qreal labelArmLengthFactor READ labelArmLengthFactor WRITE setLabelArmLengthFactor)
Q_PROPERTY(qreal explodeDistanceFactor READ explodeDistanceFactor WRITE setExplodeDistanceFactor)
Q_PROPERTY(qreal percentage READ percentage NOTIFY percentageChanged)
Q_PROPERTY(qreal startAngle READ startAngle NOTIFY startAngleChanged)
Q_PROPERTY(qreal angleSpan READ angleSpan NOTIFY angleSpanChanged)
public:
explicit QPieSlice(QObject *parent = 0);
QPieSlice(QString label, qreal value, QObject *parent = 0);
virtual ~QPieSlice();
void setLabel(QString label);
QString label() const;
void setValue(qreal value);
qreal value() const;
void setLabelVisible(bool visible = true);
bool isLabelVisible() const;
void setExploded(bool exploded = true);
bool isExploded() const;
void setPen(const QPen &pen);
QPen pen() const;
void setBrush(const QBrush &brush);
QBrush brush() const;
void setLabelBrush(const QBrush &brush);
QBrush labelBrush() const;
void setLabelFont(const QFont &font);
QFont labelFont() const;
void setLabelArmLengthFactor(qreal factor);
qreal labelArmLengthFactor() const;
void setExplodeDistanceFactor(qreal factor);
qreal explodeDistanceFactor() const;
qreal percentage() const;
qreal startAngle() const;
qreal angleSpan() const;
Q_SIGNALS:
void labelChanged();
void valueChanged();
void labelVisibleChanged();
void explodedChanged();
void penChanged();
void brushChanged();
void labelBrushChanged();
void labelFontChanged();
void labelArmLengthFactorChanged();
void explodeDistanceFactorChanged();
void percentageChanged();
void startAngleChanged();
void angleSpanChanged();
void clicked();
void hovered(bool state);
private:
QPieSlicePrivate * const d_ptr;
Q_DECLARE_PRIVATE(QPieSlice)
Q_DISABLE_COPY(QPieSlice)
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QPIESLICE_H