forked from foldynl/QLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRigTypeModel.cpp
56 lines (46 loc) · 1.26 KB
/
RigTypeModel.cpp
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
#include "RigTypeModel.h"
#include "rig/Rig.h"
RigTypeModel::RigTypeModel(QObject* parent)
: QAbstractListModel(parent)
{
}
int RigTypeModel::rowCount(const QModelIndex&) const {
return rigList.count();
}
QVariant RigTypeModel::data(const QModelIndex& index, int role) const {
if (role == Qt::DisplayRole) {
return rigList.value(index.row());
}
if (role == Qt::UserRole )
{
return rigIds[rigList.value(index.row())];
}
return QVariant();
}
QModelIndex RigTypeModel::index(int row, int column, const QModelIndex& parent) const {
if (!hasIndex(row, column, parent)) {
return QModelIndex();
}
int rigId = rigIds[rigList.value(row)];
if (rigId)
return createIndex(row, column, rigId);
else
return QModelIndex();
}
void RigTypeModel::select(int driverID)
{
beginResetModel();
rigIds.clear();
rigList.clear();
if ( driverID == 0 )
return;
const QList<QPair<int, QString>> models = Rig::instance()->getModelList(static_cast<Rig::DriverID>(driverID));
for ( const QPair<int, QString> &model : models )
{
const QString &name = model.second;
rigIds[name] = model.first;
rigList.append(name);
}
rigList.sort();
endResetModel();
}