21#include <QGraphicsLineItem>
22#include "vectoritem.h"
34 enum {Type = UserType + Line
51 LineItem(
double x0 = 0,
double y0 = 0,
unsigned color = 0,
52 QGraphicsItem* parent =
nullptr,
double length = 1,
53 bool visible =
true,
Symbol symbol = SolidLine,
double relSize = 1,
66 LineItem(
const KConfigGroup* plo,
unsigned color = 0,
67 QGraphicsItem* parent =
nullptr);
89 virtual int type()
const override {
return Type; };
Symbol
Symbol types.
Definition kplitem.h:83
Line item class.
Definition lineitem.h:31
void setProperties(const QTransform &m)
Sets properties according to transformation matrix.
virtual int type() const override
Returns specific QGraphicsItem type number.
Definition lineitem.h:89
void writePlo(KConfigGroup *plo) const
Writes into plot file.
void setDashOffset()
Sets offset for dashed lines.
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override
Updates position.
void setPenWidth()
Sets pen width.
void setSymbol(Symbol symbol)
Sets line type.
Definition lineitem.h:85
QPixmap pixmap() const
Returns decoration pixmap for item list.
LineItem(const KConfigGroup *plo, unsigned color=0, QGraphicsItem *parent=nullptr)
Constructor.
Symbol symbol() const
Returns line type.
Definition lineitem.h:87
LineItem(double x0=0, double y0=0, unsigned color=0, QGraphicsItem *parent=nullptr, double length=1, bool visible=true, Symbol symbol=SolidLine, double relSize=1, double dir=0)
Constructor.
void setProperties()
Sets properties according to transformation matrix.
LineItem(const LineItem &a)
Copy constructor.
void update()
Applies changes and forces redrawing.
virtual ~LineItem()
Destructor.
Vector item class.
Definition vectoritem.h:34