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 KDCHARTTHREEDBARATTRIBUTES_H
00027 #define KDCHARTTHREEDBARATTRIBUTES_H
00028
00029 #include <QMetaType>
00030 #include "KDChartAbstractThreeDAttributes.h"
00031 #include "KDChartGlobal.h"
00032
00033 namespace KDChart {
00034
00038 class KDCHART_EXPORT ThreeDBarAttributes : public AbstractThreeDAttributes
00039 {
00040 public:
00041 ThreeDBarAttributes();
00042 ThreeDBarAttributes( const ThreeDBarAttributes& );
00043 ThreeDBarAttributes &operator= ( const ThreeDBarAttributes& );
00044
00045 ~ThreeDBarAttributes();
00046
00047
00048 void setUseShadowColors( bool useShadowColors );
00049 bool useShadowColors() const;
00050
00051
00052 void setAngle( uint threeDAngle );
00053 uint angle() const;
00054
00055 bool operator==( const ThreeDBarAttributes& ) const;
00056 inline bool operator!=( const ThreeDBarAttributes& other ) const { return !operator==(other); }
00057
00058 KDCHART_DECLARE_SWAP_DERIVED(ThreeDBarAttributes)
00059
00060 KDCHART_DECLARE_PRIVATE_DERIVED(ThreeDBarAttributes)
00061
00062 };
00063
00064 }
00065
00066 #if !defined(QT_NO_DEBUG_STREAM)
00067 KDCHART_EXPORT QDebug operator<<(QDebug, const KDChart::ThreeDBarAttributes& );
00068 #endif
00069
00070 Q_DECLARE_METATYPE( KDChart::ThreeDBarAttributes )
00071 Q_DECLARE_TYPEINFO( KDChart::ThreeDBarAttributes, Q_MOVABLE_TYPE );
00072 KDCHART_DECLARE_SWAP_SPECIALISATION_DERIVED( KDChart::ThreeDBarAttributes )
00073
00074 #endif // KDCHARTTHREEDBARATTRIBUTES_H