-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathimagelistmodel.h
60 lines (54 loc) · 1.71 KB
/
imagelistmodel.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
#ifndef IMAGELISTMODEL_H
#define IMAGELISTMODEL_H
#include <QAbstractTableModel>
#include <QFileInfoList>
#include <QList>
/**
* @brief The ImageListModel class
* ImageListModel - класс модели, содержащей список имен файлов изображений
*/
class ImageListModel : public QAbstractTableModel {
Q_OBJECT
public:
ImageListModel(QObject* parent = Q_NULLPTR);
// ImageListModel interface
public:
/**
* @brief loadDirectoryImageList
* @param fullPath
*/
bool loadDirectoryImageList(const QString& fullPath);
// QAbstractItemModel interface
public:
/**
* @brief rowCount возвращает число файлов модели
* @param parent
* @return число файлов модели
*/
virtual int rowCount(const QModelIndex& parent) const override;
/**
* @brief columnCount возвращает число столбцов модели
* @param parent
* @return число столбцов модели
*/
virtual int columnCount(const QModelIndex& parent) const override;
/**
* @brief data возращает данные по индексу модели index и роли role
* @param index
* @param role
* @return данные по индексу модели index и роли role
*/
virtual QVariant data(const QModelIndex& index, int role) const override;
private:
/**
* @brief imageNameFilter
* Список масок файлов изображений
*/
QStringList imageNameFilter;
/**
* @brief imageFileInfoList
* Список файлов
*/
QFileInfoList imageFileInfoList;
};
#endif // IMAGELISTMODEL_H