2017-04-27 18:25:32 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2016-04-05 05:02:03 +00:00
|
|
|
#include "qt-models/divecomputermodel.h"
|
|
|
|
#include "core/dive.h"
|
|
|
|
#include "core/divelist.h"
|
2015-05-28 20:51:07 +00:00
|
|
|
|
2018-06-16 12:06:35 +00:00
|
|
|
DiveComputerModel::DiveComputerModel(QObject *parent) : CleanerTableModel(parent),
|
|
|
|
dcs(dcList.dcs)
|
2015-05-28 20:51:07 +00:00
|
|
|
{
|
|
|
|
setHeaderDataStrings(QStringList() << "" << tr("Model") << tr("Device ID") << tr("Nickname"));
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant DiveComputerModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
2018-06-16 12:06:35 +00:00
|
|
|
if (index.row() < 0 || index.row() >= dcs.size())
|
|
|
|
return QVariant();
|
|
|
|
const DiveComputerNode &node = dcs[index.row()];
|
2015-05-28 20:51:07 +00:00
|
|
|
|
|
|
|
if (role == Qt::DisplayRole || role == Qt::EditRole) {
|
|
|
|
switch (index.column()) {
|
|
|
|
case ID:
|
2018-06-16 12:06:35 +00:00
|
|
|
return QString("0x").append(QString::number(node.deviceId, 16));
|
2015-05-28 20:51:07 +00:00
|
|
|
case MODEL:
|
2018-06-16 12:06:35 +00:00
|
|
|
return node.model;
|
2015-05-28 20:51:07 +00:00
|
|
|
case NICKNAME:
|
2018-06-16 12:06:35 +00:00
|
|
|
return node.nickName;
|
2015-05-28 20:51:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index.column() == REMOVE) {
|
|
|
|
switch (role) {
|
|
|
|
case Qt::DecorationRole:
|
2018-06-16 12:06:35 +00:00
|
|
|
return trashIcon();
|
2015-05-28 20:51:07 +00:00
|
|
|
case Qt::SizeHintRole:
|
2018-06-16 12:06:35 +00:00
|
|
|
return trashIcon().size();
|
2015-05-28 20:51:07 +00:00
|
|
|
case Qt::ToolTipRole:
|
2018-06-16 12:06:35 +00:00
|
|
|
return tr("Clicking here will remove this dive computer.");
|
2015-05-28 20:51:07 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-16 12:06:35 +00:00
|
|
|
return QVariant();
|
2015-05-28 20:51:07 +00:00
|
|
|
}
|
|
|
|
|
2018-05-21 15:53:42 +00:00
|
|
|
int DiveComputerModel::rowCount(const QModelIndex&) const
|
2015-05-28 20:51:07 +00:00
|
|
|
{
|
2018-06-16 12:06:35 +00:00
|
|
|
return dcs.size();
|
2015-05-28 20:51:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Qt::ItemFlags DiveComputerModel::flags(const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
Qt::ItemFlags flags = QAbstractItemModel::flags(index);
|
|
|
|
if (index.column() == NICKNAME)
|
|
|
|
flags |= Qt::ItemIsEditable;
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2018-05-21 15:53:42 +00:00
|
|
|
bool DiveComputerModel::setData(const QModelIndex &index, const QVariant &value, int)
|
2015-05-28 20:51:07 +00:00
|
|
|
{
|
2016-03-08 05:25:40 +00:00
|
|
|
// We should test if the role == Qt::EditRole
|
2018-06-16 12:06:35 +00:00
|
|
|
if (index.row() < 0 || index.row() >= dcs.size())
|
|
|
|
return false;
|
2016-03-08 05:25:40 +00:00
|
|
|
|
2018-06-16 12:06:35 +00:00
|
|
|
DiveComputerNode &node = dcs[index.row()];
|
2015-05-28 20:51:07 +00:00
|
|
|
node.nickName = value.toString();
|
|
|
|
emit dataChanged(index, index);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiveComputerModel::remove(const QModelIndex &index)
|
|
|
|
{
|
2018-06-16 12:06:35 +00:00
|
|
|
if (index.row() < 0 || index.row() >= dcs.size())
|
|
|
|
return;
|
|
|
|
beginRemoveRows(QModelIndex(), index.row(), index.row());
|
|
|
|
dcs.remove(index.row());
|
|
|
|
endRemoveRows();
|
2015-05-28 20:51:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DiveComputerModel::keepWorkingList()
|
|
|
|
{
|
2018-06-16 12:06:35 +00:00
|
|
|
if (dcList.dcs != dcs)
|
2015-05-28 20:51:07 +00:00
|
|
|
mark_divelist_changed(true);
|
2018-06-16 12:06:35 +00:00
|
|
|
dcList.dcs = dcs;
|
2015-05-28 20:51:07 +00:00
|
|
|
}
|