-
Notifications
You must be signed in to change notification settings - Fork 4
/
graphwidget.h
executable file
·53 lines (42 loc) · 1.11 KB
/
graphwidget.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
47
48
49
50
51
52
53
#ifndef GRAPHWIDGET_H
#define GRAPHWIDGET_H
#include <QGraphicsView>
#include <QMap>
#include "node.h"
#include "edge.h"
//class Node;
//! [0]
class GraphWidget : public QGraphicsView
{
Q_OBJECT
public:
GraphWidget(QWidget *parent = 0);
// ~GraphWidget() override;
void itemMoved();
void addNode(QString name,int nodeType=NODE_TYPE_NEURON);
void addEdge(QString node1,QString node2,int edgeType=EDGE_TYPE_NEURON);
void setCenterNode(QString name);
void clear();
void setpos(const QString name,qreal x,qreal y);
void showlayer(int layer);
public slots:
void shuffle();
void zoomIn();
void zoomOut();
signals:
void SIGNAL_showlayer(int layer);
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;
Node *centerNode;
QMap<QString,Node*> nodesMap;
};
//! [0]
#endif // GRAPHWIDGET_H