-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilewidget.h
41 lines (34 loc) · 948 Bytes
/
filewidget.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
#ifndef FILEWIDGET_H
#define FILEWIDGET_H
#include <QWidget>
#include <QStandardItemModel>
#include <QTreeView>
#include "colorfulmodel.h"
#include "hookanalysis.h"
namespace Ui {
class fileWidget;
}
class fileWidget : public QWidget
{
Q_OBJECT
public:
explicit fileWidget(QStandardItemModel* fileModel,
colorfulModel* access,
colorfulModel* shareMode,
colorfulModel* createDisp,
colorfulModel* flagAttr,
hookAnalysis* analyser,
QWidget *parent = nullptr);
~fileWidget();
QStandardItemModel* fileModel;
colorfulModel* access;
colorfulModel* shareMode;
colorfulModel* createDisp;
colorfulModel* flagAttr;
hookAnalysis* analyser;
private slots:
void on_treeView_clicked(const QModelIndex &index);
private:
Ui::fileWidget *ui;
};
#endif // FILEWIDGET_H