##// END OF EJS Templates
Donut support simplified. Examples updated
Donut support simplified. Examples updated

File last commit:

r1009:983f422506c5
r1838:886026b75e22
Show More
drilldownslice.h
49 lines | 1.3 KiB | text/x-c | CLexer
Jani Honkonen
Split piechartdrilldown to different files
r851 /****************************************************************************
**
** 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 DRILLDOWNSLICE_H
#define DRILLDOWNSLICE_H
#include <QPieSlice>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 class QAbstractSeries;
Jani Honkonen
Split piechartdrilldown to different files
r851 QTCOMMERCIALCHART_END_NAMESPACE
QTCOMMERCIALCHART_USE_NAMESPACE
class DrilldownSlice : public QPieSlice
{
Q_OBJECT
public:
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 DrilldownSlice(qreal value, QString prefix, QAbstractSeries* drilldownSeries);
Jani Honkonen
Split piechartdrilldown to different files
r851 virtual ~DrilldownSlice();
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 QAbstractSeries* drilldownSeries() const;
Jani Honkonen
Split piechartdrilldown to different files
r851
public Q_SLOTS:
void updateLabel();
Jani Honkonen
API review changes for pie
r1009 void showHighlight(bool show);
Jani Honkonen
Split piechartdrilldown to different files
r851
private:
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 QAbstractSeries* m_drilldownSeries;
Jani Honkonen
Split piechartdrilldown to different files
r851 QString m_prefix;
};
#endif // DRILLDOWNSLICE_H