##// END OF EJS Templates
Missing member initialization in QPieSeriesPrivate
Missing member initialization in QPieSeriesPrivate

File last commit:

r794:4c76de65bbac
r797:32aca7087c53
Show More
qpiesliceprivate_p.h
56 lines | 1.4 KiB | text/x-c | CLexer
/ src / piechart / qpiesliceprivate_p.h
Jani Honkonen
Add license headers
r794 /****************************************************************************
**
** 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$
**
****************************************************************************/
Jani Honkonen
Adding PIMPL to pie
r669 #ifndef QPIESLICEPRIVATE_P_H
#define QPIESLICEPRIVATE_P_H
#include "qpieslice.h"
Jani Honkonen
Move PieSliceData to own header
r675 #include "pieslicedata_p.h"
Jani Honkonen
Adding PIMPL to pie
r669
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Jani Honkonen
Getting rid of friend classes in pie API
r676 class QPieSlicePrivate : public QObject
Jani Honkonen
Adding PIMPL to pie
r669 {
Jani Honkonen
Getting rid of friend classes in pie API
r676 Q_OBJECT
Jani Honkonen
Adding PIMPL to pie
r669 Q_DECLARE_PUBLIC(QPieSlice)
public:
Jani Honkonen
Getting rid of friend classes in pie API
r676 QPieSlicePrivate(QPieSlice *parent)
:QObject(parent),
q_ptr(parent)
{
connect(this, SIGNAL(changed()), q_ptr, SIGNAL(changed()));
}
Jani Honkonen
Adding PIMPL to pie
r669 ~QPieSlicePrivate() {}
Jani Honkonen
Getting rid of friend classes in pie API
r676 Q_SIGNALS:
void changed();
Jani Honkonen
Adding PIMPL to pie
r669
Jani Honkonen
Getting rid of friend classes in pie API
r676 public:
friend class QPieSeriesPrivate;
Jani Honkonen
Fix setting custom color to pie. Now the pie knows if the color is set by the user.
r691 friend class ChartTheme;
Jani Honkonen
Getting rid of friend classes in pie API
r676 QPieSlice * const q_ptr;
Jani Honkonen
Adding PIMPL to pie
r669 PieSliceData m_data;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QPIESLICEPRIVATE_P_H