QGIS API Documentation 3.99.0-Master (09f76ad7019)
Loading...
Searching...
No Matches
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
22#include <QGraphicsPathItem>
23#include <QObject>
24
25class QgsModelComponentGraphicItem;
26
28
29
36class GUI_EXPORT QgsModelArrowItem : public QObject, public QGraphicsPathItem
37{
38 Q_OBJECT
39 public:
40 enum Marker
41 {
42 Circle,
43 ArrowHead,
44 NoMarker
45 };
46
53 QgsModelArrowItem( QgsModelComponentGraphicItem *startItem, Qt::Edge startEdge, int startIndex, bool startIsOutgoing, Marker startMarker, QgsModelComponentGraphicItem *endItem, Qt::Edge endEdge, int endIndex, bool endIsIncoming, Marker endMarker );
54
61 QgsModelArrowItem( QgsModelComponentGraphicItem *startItem, Qt::Edge startEdge, int startIndex, Marker startMarker, QgsModelComponentGraphicItem *endItem, Marker endMarker );
62
69 QgsModelArrowItem( QgsModelComponentGraphicItem *startItem, Marker startMarker, QgsModelComponentGraphicItem *endItem, Qt::Edge endEdge, int endIndex, Marker endMarker );
70
76 QgsModelArrowItem( QgsModelComponentGraphicItem *startItem, Marker startMarker, QgsModelComponentGraphicItem *endItem, Marker endMarker );
77
78 void paint( QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr ) override;
79
83 void setPenStyle( Qt::PenStyle style );
84
85 signals:
86
92 void painterPathUpdated();
93
94 public slots:
95
99 void updatePath();
100
101 private:
102 QPointF bezierPointForCurve( const QPointF &point, Qt::Edge edge, bool incoming, bool hasSpecificDirectionalFlow ) const;
103
104 void drawArrowHead( QPainter *painter, const QPointF &point, const QPointF &vector );
105
106 QgsModelComponentGraphicItem *mStartItem = nullptr;
107 Qt::Edge mStartEdge = Qt::LeftEdge;
108 int mStartIndex = -1;
109 bool mStartIsOutgoing = true;
110 Marker mStartMarker;
111
112 QgsModelComponentGraphicItem *mEndItem = nullptr;
113 Qt::Edge mEndEdge = Qt::LeftEdge;
114 int mEndIndex = -1;
115 bool mEndIsIncoming = false;
116 Marker mEndMarker;
117
118 QPointF mStartPoint;
119 QPointF mEndPoint;
120
121 QColor mColor;
122};
123
125
126#endif // QGSMODELARROWITEM_H