##// END OF EJS Templates
PieSliceItem bounding rect fix
PieSliceItem bounding rect fix

File last commit:

r691:02b456949de5
r718:7a2556deb83d
Show More
qpiesliceprivate_p.h
36 lines | 666 B | text/x-c | CLexer
/ src / piechart / qpiesliceprivate_p.h
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