libkpl  6.0
A Library for Graphical Presentation of Data Sets and Functions
legenditem.h
1/***************************************************************************
2 legenditem.h - description
3 -------------------
4
5 This file is a part of kpl - a program for graphical presentation of
6 data sets and functions.
7
8 begin : Tue Aug 31 1999
9 copyright : (C) 2024 by Werner Stille
10 email : kpl@werner-stille.de
11 ***************************************************************************/
12
13/***************************************************************************
14 * *
15 * This program is free software; you can redistribute it and/or modify *
16 * it under the terms of the GNU General Public License as published by *
17 * the Free Software Foundation; either version 2 of the License, or *
18 * (at your option) any later version. *
19 * *
20 ***************************************************************************/
21
22#ifndef LEGENDITEM_H
23#define LEGENDITEM_H
24
25#include <QGraphicsItem>
26#include <QTextDocument>
27#include "decoitem.h"
28
29class KConfigGroup;
30
36class Q_DECL_EXPORT LegendItem : public DecoItem, public QGraphicsItem
37{
38public:
40 enum {Type = UserType + Legend
44 };
60 LegendItem(double x0 = 0, double y0 = 0, unsigned colorSymbol = 0,
61 unsigned colorText = 0, Symbol symbol = SolidLine,
62 double xOff = 1, double yOff = 0, QGraphicsItem* parent = nullptr,
63 const QString& text = QString(), bool visible = true,
64 double relSize = 1, double symbolSize = 1);
79 LegendItem(const KConfigGroup* plo, unsigned colorSymbol, unsigned colorText,
80 Symbol symbol, double frameWidth,
81 QGraphicsItem* parent = nullptr);
83 virtual ~LegendItem();
85 virtual QRectF boundingRect() const override;
87 virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem* option,
88 QWidget* widget = nullptr) override;
90 QPixmap pixmap() const;
95 void setProperties(const QTransform& m);
97 void setSize();
102 inline void setSymbol(Symbol symbol) { m_symbol = symbol; };
107 inline void setSymbolSize(double symbolSize) { m_symbolSize = symbolSize; };
112 inline void setText(const QString& text) { m_text = text; };
117 inline void setTextColor(unsigned color) { m_textColor = color; };
122 inline void setTextX(double x) { m_textX = x; };
127 inline void setTextY(double y) { m_textY = y; };
129 inline Symbol symbol() const { return m_symbol; };
131 inline double symbolSize() const { return m_symbolSize; };
133 inline QString text() const { return m_text; };
135 inline unsigned textColor() const { return m_textColor; };
137 inline double textX() const { return m_textX; };
139 inline double textY() const { return m_textY; };
141 virtual int type() const override { return Type; };
143 void update();
148 void writePlo(KConfigGroup* plo) const;
149
150protected:
152 void init();
154 virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent* event) override;
158 QRectF textRect() const;
159 Symbol m_symbol;
160 unsigned m_textColor;
161 double m_textX, m_textY, m_symbolSize;
162 QString m_text;
163 QTextDocument m_doc;
164 QPen m_pen;
165 QRectF symbRect;
166};
167
168#endif
Decoration item class.
Definition decoitem.h:36
unsigned color() const
Returns color.
Definition decoitem.h:56
Symbol
Symbol types.
Definition kplitem.h:83
Legend item class.
Definition legenditem.h:37
void setTextX(double x)
Sets x offset for text.
Definition legenditem.h:122
virtual QRectF boundingRect() const override
Calculates bounding rectangle.
void setText(const QString &text)
Sets text.
Definition legenditem.h:112
LegendItem(double x0=0, double y0=0, unsigned colorSymbol=0, unsigned colorText=0, Symbol symbol=SolidLine, double xOff=1, double yOff=0, QGraphicsItem *parent=nullptr, const QString &text=QString(), bool visible=true, double relSize=1, double symbolSize=1)
Constructor.
void setSymbolSize(double symbolSize)
Sets symbol size.
Definition legenditem.h:107
QPixmap pixmap() const
Returns decoration pixmap for item list.
unsigned textColor() const
Returns text color.
Definition legenditem.h:135
double symbolSize() const
Returns relative symbol size.
Definition legenditem.h:131
void init()
Performs initialization.
void setProperties(const QTransform &m)
Sets properties according to transformation matrix.
virtual int type() const override
Returns specific QGraphicsItem type number.
Definition legenditem.h:141
void setProperties()
Sets properties according to transformation matrix.
void setSize()
Sets size according to transformation matrix.
QRectF textRect() const
Returns text rectangle.
LegendItem(const KConfigGroup *plo, unsigned colorSymbol, unsigned colorText, Symbol symbol, double frameWidth, QGraphicsItem *parent=nullptr)
Constructor.
LegendItem(const LegendItem &a)
Copy constructor.
double textY() const
Returns y offset for text in cm.
Definition legenditem.h:139
virtual ~LegendItem()
Destructor.
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget=nullptr) override
Paints item.
double textX() const
Returns x offset for text in cm.
Definition legenditem.h:137
Symbol symbol() const
Returns symbol type.
Definition legenditem.h:129
void update()
Applies changes and forces redrawing.
void setSymbol(Symbol symbol)
Sets symbol type.
Definition legenditem.h:102
void writePlo(KConfigGroup *plo) const
Writes into plot file.
QString text() const
Returns text.
Definition legenditem.h:133
void setTextColor(unsigned color)
Sets text color.
Definition legenditem.h:117
void setTextY(double y)
Sets y offset for text.
Definition legenditem.h:127
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override
Updates position.