##// END OF EJS Templates
Make public headers compile with -Wzero-as-null-pointer-constant...
Make public headers compile with -Wzero-as-null-pointer-constant ... or equivalent. QtBase 5.6 headers already compile that way, so let the other modules follow suit. Change-Id: I79c74046eaf224235cc80a4323fefd2c083b007f Task-number: QTBUG-45291 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2871:cf15f38aab8d
r2871:cf15f38aab8d
Show More
qhpiemodelmapper.h
71 lines | 2.3 KiB | text/x-c | CLexer
Titta Heikkala
Updated license headers...
r2845 /******************************************************************************
Marek Rosa
Added license text to piemodelmapper classes
r1309 **
Titta Heikkala
Updated license headers...
r2845 ** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
Marek Rosa
Added license text to piemodelmapper classes
r1309 **
Titta Heikkala
Updated license headers...
r2740 ** This file is part of the Qt Charts module.
Marek Rosa
Added license text to piemodelmapper classes
r1309 **
Titta Heikkala
Updated license headers...
r2845 ** $QT_BEGIN_LICENSE:COMM$
Marek Rosa
Added license text to piemodelmapper classes
r1309 **
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.
Marek Rosa
Added license text to piemodelmapper classes
r1309 **
Titta Heikkala
Updated license headers...
r2845 ** $QT_END_LICENSE$
**
******************************************************************************/
Marek Rosa
Added license text to piemodelmapper classes
r1309
Marek Rosa
Added Vertical and Horizontal PieModelMapper
r1237 #ifndef QHPIEMODELMAPPER_H
#define QHPIEMODELMAPPER_H
Titta Heikkala
Fix include syntax...
r2714 #include <QtCharts/QPieModelMapper>
Marek Rosa
Added Vertical and Horizontal PieModelMapper
r1237
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
/* Comment line for syncqt to generate the fwd-include correctly, due to QTBUG-22432 */
class QT_CHARTS_EXPORT QHPieModelMapper : public QPieModelMapper
Marek Rosa
Added Vertical and Horizontal PieModelMapper
r1237 {
Q_OBJECT
Marek Rosa
PieModelMapper removed from the docs
r1508 Q_PROPERTY(QPieSeries *series READ series WRITE setSeries NOTIFY seriesReplaced)
Q_PROPERTY(QAbstractItemModel *model READ model WRITE setModel NOTIFY modelReplaced)
Marek Rosa
Added NOTIFY to PieModelMapper class properties
r1474 Q_PROPERTY(int valuesRow READ valuesRow WRITE setValuesRow NOTIFY valuesRowChanged)
Q_PROPERTY(int labelsRow READ labelsRow WRITE setLabelsRow NOTIFY labelsRowChanged)
Marek Rosa
PieModelMapper properties first and count moved to Vertical and Horizontal mappers with more descriptive names
r1499 Q_PROPERTY(int firstColumn READ firstColumn WRITE setFirstColumn NOTIFY firstColumnChanged)
Q_PROPERTY(int columnCount READ columnCount WRITE setColumnCount NOTIFY columnCountChanged)
Marek Rosa
Added Vertical and Horizontal PieModelMapper
r1237
public:
Marc Mutz
Make public headers compile with -Wzero-as-null-pointer-constant...
r2871 explicit QHPieModelMapper(QObject *parent = Q_NULLPTR);
Marek Rosa
Added Vertical and Horizontal PieModelMapper
r1237
Jani Honkonen
more coding style fixes for src-folder...
r2104 QAbstractItemModel *model() const;
Marek Rosa
PieModelMapper removed from the docs
r1508 void setModel(QAbstractItemModel *model);
Jani Honkonen
more coding style fixes for src-folder...
r2104 QPieSeries *series() const;
Marek Rosa
PieModelMapper removed from the docs
r1508 void setSeries(QPieSeries *series);
Marek Rosa
Added Vertical and Horizontal PieModelMapper
r1237 int valuesRow() const;
void setValuesRow(int valuesRow);
int labelsRow() const;
void setLabelsRow(int labelsRow);
Marek Rosa
Added NOTIFY to PieModelMapper class properties
r1474
Marek Rosa
PieModelMapper properties first and count moved to Vertical and Horizontal mappers with more descriptive names
r1499 int firstColumn() const;
void setFirstColumn(int firstColumn);
int columnCount() const;
void setColumnCount(int columnCount);
Marek Rosa
Added NOTIFY to PieModelMapper class properties
r1474 Q_SIGNALS:
Marek Rosa
PieModelMapper removed from the docs
r1508 void seriesReplaced();
void modelReplaced();
Marek Rosa
Added NOTIFY to PieModelMapper class properties
r1474 void valuesRowChanged();
void labelsRowChanged();
Marek Rosa
PieModelMapper properties first and count moved to Vertical and Horizontal mappers with more descriptive names
r1499 void firstColumnChanged();
void columnCountChanged();
Marek Rosa
Added Vertical and Horizontal PieModelMapper
r1237 };
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE
Marek Rosa
Added Vertical and Horizontal PieModelMapper
r1237
#endif // QHPIEMODELMAPPER_H