##// END OF EJS Templates
Fixed paint and mouse event issues with QLineSeries...
Fixed paint and mouse event issues with QLineSeries 1. The bounding rectangle of QLineSeries item did not take line width into account; this caused paint issues if the width is bigger than 1. 2. The width of the shape of the item was always 1. This caused problems with mouse events; onClicked was not always signaled, even if you click on top (but not in the middle of) a thick line series.

File last commit:

r1009:983f422506c5
r1791:877b494897a0
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