##// END OF EJS Templates
Fix crash with empty BarSet values...
Fix crash with empty BarSet values Change-Id: I6c82ad2985f7efc501ed0df34b8205875a369fd0 Task-number: QTBUG-51287 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2845:ae12522d475c
r2869:8f454d1f8b44
Show More
percentbarchartitem_p.h
60 lines | 1.6 KiB | text/x-c | CLexer
/ src / charts / barchart / vertical / percent / percentbarchartitem_p.h
Titta Heikkala
Updated license headers...
r2845 /******************************************************************************
Jani Honkonen
Add license headers
r794 **
Titta Heikkala
Updated license headers...
r2845 ** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
Jani Honkonen
Add license headers
r794 **
Titta Heikkala
Updated license headers...
r2740 ** This file is part of the Qt Charts module.
Jani Honkonen
Add license headers
r794 **
Titta Heikkala
Updated license headers...
r2845 ** $QT_BEGIN_LICENSE:COMM$
Jani Honkonen
Add license headers
r794 **
Titta Heikkala
Updated license headers...
r2845 ** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
Jani Honkonen
Add license headers
r794 **
Titta Heikkala
Updated license headers...
r2845 ** $QT_END_LICENSE$
**
******************************************************************************/
Jani Honkonen
Add license headers
r794
sauimone
cleaned crap from barseries private headers. Added missing license texts
r1248 // W A R N I N G
// -------------
//
Titta Heikkala
Updated private header warning...
r2807 // This file is not part of the Qt Chart API. It exists purely as an
sauimone
cleaned crap from barseries private headers. Added missing license texts
r1248 // implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666 #ifndef PERCENTBARCHARTITEM_H
#define PERCENTBARCHARTITEM_H
Titta Heikkala
Fix include syntax...
r2714 #include <private/abstractbarchartitem_p.h>
#include <QtWidgets/QGraphicsItem>
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666
sauimone
QBarSeries to QAbstractBarSeries
r1584 class QAbstractBarSeries;
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666
sauimone
refactoring internal barchart items
r1674 class PercentBarChartItem : public AbstractBarChartItem
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666 {
Q_OBJECT
public:
Michal Klocek
Refactors internals...
r2273 PercentBarChartItem(QAbstractBarSeries *series, QGraphicsItem* item = 0);
Marek Rosa
BarChartItems code cleanup
r2305 void handleUpdatedBars();
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666
Miikka Heikkinen
Fix build against 5.6...
r2793 private Q_SLOTS:
Titta Heikkala
Added possibility to show series value...
r2689 void handleLabelsPositionChanged();
void positionLabels();
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666 private:
Marek Rosa
Bar animations refactored
r2316 virtual QVector<QRectF> calculateLayout();
void initializeLayout();
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666 };
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666
#endif // PERCENTBARCHARTITEM_H