-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.h
48 lines (38 loc) · 1010 Bytes
/
graph.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
#ifndef GRAPH_H
#define GRAPH_H
#include <QObject>
#include <QGraphicsScene>
#include <gvc.h>
#include <QGraphicsScene>
#include <QMap>
#include <QPair>
#include <QFont>
#include <functional>
class Node;
class Edge;
class Element;
class Graph : public QGraphicsScene
{
Q_OBJECT
public:
Graph(const QString& filename);
~Graph();
void pimpSubTree(Node *n, std::function<void (Element &)> f, std::function<bool (Element&)> test = nullptr, bool incomingEdgesAreConcerned = false);
void pimpSubTree(Edge *e, std::function<void (Element &)> f, std::function<bool (Element&)> test = nullptr, bool incomingEdgesAreConcerned = false);
static const qreal DOT_DEFAULT_DPI;
static const QFont MONOSPACE_FONT;
const Agraph_t* getAgraph() const;
qreal getDpi() const;
public slots:
void doLayout();
private:
void addNode(Agnode_t* v);
void addEdge(Agedge_t* v);
void setAttrs();
GVC_t* _gv_con;
Agraph_t* _graph;
qreal _dpi;
QMap<int,Node*> _nodes;
QMap<int,Edge*> _edges;
};
#endif // GRAPH_H