CTextItem.h 278 B

12345678910111213
  1. #ifndef CTEXTITEM_H
  2. #define CTEXTITEM_H
  3. #include <QGraphicsTextItem>
  4. class CTextItem : public QGraphicsTextItem
  5. {
  6. Q_OBJECT
  7. public:
  8. CTextItem(const QString &text = QString(), const QPoint &pos = QPoint(), QGraphicsItem *parent = nullptr);
  9. };
  10. #endif // CTEXTITEM_H