#include <KDChartThreeDBarAttributes.h>
Inheritance diagram for KDChart::ThreeDBarAttributes:
Public Member Functions | |
uint | angle () const |
double | depth () const |
bool | isEnabled () const |
bool | operator!= (const AbstractThreeDAttributes &other) const |
bool | operator!= (const ThreeDBarAttributes &other) const |
ThreeDBarAttributes & | operator= (const ThreeDBarAttributes &) |
bool | operator== (const AbstractThreeDAttributes &) const |
bool | operator== (const ThreeDBarAttributes &) const |
void | setAngle (uint threeDAngle) |
void | setDepth (double depth) |
void | setEnabled (bool enabled) |
void | setUseShadowColors (bool useShadowColors) |
ThreeDBarAttributes (const ThreeDBarAttributes &) | |
ThreeDBarAttributes () | |
bool | useShadowColors () const |
double | validDepth () const |
~ThreeDBarAttributes () |
|
Definition at line 44 of file KDChartThreeDBarAttributes.cpp.
00045 : AbstractThreeDAttributes( new Private() ) 00046 { 00047 00048 } |
|
Definition at line 50 of file KDChartThreeDBarAttributes.cpp. References d.
00051 : AbstractThreeDAttributes( new Private( *r.d) ) 00052 { 00053 } |
|
Definition at line 65 of file KDChartThreeDBarAttributes.cpp.
00066 { 00067 } |
|
Definition at line 98 of file KDChartThreeDBarAttributes.cpp. References d. Referenced by operator<<(), and operator==().
00099 { 00100 return d->angle; 00101 } |
|
Definition at line 103 of file KDChartAbstractThreeDAttributes.cpp. References d. Referenced by operator<<(), KDChart::AbstractThreeDAttributes::operator==(), KDChart::PieDiagram::paint(), KDChart::LineDiagram::paint(), and KDChart::BarDiagram::paint().
00104 { 00105 return d->depth; 00106 } |
|
Definition at line 92 of file KDChartAbstractThreeDAttributes.cpp. References d. Referenced by operator<<(), KDChart::AbstractThreeDAttributes::operator==(), KDChart::PieDiagram::paint(), KDChart::LineDiagram::paint(), KDChart::BarDiagram::paint(), and KDChart::AbstractThreeDAttributes::validDepth().
00093 { 00094 return d->enabled; 00095 } |
|
Definition at line 57 of file KDChartAbstractThreeDAttributes.h.
00057 { return !operator==(other); } |
|
Definition at line 53 of file KDChartThreeDBarAttributes.h.
00053 { return !operator==(other); } |
|
Definition at line 55 of file KDChartThreeDBarAttributes.cpp. References d.
00056 { 00057 if( this == &r ) 00058 return *this; 00059 00060 *d = *r.d; 00061 00062 return *this; 00063 } |
|
Definition at line 72 of file KDChartAbstractThreeDAttributes.cpp. References KDChart::AbstractThreeDAttributes::depth(), and KDChart::AbstractThreeDAttributes::isEnabled(). Referenced by KDChart::ThreeDPieAttributes::operator==(), KDChart::ThreeDLineAttributes::operator==(), and operator==().
|
|
Definition at line 74 of file KDChartThreeDBarAttributes.cpp. References angle(), KDChart::AbstractThreeDAttributes::operator==(), and useShadowColors().
00075 { 00076 return ( useShadowColors() == r.useShadowColors() && 00077 angle() == r.angle() && 00078 AbstractThreeDAttributes::operator==(r)); 00079 } |
|
Definition at line 93 of file KDChartThreeDBarAttributes.cpp. References d.
00094 { 00095 d->angle = threeDAngle; 00096 } |
|
Definition at line 97 of file KDChartAbstractThreeDAttributes.cpp. References d.
00098 { 00099 d->depth = depth; 00100 } |
|
Definition at line 87 of file KDChartAbstractThreeDAttributes.cpp. References d.
00088 { 00089 d->enabled = enabled; 00090 } |
|
Definition at line 83 of file KDChartThreeDBarAttributes.cpp. References d.
00084 { 00085 d->useShadowColors = shadowColors; 00086 } |
|
Definition at line 88 of file KDChartThreeDBarAttributes.cpp. References d. Referenced by operator<<(), and operator==().
00089 { 00090 return d->useShadowColors; 00091 } |
|
Definition at line 109 of file KDChartAbstractThreeDAttributes.cpp. References d, and KDChart::AbstractThreeDAttributes::isEnabled(). Referenced by KDChart::LineDiagram::threeDItemDepth(), and KDChart::BarDiagram::threeDItemDepth().
|