-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_window.h
71 lines (46 loc) · 1.2 KB
/
main_window.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
#ifndef UI_MAINWINDOW_H
#define UI_MAINWINDOW_H
#include <QMainWindow>
#include <QLabel>
#include <QTableView>
#include <QPushButton>
#include "p7d_model.h"
namespace p7 {
namespace ui {
class CentralWidget;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
void importP7Dump(const QString & filename);
void importP7Dump(const QByteArray & fileContent);
private:
CentralWidget * _centralWidget;
p7::P7DumpModel _model;
};
class CentralWidget : public QWidget
{
Q_OBJECT
public:
CentralWidget(p7::P7DumpModel * model,
QWidget *parent = nullptr);
void showModelData();
protected:
virtual void dragEnterEvent(QDragEnterEvent *event) override;
virtual void dropEvent(QDropEvent *event) override;
private:
void createWidgets();
Q_SLOT void onOpenFileButtonClicked();
QPushButton * _openFileButton;
QLabel * _hostNameLabel;
QLabel * _hostNameValue;
QLabel * _processNameLabel;
QLabel * _processNameValue;
QLabel * _processDateTimeValue;
QTableView * _traceTable;
p7::P7DumpModel * _model;
};
} // namespace ui
} // namespace p7
#endif // UI_MAINWINDOW_H