QtBase  v6.3.1
edge.cpp
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 ** Copyright (C) 2016 The Qt Company Ltd.
4 ** Contact: https://www.qt.io/licensing/
5 **
6 ** This file is part of the examples of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and The Qt Company. For licensing terms
14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
16 **
17 ** BSD License Usage
18 ** Alternatively, you may use this file under the terms of the BSD license
19 ** as follows:
20 **
21 ** "Redistribution and use in source and binary forms, with or without
22 ** modification, are permitted provided that the following conditions are
23 ** met:
24 ** * Redistributions of source code must retain the above copyright
25 ** notice, this list of conditions and the following disclaimer.
26 ** * Redistributions in binary form must reproduce the above copyright
27 ** notice, this list of conditions and the following disclaimer in
28 ** the documentation and/or other materials provided with the
29 ** distribution.
30 ** * Neither the name of The Qt Company Ltd nor the names of its
31 ** contributors may be used to endorse or promote products derived
32 ** from this software without specific prior written permission.
33 **
34 **
35 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
38 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
39 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
44 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
45 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
46 **
47 ** $QT_END_LICENSE$
48 **
49 ****************************************************************************/
50 
51 #include "edge.h"
52 #include "node.h"
53 
54 #include <QPainter>
55 #include <QtMath>
56 
58 Edge::Edge(Node *sourceNode, Node *destNode)
59  : source(sourceNode), dest(destNode)
60 {
62  source->addEdge(this);
63  dest->addEdge(this);
64  adjust();
65 }
67 
70 {
71  return source;
72 }
73 
75 {
76  return dest;
77 }
79 
82 {
83  if (!source || !dest)
84  return;
85 
86  QLineF line(mapFromItem(source, 0, 0), mapFromItem(dest, 0, 0));
87  qreal length = line.length();
88 
90 
91  if (length > qreal(20.)) {
92  QPointF edgeOffset((line.dx() * 10) / length, (line.dy() * 10) / length);
93  sourcePoint = line.p1() + edgeOffset;
94  destPoint = line.p2() - edgeOffset;
95  } else {
96  sourcePoint = destPoint = line.p1();
97  }
98 }
100 
103 {
104  if (!source || !dest)
105  return QRectF();
106 
107  qreal penWidth = 1;
108  qreal extra = (penWidth + arrowSize) / 2.0;
109 
110  return QRectF(sourcePoint, QSizeF(destPoint.x() - sourcePoint.x(),
111  destPoint.y() - sourcePoint.y()))
112  .normalized()
113  .adjusted(-extra, -extra, extra, extra);
114 }
116 
119 {
120  if (!source || !dest)
121  return;
122 
123  QLineF line(sourcePoint, destPoint);
124  if (qFuzzyCompare(line.length(), qreal(0.)))
125  return;
127 
129  // Draw the line itself
133 
135  // Draw the arrows
136  double angle = std::atan2(-line.dy(), line.dx());
137 
138  QPointF sourceArrowP1 = sourcePoint + QPointF(sin(angle + M_PI / 3) * arrowSize,
139  cos(angle + M_PI / 3) * arrowSize);
140  QPointF sourceArrowP2 = sourcePoint + QPointF(sin(angle + M_PI - M_PI / 3) * arrowSize,
141  cos(angle + M_PI - M_PI / 3) * arrowSize);
142  QPointF destArrowP1 = destPoint + QPointF(sin(angle - M_PI / 3) * arrowSize,
143  cos(angle - M_PI / 3) * arrowSize);
144  QPointF destArrowP2 = destPoint + QPointF(sin(angle - M_PI + M_PI / 3) * arrowSize,
145  cos(angle - M_PI + M_PI / 3) * arrowSize);
146 
148  painter->drawPolygon(QPolygonF() << line.p1() << sourceArrowP1 << sourceArrowP2);
149  painter->drawPolygon(QPolygonF() << line.p2() << destArrowP1 << destArrowP2);
150 }
Edge(Node *sourceNode, Node *destNode)
[0]
Definition: edge.cpp:58
Node * destNode() const
Definition: edge.cpp:74
QRectF boundingRect() const override
[2]
Definition: edge.cpp:102
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override
[3]
Definition: edge.cpp:118
Node * sourceNode() const
[0]
Definition: edge.cpp:69
void adjust()
[1]
Definition: edge.cpp:81
[0]
Definition: node.h:62
void addEdge(Edge *edge)
[0]
Definition: node.cpp:72
QPointF mapFromItem(const QGraphicsItem *item, const QPointF &point) const
void prepareGeometryChange()
void setAcceptedMouseButtons(Qt::MouseButtons buttons)
The QLineF class provides a two-dimensional vector using floating point precision.
Definition: qline.h:215
The QPainter class performs low-level painting on widgets and other paint devices.
Definition: qpainter.h:82
void setPen(const QColor &color)
Definition: qpainter.cpp:3640
void drawLine(const QLineF &line)
Definition: qpainter.h:477
void setBrush(const QBrush &brush)
Definition: qpainter.cpp:3755
void drawPolygon(const QPointF *points, int pointCount, Qt::FillRule fillRule=Qt::OddEvenFill)
Definition: qpainter.cpp:4575
The QPen class defines how a QPainter should draw lines and outlines of shapes.
Definition: qpen.h:61
The QPointF class defines a point in the plane using floating point precision.
Definition: qpoint.h:242
constexpr qreal x() const noexcept
Definition: qpoint.h:361
constexpr qreal y() const noexcept
Definition: qpoint.h:366
The QPolygonF class provides a list of points using floating point precision. \inmodule QtGui.
Definition: qpolygon.h:128
The QRectF class defines a finite rectangle in the plane using floating point precision.
Definition: qrect.h:511
constexpr QRectF adjusted(qreal x1, qreal y1, qreal x2, qreal y2) const noexcept
Definition: qrect.h:822
QRectF normalized() const noexcept
Definition: qrect.cpp:1535
The QSizeF class defines the size of a two-dimensional object using floating point precision.
Definition: qsize.h:235
qsizetype length() const
Definition: qstring.h:415
The QStyleOptionGraphicsItem class is used to describe the parameters needed to draw a QGraphicsItem.
Definition: qstyleoption.h:684
The QWidget class is the base class of all user interface objects.
Definition: qwidget.h:133
#define M_PI
Definition: easing.cpp:23
@ NoButton
Definition: qnamespace.h:82
@ black
Definition: qnamespace.h:61
@ SolidLine
Definition: qnamespace.h:1113
@ RoundJoin
Definition: qnamespace.h:1134
@ RoundCap
Definition: qnamespace.h:1127
bool qFuzzyCompare(qfloat16 p1, qfloat16 p2) noexcept
Definition: qfloat16.h:233
QT_END_INCLUDE_NAMESPACE typedef double qreal
Definition: qglobal.h:341
GLenum GLuint GLenum GLsizei length
Definition: qopengl.h:270
GLfloat angle
GLsizei GLsizei GLchar * source
QPainter painter(this)
[7]