#ifndef TEXTPOINTITEM_H #define TEXTPOINTITEM_H #include #include #include #include "textitem.h" class QPainter; class QFont; class QImage; class QColor; class TextPointItem : public TextItem { public: TextPointItem() : TextItem(0), _font(0), _img(0) {} TextPointItem(const QPoint &point, const QString *text, const QFont *font, const QImage *img, const QColor *color, const QColor *bgColor = 0); bool isValid() const {return !_rect.isEmpty();} QRectF boundingRect() const {return _rect;} QPainterPath shape() const {return _shape;} void paint(QPainter *painter) const; void setPos(const QPoint &point); private: const QFont *_font; const QImage *_img; const QColor *_color, *_bgColor; QRect _rect, _textRect; QPainterPath _shape; }; #endif // TEXTPOINTITEM_H