QGIS API Documentation 3.99.0-Master (2fe06baccd8)
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 public slots:
86
90 void updatePath();
91
92 private:
93 QPointF bezierPointForCurve( const QPointF &point, Qt::Edge edge, bool incoming, bool hasSpecificDirectionalFlow ) const;
94
95 void drawArrowHead( QPainter *painter, const QPointF &point, const QPointF &vector );
96
97 QgsModelComponentGraphicItem *mStartItem = nullptr;
98 Qt::Edge mStartEdge = Qt::LeftEdge;
99 int mStartIndex = -1;
100 bool mStartIsOutgoing = true;
101 Marker mStartMarker;
102
103 QgsModelComponentGraphicItem *mEndItem = nullptr;
104 Qt::Edge mEndEdge = Qt::LeftEdge;
105 int mEndIndex = -1;
106 bool mEndIsIncoming = false;
107 Marker mEndMarker;
108
109 QPointF mStartPoint;
110 QPointF mEndPoint;
111
112 QColor mColor;
113};
114
116
117#endif // QGSMODELARROWITEM_H