mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-03-30 19:28:27 +02:00
31 lines
680 B
C++
31 lines
680 B
C++
#ifndef TEXTPATHITEM_H
|
|
#define TEXTPATHITEM_H
|
|
|
|
#include <QVector>
|
|
#include <QPainterPath>
|
|
#include "textitem.h"
|
|
|
|
class TextPathItem : public TextItem
|
|
{
|
|
public:
|
|
TextPathItem() : _text(0), _font(0), _color(0) {}
|
|
TextPathItem(const QPolygonF &line, const QString *label,
|
|
const QRect &tileRect, const QFont *font, const QColor *color);
|
|
|
|
bool isValid() const {return !_path.isEmpty();}
|
|
|
|
QPainterPath shape() const {return _shape;}
|
|
QRectF boundingRect() const {return _rect;}
|
|
void paint(QPainter *painter) const;
|
|
|
|
private:
|
|
const QString *_text;
|
|
const QFont *_font;
|
|
const QColor *_color;
|
|
QPainterPath _path;
|
|
QRectF _rect;
|
|
QPainterPath _shape;
|
|
};
|
|
|
|
#endif // TEXTPATHITEM_H
|