#include <KDChartAbstractThreeDAttributes.h>
Inheritance diagram for KDChart::AbstractThreeDAttributes:
Public Member Functions | |
| AbstractThreeDAttributes (const AbstractThreeDAttributes &) | |
| AbstractThreeDAttributes () | |
| double | depth () const |
| bool | isEnabled () const |
| bool | operator!= (const AbstractThreeDAttributes &other) const |
| AbstractThreeDAttributes & | operator= (const AbstractThreeDAttributes &) |
| bool | operator== (const AbstractThreeDAttributes &) const |
| void | setDepth (double depth) |
| void | setEnabled (bool enabled) |
| double | validDepth () const |
| virtual | ~AbstractThreeDAttributes ()=0 |
|
|
Definition at line 46 of file KDChartAbstractThreeDAttributes.cpp.
00047 : _d( new Private() )
00048 {
00049 }
|
|
|
Definition at line 51 of file KDChartAbstractThreeDAttributes.cpp. References d.
00052 : _d( new Private( *r.d ) )
00053 {
00054 }
|
|
|
Definition at line 66 of file KDChartAbstractThreeDAttributes.cpp.
00067 {
00068 delete _d; _d = 0;
00069 }
|
|
|
Definition at line 103 of file KDChartAbstractThreeDAttributes.cpp. References d. Referenced by operator<<(), 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<<(), operator==(), KDChart::PieDiagram::paint(), KDChart::LineDiagram::paint(), KDChart::BarDiagram::paint(), and validDepth().
00093 {
00094 return d->enabled;
00095 }
|
|
|
Definition at line 57 of file KDChartAbstractThreeDAttributes.h.
00057 { return !operator==(other); }
|
|
|
Definition at line 56 of file KDChartAbstractThreeDAttributes.cpp. References d.
00057 {
00058 if( this == &r )
00059 return *this;
00060
00061 *d = *r.d;
00062
00063 return *this;
00064 }
|
|
|
Definition at line 72 of file KDChartAbstractThreeDAttributes.cpp. References depth(), and isEnabled(). Referenced by KDChart::ThreeDPieAttributes::operator==(), KDChart::ThreeDLineAttributes::operator==(), and KDChart::ThreeDBarAttributes::operator==().
|
|
|
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 109 of file KDChartAbstractThreeDAttributes.cpp. References d, and isEnabled(). Referenced by KDChart::LineDiagram::threeDItemDepth(), and KDChart::BarDiagram::threeDItemDepth().
|
1.3.6