forked from paceholder/nodeeditor
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathConnectionGeometry.hpp
More file actions
55 lines (36 loc) · 1.1 KB
/
ConnectionGeometry.hpp
File metadata and controls
55 lines (36 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#pragma once
#include "PortType.hpp"
#include <QtCore/QPointF>
#include <QtCore/QRectF>
#include <iostream>
namespace QtNodes {
class ConnectionGraphicsObject;
class ConnectionGeometry
{
friend ConnectionGraphicsObject;
public:
/**\brief this class change bounding rect of obj, so, it have to call
* prepareGeometrychange for do this safely
*/
explicit ConnectionGeometry(ConnectionGraphicsObject& obj);
public:
QPointF const& getEndPoint(PortType portType) const;
void setEndPoint(PortType portType, QPointF const& point);
void moveEndPoint(PortType portType, QPointF const& offset);
QRectF boundingRect() const;
std::pair<QPointF, QPointF> pointsC1C2() const;
QPointF source() const { return _out; }
QPointF sink() const { return _in; }
double lineWidth() const { return _lineWidth; }
bool hovered() const { return _hovered; }
void setHovered(bool hovered) { _hovered = hovered; }
private:
// local object coordinates
ConnectionGraphicsObject& _obj;
QPointF _in;
QPointF _out;
// int _animationPhase;
double _lineWidth;
bool _hovered;
};
} // namespace QtNodes