-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqgraphwidget.h
42 lines (31 loc) · 883 Bytes
/
qgraphwidget.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
#ifndef QGRAPHWIDGET_H
#define QGRAPHWIDGET_H
#include <QGraphicsView>
class QNode;
//! [0]
class QGraphWidget : public QGraphicsView
{
Q_OBJECT
public:
QGraphWidget(QWidget *parent = nullptr);
void itemMoved();
QNode* addNode(QString nodeName, int x = -1, int y = -1);
void connectNodes(QString node1Name, QString node2Name, QString edgeName);
public slots:
void shuffle();
void zoomIn();
void zoomOut();
protected:
void keyPressEvent(QKeyEvent *event) override;
void timerEvent(QTimerEvent *event) override;
#if QT_CONFIG(wheelevent)
void wheelEvent(QWheelEvent *event) override;
#endif
void drawBackground(QPainter *painter, const QRectF &rect) override;
void scaleView(qreal scaleFactor);
private:
int timerId;
QNode *centerNode;
};
//! [0]
#endif // QGRAPHWIDGET_H