qpieslice_p.h
80 lines
| 2.1 KiB
| text/x-c
|
CLexer
Marek Rosa
|
r1365 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2432 | ** Copyright (C) 2013 Digia Plc | ||
Marek Rosa
|
r1365 | ** 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$ | ||||
** | ||||
****************************************************************************/ | ||||
// W A R N I N G | ||||
// ------------- | ||||
// | ||||
// This file is not part of the QtCommercial Chart API. It exists purely as an | ||||
// implementation detail. This header file may change from version to | ||||
// version without notice, or even be removed. | ||||
// | ||||
// We mean it. | ||||
Jani Honkonen
|
r1274 | #ifndef QPIESLICE_P_H | ||
#define QPIESLICE_P_H | ||||
#include <QObject> | ||||
#include "qpieslice.h" | ||||
#include "pieslicedata_p.h" | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Jani Honkonen
|
r1323 | class QPieSeries; | ||
Jani Honkonen
|
r1274 | |||
class QPieSlicePrivate : public QObject | ||||
{ | ||||
Q_OBJECT | ||||
public: | ||||
QPieSlicePrivate(QPieSlice *parent); | ||||
~QPieSlicePrivate(); | ||||
Jani Honkonen
|
r2104 | static QPieSlicePrivate *fromSlice(QPieSlice *slice); | ||
Jani Honkonen
|
r1274 | |||
void setPen(const QPen &pen, bool themed); | ||||
void setBrush(const QBrush &brush, bool themed); | ||||
Tero Ahola
|
r1307 | void setLabelBrush(const QBrush &brush, bool themed); | ||
Jani Honkonen
|
r1274 | void setLabelFont(const QFont &font, bool themed); | ||
void setPercentage(qreal percentage); | ||||
void setStartAngle(qreal angle); | ||||
void setAngleSpan(qreal span); | ||||
Tero Ahola
|
r1494 | Q_SIGNALS: | ||
void labelPositionChanged(); | ||||
void explodedChanged(); | ||||
void labelArmLengthFactorChanged(); | ||||
void explodeDistanceFactorChanged(); | ||||
Jani Honkonen
|
r1274 | private: | ||
Jani Honkonen
|
r1323 | friend class QPieSeries; | ||
Jani Honkonen
|
r1274 | friend class QPieSeriesPrivate; | ||
Michal Klocek
|
r2273 | friend class ChartThemeManager; | ||
Jani Honkonen
|
r1274 | friend class PieChartItem; | ||
QPieSlice * const q_ptr; | ||||
Q_DECLARE_PUBLIC(QPieSlice) | ||||
Jani Honkonen
|
r1323 | |||
PieSliceData m_data; | ||||
QPieSeries *m_series; | ||||
Jani Honkonen
|
r1274 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif // QPIESLICE_P_H | ||||