##// END OF EJS Templates
Fix zoomlinechart x-axis pan direction...
Fix zoomlinechart x-axis pan direction Change-Id: I92765fbb1ac11596dd3b76edc5e72daf374ad7f5 Reviewed-by: Mika Salmela <mika.salmela@digia.com>

File last commit:

r2574:599370d0561c
r2579:82300aabf82d
Show More
drilldownslice.h
49 lines | 1.3 KiB | text/x-c | CLexer
Jani Honkonen
Split piechartdrilldown to different files
r851 /****************************************************************************
**
Miikka Heikkinen
More copyright year changes
r2433 ** Copyright (C) 2013 Digia Plc
Jani Honkonen
Split piechartdrilldown to different files
r851 ** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** This file is part of the Qt Enterprise Charts Add-on.
Jani Honkonen
Split piechartdrilldown to different files
r851 **
** $QT_BEGIN_LICENSE$
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
Jani Honkonen
Split piechartdrilldown to different files
r851 ** 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:
Jani Honkonen
more coding style fixes for examples...
r2102 DrilldownSlice(qreal value, QString prefix, QAbstractSeries *drilldownSeries);
Jani Honkonen
Split piechartdrilldown to different files
r851 virtual ~DrilldownSlice();
Jani Honkonen
more coding style fixes for examples...
r2102 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:
Jani Honkonen
more coding style fixes for examples...
r2102 QAbstractSeries *m_drilldownSeries;
Jani Honkonen
Split piechartdrilldown to different files
r851 QString m_prefix;
};
#endif // DRILLDOWNSLICE_H