libkpl  6.0
A Library for Graphical Presentation of Data Sets and Functions
arrowitem.h
1/***************************************************************************
2 arrowitem.h - description
3 -------------------
4 begin : Sat Apr 14 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 ARROWITEM_H
19#define ARROWITEM_H
20
21#include <QAbstractGraphicsShapeItem>
22#include <QPolygonF>
23#include "vectoritem.h"
24
25class QTransform;
26
31class Q_DECL_EXPORT ArrowItem :
32 public VectorItem, public QAbstractGraphicsShapeItem
33{
34public:
36 enum {Type = UserType + Arrow
40 };
54 ArrowItem(double x0 = 0, double y0 = 0, unsigned color = 0,
55 QGraphicsItem* parent = nullptr, double length = 1,
56 bool visible = true, bool doubleHeaded = false,
57 Symbol symbol = SolidLine,
58 double relSize = 1, double dir = 0);
70 ArrowItem(const KConfigGroup* plo, unsigned color = 0,
71 QGraphicsItem* parent = nullptr);
73 virtual ~ArrowItem();
75 virtual QRectF boundingRect() const override;
77 inline bool doubleHeaded() const { return m_doubleHeaded; };
79 virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem* option,
80 QWidget* widget = nullptr) override;
82 QPixmap pixmap() const;
87 inline void setDoubleHeaded(bool b) { m_doubleHeaded = b; };
89 void setHead();
96 void setProperties(const QTransform& m);
101 inline void setSymbol(Symbol symbol) { m_symbol = symbol; };
103 inline Symbol symbol() const { return m_symbol; };
105 virtual int type() const override { return Type; };
107 void update();
112 void writePlo(KConfigGroup* plo) const;
113
114protected:
116 virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent* event) override;
119 bool m_doubleHeaded;
120 Symbol m_symbol;
121 double l2, lHead;
122 QPolygonF head;
123};
124
125#endif
Arrow item class.
Definition arrowitem.h:33
virtual ~ArrowItem()
Destructor.
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget=nullptr) override
Paints item.
void setDoubleHeaded(bool b)
Sets doubleheaded mode.
Definition arrowitem.h:87
ArrowItem(const ArrowItem &a)
Copy constructor.
void setPenWidth()
Sets pen width.
void writePlo(KConfigGroup *plo) const
Writes into plot file.
QPixmap pixmap() const
Returns decoration pixmap for item list.
virtual int type() const override
Returns specific QGraphicsItem type number.
Definition arrowitem.h:105
virtual QRectF boundingRect() const override
Calculates bounding rectangle.
Symbol symbol() const
Returns line type.
Definition arrowitem.h:103
bool doubleHeaded() const
Returns true for doubleheaded arrow.
Definition arrowitem.h:77
void setHead()
Sets head shape.
ArrowItem(double x0=0, double y0=0, unsigned color=0, QGraphicsItem *parent=nullptr, double length=1, bool visible=true, bool doubleHeaded=false, Symbol symbol=SolidLine, double relSize=1, double dir=0)
Constructor.
void setProperties()
Sets properties according to transformation matrix.
void update()
Applies changes and forces redrawing.
void setProperties(const QTransform &m)
Sets properties according to transformation matrix.
ArrowItem(const KConfigGroup *plo, unsigned color=0, QGraphicsItem *parent=nullptr)
Constructor.
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override
Updates position.
void setSymbol(Symbol symbol)
Sets line type.
Definition arrowitem.h:101
Symbol
Symbol types.
Definition kplitem.h:83
Vector item class.
Definition vectoritem.h:34