00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef KDCHARTTHREEDPIEATTRIBUTES_H
00027 #define KDCHARTTHREEDPIEATTRIBUTES_H
00028
00029 #include <QMetaType>
00030 #include "KDChartAbstractThreeDAttributes.h"
00031 #include "KDChartGlobal.h"
00032
00033 namespace KDChart {
00034
00038 class KDCHART_EXPORT ThreeDPieAttributes : public AbstractThreeDAttributes
00039 {
00040 public:
00041 ThreeDPieAttributes();
00042 ThreeDPieAttributes( const ThreeDPieAttributes& );
00043 ThreeDPieAttributes &operator= ( const ThreeDPieAttributes& );
00044
00045 ~ThreeDPieAttributes();
00046
00047
00048 void setUseShadowColors( bool useShadowColors );
00049 bool useShadowColors() const;
00050
00051 bool operator==( const ThreeDPieAttributes& ) const;
00052 inline bool operator!=( const ThreeDPieAttributes& other ) const { return !operator==(other); }
00053
00054
00055 KDCHART_DECLARE_SWAP_DERIVED(ThreeDPieAttributes)
00056
00057 private:
00058 KDCHART_DECLARE_PRIVATE_DERIVED(ThreeDPieAttributes)
00059
00060 };
00061
00062 }
00063
00064 #if !defined(QT_NO_DEBUG_STREAM)
00065 KDCHART_EXPORT QDebug operator<<(QDebug, const KDChart::ThreeDPieAttributes& );
00066 #endif
00067
00068 Q_DECLARE_METATYPE( KDChart::ThreeDPieAttributes )
00069 Q_DECLARE_TYPEINFO( KDChart::ThreeDPieAttributes, Q_MOVABLE_TYPE );
00070 KDCHART_DECLARE_SWAP_SPECIALISATION_DERIVED( KDChart::ThreeDPieAttributes )
00071
00072 #endif // KDCHARTTHREEDPIEATTRIBUTES_H