##// END OF EJS Templates
Added size hint for the widget
Added size hint for the widget

File last commit:

r13:335e8906dfcb
r29:1f6ecd9d10e9
Show More
qseriespointgraphicsitem.h
18 lines | 468 B | text/x-c | CLexer
/ test / chartwidgettest / qseriespointgraphicsitem.h
#ifndef QSERIESPOINTGRAPHICSITEM_H
#define QSERIESPOINTGRAPHICSITEM_H
#include <QGraphicsItem>
class QSeriesPointGraphicsItem : public QGraphicsItem
{
public:
QSeriesPointGraphicsItem(qreal dx, qreal dy, QGraphicsItem *parent = 0);
private:
QRectF boundingRect() const;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
qreal m_dx;
qreal m_dy;
};
#endif // QSERIESPOINTGRAPHICSITEM_H