GraphItem.h
910 Bytes
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
#ifndef GRAPHITEM_H
#define GRAPHITEM_H
#include "stdafx.h"
#include "NodeItem.h"
#include "EdgeItem.h"
using namespace std;
using namespace boost;
class GraphItem
: public QGraphicsItem
{
public:
GraphItem(ifstream& fin, int numOfLines);
//overrides
QRectF boundingRect() const override;
QPainterPath shape() const override;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
//methods
void path_highlighting(std::string start, std::string end);
void reset_color();
protected:
void mousePressEvent(QGraphicsSceneMouseEvent *event) override;
void mouseMoveEvent(QGraphicsSceneMouseEvent *event) override;
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override;
private:
bm_type node_ids;
vector<simple_edge> edges_indexes;
Graph *graph = nullptr;
QList<NodeItem *> nodeList;
QList<EdgeItem *> edgeList;
};
#endif // GRAPHITEM_H