##// END OF EJS Templates
Values and Intervals axes ranges are now initialized only if they haven't been preset earlier
Values and Intervals axes ranges are now initialized only if they haven't been preset earlier

File last commit:

r1494:0e4d11fde6b8
r1703:d83729eb88d8
Show More
qpieslice_p.h
80 lines | 2.1 KiB | text/x-c | CLexer
Marek Rosa
License added to several files
r1365 /****************************************************************************
**
** 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$
**
****************************************************************************/
// 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
pie: added everything as a property in QPieSlice...
r1274 #ifndef QPIESLICE_P_H
#define QPIESLICE_P_H
#include <QObject>
#include "qpieslice.h"
#include "pieslicedata_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Jani Honkonen
Add QPieSlice::series() and tests
r1323 class QPieSeries;
Jani Honkonen
pie: added everything as a property in QPieSlice...
r1274
class QPieSlicePrivate : public QObject
{
Q_OBJECT
public:
QPieSlicePrivate(QPieSlice *parent);
~QPieSlicePrivate();
static QPieSlicePrivate* fromSlice(QPieSlice *slice);
void setPen(const QPen &pen, bool themed);
void setBrush(const QBrush &brush, bool themed);
Tero Ahola
Use labelBrush instead of labelPen for text labels
r1307 void setLabelBrush(const QBrush &brush, bool themed);
Jani Honkonen
pie: added everything as a property in QPieSlice...
r1274 void setLabelFont(const QFont &font, bool themed);
void setPercentage(qreal percentage);
void setStartAngle(qreal angle);
void setAngleSpan(qreal span);
Tero Ahola
Removed unnecessary signals from QPieSlice
r1494 Q_SIGNALS:
void labelPositionChanged();
void explodedChanged();
void labelArmLengthFactorChanged();
void explodeDistanceFactorChanged();
Jani Honkonen
pie: added everything as a property in QPieSlice...
r1274 private:
Jani Honkonen
Add QPieSlice::series() and tests
r1323 friend class QPieSeries;
Jani Honkonen
pie: added everything as a property in QPieSlice...
r1274 friend class QPieSeriesPrivate;
friend class ChartTheme;
friend class PieChartItem;
QPieSlice * const q_ptr;
Q_DECLARE_PUBLIC(QPieSlice)
Jani Honkonen
Add QPieSlice::series() and tests
r1323
PieSliceData m_data;
QPieSeries *m_series;
Jani Honkonen
pie: added everything as a property in QPieSlice...
r1274 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QPIESLICE_P_H