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 #include <QRectF>
00027 #include <QPainter>
00028
00029 #include "KDChartPaintContext.h"
00030 #include "KDChartAbstractCoordinatePlane.h"
00031
00032 #include <KDABLibFakes>
00033
00034 using namespace KDChart;
00035
00036 #define d (d_func())
00037
00038 class PaintContext::Private {
00039
00040 public:
00041 QPainter* painter;
00042 QRectF rect;
00043 AbstractCoordinatePlane* plane;
00044
00045 Private()
00046 : painter( 0 )
00047 , plane ( 0 )
00048 {}
00049 };
00050
00051 PaintContext::PaintContext()
00052 : _d ( new Private() )
00053 {
00054 }
00055
00056 PaintContext::~PaintContext()
00057 {
00058 delete _d;
00059 }
00060
00061 const QRectF PaintContext::rectangle() const
00062 {
00063 return d->rect;
00064 }
00065
00066 void PaintContext::setRectangle ( const QRectF& rect )
00067 {
00068 d->rect = rect;
00069 }
00070
00071 QPainter* PaintContext::painter() const
00072 {
00073 return d->painter;
00074 }
00075
00076 void PaintContext::setPainter( QPainter* painter )
00077 {
00078 d->painter = painter;
00079 }
00080
00081 AbstractCoordinatePlane* PaintContext::coordinatePlane() const
00082 {
00083 return d->plane;
00084 }
00085
00086 void PaintContext::setCoordinatePlane( AbstractCoordinatePlane* plane)
00087 {
00088 d->plane = plane;
00089 }