blob: 6663aa814478ab36b9eb6f9837ecb8c488dcbbc6 (
plain)
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
|
#ifndef BSPLUGININFO_AUXTREEMODEL_H
#define BSPLUGININFO_AUXTREEMODEL_H
#include "TESData/AssociatedEntry.h"
#include <QAbstractItemModel>
namespace BSPluginInfo
{
class AuxTreeModel final : public QAbstractItemModel
{
Q_OBJECT
public:
explicit AuxTreeModel(const TESData::AssociatedEntry* entry,
QObject* parent = nullptr);
QModelIndex index(int row, int column,
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;
private:
using Item = TESData::AuxItem;
const TESData::AssociatedEntry* m_Entry;
};
} // namespace BSPluginInfo
#endif // BSPLUGININFO_AUXTREEMODEL_H
|