##// END OF EJS Templates
Fix grid animation to do not go out of bound
Fix grid animation to do not go out of bound

File last commit:

r476:b6fb05e4e56f
r504:142210a64aff
Show More
scatterchartitem_p.h
55 lines | 1.2 KiB | text/x-c | CLexer
Michal Klocek
Refactor scatter chart to fit the other classes...
r470 #ifndef SCATTERPRESENTER_H
#define SCATTERPRESENTER_H
#include "qchartglobal.h"
#include "xychartitem_p.h"
Michal Klocek
Refactor animation to fit line,spline,scatter...
r476 #include "xychartanimationitem_p.h"
#include <QGraphicsItem>
Michal Klocek
Refactor scatter chart to fit the other classes...
r470 #include <QPen>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QScatterSeries;
class ScatterChartItem : public XYChartItem
{
Q_OBJECT
public:
Michal Klocek
Refactor animation to fit line,spline,scatter...
r476 explicit ScatterChartItem(QScatterSeries *series, QGraphicsItem *parent = 0);
Michal Klocek
Refactor scatter chart to fit the other classes...
r470
public:
//from QGraphicsItem
QRectF boundingRect() const;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
void setPen(const QPen& pen);
void setBrush(const QBrush& brush);
signals:
void clicked(QPointF coordinates);
public slots:
void handleUpdated();
private:
void createPoints(int count);
void deletePoints(int count);
protected:
virtual void setGeometry(QVector<QPointF>& points);
private:
QScatterSeries *m_series;
QGraphicsItemGroup m_items;
int m_shape;
int m_size;
QRectF m_rect;
Michal Klocek
Refactor animation to fit line,spline,scatter...
r476
template<class,class> friend class XYChartAnimator;
Michal Klocek
Refactor scatter chart to fit the other classes...
r470 };
Michal Klocek
Refactor animation to fit line,spline,scatter...
r476 typedef XYChartAnimationItem<ScatterChartItem,QScatterSeries> ScatterChartAnimationItem;
Michal Klocek
Refactor scatter chart to fit the other classes...
r470 QTCOMMERCIALCHART_END_NAMESPACE
#endif // SCATTERPRESENTER_H