-
Notifications
You must be signed in to change notification settings - Fork 0
/
qtnode.h
46 lines (35 loc) · 1.05 KB
/
qtnode.h
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
#ifndef QTNODE_H
#define QTNODE_H
#include <QGraphicsItem>
#include <QVector>
#include "src/Vertex.hpp"
class QtEdge;
class GraphWidget;
//! [0]
class QtNode : public QGraphicsItem, public Vertex
{
public:
QtNode(GraphWidget *graphWidget);
void addQtEdge(QtEdge *edge);
QVector<QtEdge *> edges() const;
enum { Type = UserType + 1 };
int type() const override { return Type; }
void calculateForces();
bool advancePosition();
QRectF boundingRect() const override;
QPainterPath shape() const override;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
void paintChosen();
void paintDefault();
protected:
QVariant itemChange(GraphicsItemChange change, const QVariant &value) override;
void mousePressEvent(QGraphicsSceneMouseEvent *event) override;
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override;
private:
QVector<QtEdge *> edgeList;
QPointF newPos;
GraphWidget *graph;
QColor fillColor = Qt::blue;
};
//! [0]
#endif // NODE_H