ReverseMapper.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef REVERSEMAPPER_H
00024 #define REVERSEMAPPER_H
00025
00026 #include <QModelIndex>
00027 #include <QHash>
00028
00029 class QRectF;
00030 class QGraphicsScene;
00031 class QPolygonF;
00032
00033 namespace KDChart {
00034
00035 class AbstractDiagram;
00036 class ChartGraphicsItem;
00037
00042 class ReverseMapper
00043 {
00044
00045 public:
00046 ReverseMapper();
00047 explicit ReverseMapper( AbstractDiagram* diagram );
00048
00049 ~ReverseMapper();
00050
00051 void setDiagram( AbstractDiagram* diagram );
00052
00053 void clear();
00054
00055 QModelIndexList indexesAt( const QPointF& point ) const;
00056 QModelIndexList indexesIn( const QRect& rect ) const;
00057
00058 QPolygonF polygon( int row, int column ) const;
00059 QRectF boundingRect( int row, int column ) const;
00060
00061 void addItem( ChartGraphicsItem* item );
00062
00063
00064 void addPolygon( int row, int column, const QPolygonF& polygon );
00065 void addRect( int row, int column, const QRectF& rect );
00066 void addCircle( int row, int column, const QPointF& location, const QSizeF& diameter );
00067 void addLine( int row, int column, const QPointF& from, const QPointF& to );
00068
00069 private:
00070 QGraphicsScene* m_scene;
00071 AbstractDiagram* m_diagram;
00072 QHash<QModelIndex, ChartGraphicsItem*> m_itemMap;
00073 };
00074
00075 }
00076
00077 #endif