piechartitem_p.h
77 lines
| 2.3 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$ | ||||
** | ||||
****************************************************************************/ | ||||
Jani Honkonen
|
r568 | #ifndef PIECHARTITEM_H | ||
#define PIECHARTITEM_H | ||||
Jani Honkonen
|
r142 | |||
#include "qpieseries.h" | ||||
Jani Honkonen
|
r566 | #include "chartitem_p.h" | ||
Jani Honkonen
|
r673 | #include "piesliceitem_p.h" | ||
Jani Honkonen
|
r142 | |||
class QGraphicsItem; | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Jani Honkonen
|
r566 | class QPieSlice; | ||
Jani Honkonen
|
r659 | class ChartPresenter; | ||
Jani Honkonen
|
r142 | |||
Jani Honkonen
|
r1053 | typedef QHash<PieSliceItem*, PieSliceData> PieLayout; | ||
Jani Honkonen
|
r629 | |||
Michal Klocek
|
r677 | class PieChartItem : public ChartItem | ||
Jani Honkonen
|
r142 | { | ||
Q_OBJECT | ||||
public: | ||||
// TODO: use a generic data class instead of x and y | ||||
Michal Klocek
|
r677 | PieChartItem(QPieSeries *series, ChartPresenter *presenter); | ||
Jani Honkonen
|
r568 | ~PieChartItem(); | ||
Jani Honkonen
|
r142 | |||
Jani Honkonen
|
r157 | public: // from QGraphicsItem | ||
Jani Honkonen
|
r142 | QRectF boundingRect() const { return m_rect; } | ||
Jani Honkonen
|
r174 | void paint(QPainter *, const QStyleOptionGraphicsItem *, QWidget *); | ||
Jani Honkonen
|
r142 | |||
public Q_SLOTS: | ||||
Jani Honkonen
|
r621 | void initialize(); | ||
void handleSlicesAdded(QList<QPieSlice*> slices); | ||||
void handleSlicesRemoved(QList<QPieSlice*> slices); | ||||
void handlePieLayoutChanged(); | ||||
Jani Honkonen
|
r566 | void handleSliceChanged(); | ||
void handleDomainChanged(qreal, qreal, qreal, qreal); | ||||
Jani Honkonen
|
r142 | void handleGeometryChanged(const QRectF& rect); | ||
Jani Honkonen
|
r618 | public: | ||
Jani Honkonen
|
r621 | void calculatePieLayout(); | ||
Jani Honkonen
|
r668 | PieSliceData sliceData(QPieSlice *slice); | ||
Jani Honkonen
|
r629 | PieLayout calculateLayout(); | ||
void applyLayout(const PieLayout &layout); | ||||
Jani Honkonen
|
r1053 | void updateLayout(PieSliceItem *sliceItem, const PieSliceData &sliceData); | ||
Jani Honkonen
|
r629 | void setLayout(const PieLayout &layout); | ||
Jani Honkonen
|
r1053 | void setLayout(PieSliceItem *sliceItem, const PieSliceData &sliceData); | ||
Jani Honkonen
|
r174 | |||
Jani Honkonen
|
r142 | private: | ||
Jani Honkonen
|
r673 | friend class PieSliceItem; | ||
QHash<QPieSlice*, PieSliceItem*> m_slices; | ||||
Jani Honkonen
|
r174 | QPieSeries *m_series; | ||
Jani Honkonen
|
r142 | QRectF m_rect; | ||
Jani Honkonen
|
r454 | QPointF m_pieCenter; | ||
qreal m_pieRadius; | ||||
Jani Honkonen
|
r142 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
Jani Honkonen
|
r568 | #endif // PIECHARTITEM_H | ||