QtPBFImagePlugin/src/text.h

30 lines
679 B
C
Raw Normal View History

2018-10-29 00:11:23 +01:00
#ifndef TEXT_H
#define TEXT_H
#include "textitem.h"
2018-10-29 00:11:23 +01:00
class Text
2018-10-29 00:11:23 +01:00
{
public:
Text(const QSize &size, qreal scale)
: _sceneRect(QRectF(QPointF(0, 0), size)), _fontScale(scale) {}
~Text();
2018-11-13 01:01:36 +01:00
void render(QPainter *painter) const;
2018-10-29 00:11:23 +01:00
void addLabel(const QString &text, const QPointF &pos, const QFont &font,
const QPen &pen, qreal maxTextWidth);
void addLabel(const QString &text, const QPainterPath &path,
2018-11-04 23:54:34 +01:00
const QFont &font, const QPen &pen, qreal maxAngle);
private:
void addItem(TextItem *item) {_items.append(item);}
QList<TextItem *> collidingItems(const TextItem *item) const;
QRectF _sceneRect;
qreal _fontScale;
QList<TextItem *> _items;
2018-10-29 00:11:23 +01:00
};
#endif // TEXT_H