-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmainwindow.h
111 lines (81 loc) · 2.24 KB
/
mainwindow.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QPointer>
#include <QMap>
#include <QRegExp>
#include <graphviz/gvc.h>
#include "graphhandler.h"
namespace Ui
{
class MainWindow;
}
namespace Templar{
class DebugManager;
}
//class Agnode_t;
class QImage;
class QGraphicsScene;
class Highlighter;
class CodeEditor;
class QGraph;
class QListWidget;
class QListWidgetItem;
class EntryInfo;
class StringListDialog;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_actionExport_to_PNG_triggered();
void on_actionTwopi_triggered();
void on_actionFdp_triggered();
void on_actionNeato_triggered();
void on_actionCirco_triggered();
void on_actionDot_triggered();
void on_actionExit_triggered();
void on_actionOpen_trace_triggered();
void nodeClicked(const QString& node);
void filterActionClicked();
void resetActionClicked();
void breakpointActionClicked();
void listWidgetItemClicked(QListWidgetItem *item);
private:
void init();
void initGui();
void initManagerAndHandlers();
void makeConnections();
void reset();
QAction* createAction(const char* name, const char* shortcut, const char* statusTip, QWidget* parent, QString icon);
QAction* createAction(const char* name, const char* shortcut, const char* statusTip, QWidget* parent=0);
void showInformation(QString info = "");
void setLayout(QString layout);
void exportToPNG(QImage*, QGraphicsScene*, const QString&);
private:
Ui::MainWindow *ui;
QAction* nextAction;
QAction* prevAction;
QAction* forwardAction;
QAction* rewindAction;
QAction* followAction;
QAction* breakpointAction;
QAction* filterAction;
QAction* resetAction;
Templar::DebugManager *debugManager;
QString currentLayout;
QString currentFileName;
QString activeNode;
StringListDialog *listDialog;
CodeEditor *codeEdit;
EntryInfo *entryInfo;
QGraph *qGraph;
Templar::GraphHandler *graphHandler;
QPointer<Highlighter> highlighter;
QMap<QString, QString> openedFiles;
QListWidget *listWidget;
QList<QRegExp> ignoreList;
};
#endif // MAINWINDOW_H