libkpl  6.0
A Library for Graphical Presentation of Data Sets and Functions
textitem.h
1/***************************************************************************
2 textitem.h - description
3 -------------------
4 begin : Wed Apr 18 2001
5 copyright : (C) 2024 by Werner Stille
6 email : kpl@werner-stille.de
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18#ifndef TEXTITEM_H
19#define TEXTITEM_H
20
21#include <QGraphicsItem>
22#include <QTextDocument>
23#include "decoitem.h"
24
25using namespace Qt::Literals::StringLiterals;
26
31class Q_DECL_EXPORT TextItem : public DecoItem, public QGraphicsItem
32{
33public:
35 enum Alignment {
36 AlignLeft = 1,
38 AlignRight
39 };
41 enum {Type = UserType + Text
43 };
56 TextItem(double x0 = 0, double y0 = 0, unsigned color = 0,
57 QGraphicsItem* parent = nullptr, const QString& text = QString(),
58 bool visible = true, Alignment alignment = AlignLeft,
59 double relSize = 1, double dir = 0);
66 TextItem(const KConfigGroup* plo, unsigned color = 0,
67 QGraphicsItem* parent = nullptr);
72 TextItem(const TextItem& a);
74 virtual ~TextItem();
76 inline Alignment alignment() const { return m_alignment; };
78 virtual QRectF boundingRect() const override;
80 inline double dir() const { return m_dir; };
82 virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem* option,
83 QWidget* widget = nullptr) override;
88 inline void setAlignment(Alignment alignment) { m_alignment = alignment; };
93 inline void setDir(double dir) { m_dir = dir; };
98 void setProperties(const QTransform& m);
100 void setSize();
105 inline void setText(const QString& text) { m_text = text; };
112 static void setText(QTextDocument& doc, const QString& text,
113 unsigned color = 0);
115 inline QString text() const { return m_text; };
117 virtual int type() const override { return Type; };
119 void update();
124 void writePlo(KConfigGroup* plo) const;
125
126protected:
128 void init();
130 virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent* event) override;
133 Alignment m_alignment;
134 double m_dir;
135 QString m_text;
136 QTextDocument m_doc;
137};
138
139#endif
Decoration item class.
Definition decoitem.h:36
Text item class.
Definition textitem.h:32
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override
Updates position.
static void setText(QTextDocument &doc, const QString &text, unsigned color=0)
Sets text.
void init()
Performs initialization.
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget=nullptr) override
Paints item.
virtual int type() const override
Returns specific QGraphicsItem type number.
Definition textitem.h:117
virtual QRectF boundingRect() const override
Calculates bounding rectangle.
void setText(const QString &text)
Sets text.
Definition textitem.h:105
void writePlo(KConfigGroup *plo) const
Writes into plot file.
TextItem(const KConfigGroup *plo, unsigned color=0, QGraphicsItem *parent=nullptr)
Constructor.
void setAlignment(Alignment alignment)
Sets alignment.
Definition textitem.h:88
Alignment
Text alignment.
Definition textitem.h:35
@ AlignCentered
Aligns at center.
Definition textitem.h:37
virtual ~TextItem()
Destructor.
TextItem(const TextItem &a)
Copy constructor.
Alignment alignment() const
Returns horizontal alignment.
Definition textitem.h:76
double dir() const
Returns rotation angle in deg.
Definition textitem.h:80
TextItem(double x0=0, double y0=0, unsigned color=0, QGraphicsItem *parent=nullptr, const QString &text=QString(), bool visible=true, Alignment alignment=AlignLeft, double relSize=1, double dir=0)
Constructor.
void setProperties()
Sets properties according to transformation matrix.
void setSize()
Sets size according to transformation matrix.
void setProperties(const QTransform &m)
Sets properties according to transformation matrix.
void update()
Applies changes and forces redrawing.
void setDir(double dir)
Sets rotation angle.
Definition textitem.h:93
QString text() const
Returns text.
Definition textitem.h:115