-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirectorymodel.h
46 lines (38 loc) · 1.25 KB
/
directorymodel.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
#ifndef DIRECTORYMODEL_H
#define DIRECTORYMODEL_H
#include <QAbstractItemModel>
#include <QList>
#include "c64directoryfile.h"
class DirectoryModel : public QAbstractItemModel {
Q_OBJECT
public:
enum Column {
ColName = 0,
ColType,
ColOpened,
ColLocked,
ColSize,
ColGeosFileType,
ColGeosFileStruct,
ColGeosDate,
ColGeosClass,
ColGeosAuthor,
ColGeosApplication,
ColGeosDescription,
ColCount
};
explicit DirectoryModel(QObject *parent = nullptr);
~DirectoryModel();
QModelIndex index(int row, int column = 0, const QModelIndex &parent = QModelIndex()) const override;
QModelIndex parent(const QModelIndex &index) const override;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
public slots:
void insertDirectoryFile(C64DirectoryFile *df);
void reset();
private:
QList<C64DirectoryFile *> Files;
};
#endif // DIRECTORYMODEL_H