-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmgraphpath.h
More file actions
56 lines (36 loc) · 936 Bytes
/
frmgraphpath.h
File metadata and controls
56 lines (36 loc) · 936 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef FRMGRAPHPATH_H
#define FRMGRAPHPATH_H
#include <QWidget>
#include <vector>
#include "graphwidget.h"
#include "graphs.h"
namespace Ui {
class frmGraphPath;
}
class frmGraphPath : public QWidget
{
Q_OBJECT
public:
explicit frmGraphPath(bool directed, QWidget *parent = 0);
~frmGraphPath();
public slots:
void errorRaised(int code);
void nodeCreated(GNode* node);
private slots:
void on_cmdFind_clicked();
void on_cmdClear_clicked();
void on_optDjskt_clicked();
void on_optPrim_clicked();
void on_optKruskal_clicked();
void on_optCluster_clicked();
private:
Ui::frmGraphPath *ui;
graphs::ui::GraphWidget *widget;
bool _bDirected;
void writeLog(string log);
void selectOption();
void procDijkstra(long from, long to);
void procPRIM(long from);
void procKruskatCluster(long size = 0, bool isCluster = false);
};
#endif // FRMGRAPHPATH_H