QGIS API Documentation 3.43.0-Master (a6cade80589)
qgsmodelarrowitem.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsmodelarrowitem.h
3 ----------------------------------
4 Date : March 2020
5 Copyright : (C) 2020 Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSMODELARROWITEM_H
17#define QGSMODELARROWITEM_H
18
19#include "qgis.h"
20#include "qgis_gui.h"
21#include <QGraphicsPathItem>
22#include <QObject>
23
24class QgsModelComponentGraphicItem;
25
27
28
35class GUI_EXPORT QgsModelArrowItem : public QObject, public QGraphicsPathItem
36{
37 Q_OBJECT
38 public:
39 enum Marker
40 {
41 Circle,
42 ArrowHead,
43 NoMarker
44 };
45
52 QgsModelArrowItem( QgsModelComponentGraphicItem *startItem, Qt::Edge startEdge, int startIndex, bool startIsOutgoing, Marker startMarker, QgsModelComponentGraphicItem *endItem, Qt::Edge endEdge, int endIndex, bool endIsIncoming, Marker endMarker );
53
60 QgsModelArrowItem( QgsModelComponentGraphicItem *startItem, Qt::Edge startEdge, int startIndex, Marker startMarker, QgsModelComponentGraphicItem *endItem, Marker endMarker );
61
68 QgsModelArrowItem( QgsModelComponentGraphicItem *startItem, Marker startMarker, QgsModelComponentGraphicItem *endItem, Qt::Edge endEdge, int endIndex, Marker endMarker );
69
75 QgsModelArrowItem( QgsModelComponentGraphicItem *startItem, Marker startMarker, QgsModelComponentGraphicItem *endItem, Marker endMarker );
76
77 void paint( QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr ) override;
78
82 void setPenStyle( Qt::PenStyle style );
83
84 public slots:
85
89 void updatePath();
90
91 private:
92 QPointF bezierPointForCurve( const QPointF &point, Qt::Edge edge, bool incoming, bool hasSpecificDirectionalFlow ) const;
93
94 void drawArrowHead( QPainter *painter, const QPointF &point, const QPointF &vector );
95
96 QgsModelComponentGraphicItem *mStartItem = nullptr;
97 Qt::Edge mStartEdge = Qt::LeftEdge;
98 int mStartIndex = -1;
99 bool mStartIsOutgoing = true;
100 Marker mStartMarker;
101
102 QgsModelComponentGraphicItem *mEndItem = nullptr;
103 Qt::Edge mEndEdge = Qt::LeftEdge;
104 int mEndIndex = -1;
105 bool mEndIsIncoming = false;
106 Marker mEndMarker;
107
108 QPointF mStartPoint;
109 QPointF mEndPoint;
110
111 QColor mColor;
112};
113
115
116#endif // QGSMODELARROWITEM_H