-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnode.cpp
148 lines (133 loc) · 3.45 KB
/
node.cpp
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#include "edge.h"
#include "node.h"
#include "graphwidget.h"
#include <QGraphicsScene>
#include <QGraphicsSceneMouseEvent>
#include <QPainter>
#include <QStyleOption>
#include <QDebug>
const QPen Node::_pen = QPen(Qt::black, 2);
int Node::_idStatic = 0;
Node::Node(GraphWidget *graphWidget, QString text)
: NodeEdgeParent(graphWidget, _idStatic++, text)
{
setFlag(ItemIsSelectable);
setFlag(ItemIsMovable);
setFlag(ItemSendsGeometryChanges);
setCacheMode(DeviceCoordinateCache);
setZValue(10);
#ifdef DEBUG_NODE_EDGE
setZValue(-10);
#endif
graph->scene()->addItem(this); // сразу добавляет на сцену
}
Node::~Node()
{
foreach (EdgeParent *edge, edgeList)
delete edge;
}
void Node::writeToJson(QJsonObject &json) const
{
NodeEdgeParent::writeToJson(json);
QJsonObject jsonPos
{
{"x", pos().x()},
{"y", pos().y()},
};
QJsonObject jsonIt = json["Item"].toObject();
jsonIt["pos"] = jsonPos;
json["Item"] = jsonIt;
}
void Node::readFromJson(const QJsonObject &json)
{
NodeEdgeParent::readFromJson(json);
if (missKey(json, "Item")) {
return;
}
QJsonObject jsonIt = json["Item"].toObject();
if (_idStatic <= _id) {
_idStatic = _id + 1;
}
if (missKey(jsonIt, "pos")) {
return;
}
QJsonObject jsonPos = jsonIt["pos"].toObject();
if (missKeys(jsonPos, QStringList { "x", "y" })) {
return;
}
double x = jsonPos["x"].toDouble();
double y = jsonPos["y"].toDouble();
setPos(x, y);
}
void Node::addEdge(EdgeParent *edge)
{
if (!edgeList.contains(edge))
edgeList << edge;
}
QList<EdgeParent *> Node::edges() const
{
return edgeList;
}
QPainterPath Node::shape() const
{
QPainterPath path;
path.addEllipse(-Radius - _pen.width() / 2,
-Radius - _pen.width() / 2,
2 * Radius + _pen.width(),
2 * Radius + _pen.width());
return path;
}
QRectF Node::boundingRect() const
{
return shape().boundingRect();
}
void Node::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
NodeEdgeParent::paint(painter, option, widget);
painter->setBrush((option->state & QStyle::State_Selected ? Qt::cyan: Qt::white));
painter->setPen(_pen);
painter->drawEllipse(-Radius, -Radius, 2 * Radius, 2 * Radius);
painter->setFont(QFont("Times", 12, QFont::Bold));
painter->drawText(boundingRect(), Qt::AlignCenter, _textContent);
// Draw the node name
painter->setPen(Qt::black);
painter->setFont(QFont("Arial", 10));
QRectF textRect = boundingRect().adjusted(0, Radius / 2, 0, 0);
painter->drawText(textRect, Qt::AlignHCenter | Qt::AlignTop, getName());
}
QVariant Node::itemChange(GraphicsItemChange change, const QVariant &value)
{
switch (change) {
case ItemPositionHasChanged:
foreach (EdgeParent *edge, edgeList) {
edge->adjust();
}
break;
default:
break;
};
return QGraphicsItem::itemChange(change, value);
}
int Node::idStatic()
{
return _idStatic;
}
void Node::removeEdge(EdgeParent *edge)
{
QMutableListIterator<EdgeParent *> iter(edgeList);
while (iter.hasNext()) {
EdgeParent *e = iter.next();
if (e == edge) {
iter.remove();
break;
}
}
}
QString Node::getName() const
{
return _name;
}
void Node::setName(const QString& name)
{
_name = name;
}