mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 05:30:41 +00:00
4a126b553f
getMapLocationForUuid() accepts a UUID, searches the MapLocation table and returns a pointer. Make use of the new method in setSelectedUuid(). Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
115 lines
2.6 KiB
C++
115 lines
2.6 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "maplocationmodel.h"
|
|
|
|
const char *MapLocation::PROPERTY_NAME_COORDINATE = "coordinate";
|
|
const char *MapLocation::PROPERTY_NAME_UUID = "uuid";
|
|
|
|
MapLocation::MapLocation()
|
|
{
|
|
}
|
|
|
|
MapLocation::MapLocation(quint32 uuid, QGeoCoordinate coord) :
|
|
m_uuid(uuid), m_coordinate(coord)
|
|
{
|
|
}
|
|
|
|
QVariant MapLocation::getRole(int role) const
|
|
{
|
|
switch (role) {
|
|
case Roles::RoleUuid:
|
|
return QVariant::fromValue(m_uuid);
|
|
case Roles::RoleCoordinate:
|
|
return QVariant::fromValue(m_coordinate);
|
|
default:
|
|
return QVariant();
|
|
}
|
|
}
|
|
|
|
MapLocationModel::MapLocationModel(QObject *parent) : QAbstractListModel(parent)
|
|
{
|
|
m_roles[MapLocation::Roles::RoleUuid] = MapLocation::PROPERTY_NAME_UUID;
|
|
m_roles[MapLocation::Roles::RoleCoordinate] = MapLocation::PROPERTY_NAME_COORDINATE;
|
|
}
|
|
|
|
MapLocationModel::~MapLocationModel()
|
|
{
|
|
clear();
|
|
}
|
|
|
|
QVariant MapLocationModel::data(const QModelIndex & index, int role) const
|
|
{
|
|
if (index.row() < 0 || index.row() >= m_mapLocations.size())
|
|
return QVariant();
|
|
|
|
return m_mapLocations.at(index.row())->getRole(role);
|
|
}
|
|
|
|
QHash<int, QByteArray> MapLocationModel::roleNames() const
|
|
{
|
|
return m_roles;
|
|
}
|
|
|
|
int MapLocationModel::rowCount(const QModelIndex &parent) const
|
|
{
|
|
Q_UNUSED(parent);
|
|
return m_mapLocations.size();
|
|
}
|
|
|
|
int MapLocationModel::count()
|
|
{
|
|
return m_mapLocations.size();
|
|
}
|
|
|
|
MapLocation *MapLocationModel::get(int row)
|
|
{
|
|
if (row < 0 || row >= m_mapLocations.size())
|
|
return NULL;
|
|
return m_mapLocations.at(row);
|
|
}
|
|
|
|
void MapLocationModel::add(MapLocation *location)
|
|
{
|
|
beginInsertRows(QModelIndex(), m_mapLocations.size(), m_mapLocations.size());
|
|
m_mapLocations.append(location);
|
|
endInsertRows();
|
|
}
|
|
|
|
void MapLocationModel::addList(QVector<MapLocation *> list)
|
|
{
|
|
if (!list.size())
|
|
return;
|
|
beginInsertRows(QModelIndex(), m_mapLocations.size(), m_mapLocations.size() + list.size() - 1);
|
|
m_mapLocations.append(list);
|
|
endInsertRows();
|
|
}
|
|
|
|
void MapLocationModel::clear()
|
|
{
|
|
if (!m_mapLocations.size())
|
|
return;
|
|
beginRemoveRows(QModelIndex(), 0, m_mapLocations.size() - 1);
|
|
qDeleteAll(m_mapLocations);
|
|
m_mapLocations.clear();
|
|
endRemoveRows();
|
|
}
|
|
|
|
quint32 MapLocationModel::selectedUuid()
|
|
{
|
|
return m_selectedUuid;
|
|
}
|
|
|
|
void MapLocationModel::setSelectedUuid(quint32 uuid)
|
|
{
|
|
m_selectedUuid = uuid;
|
|
emit selectedLocationChanged(getMapLocationForUuid(uuid));
|
|
}
|
|
|
|
MapLocation *MapLocationModel::getMapLocationForUuid(quint32 uuid)
|
|
{
|
|
MapLocation *location = NULL;
|
|
foreach(location, m_mapLocations) {
|
|
if (location->getRole(MapLocation::Roles::RoleUuid) == uuid)
|
|
break;
|
|
}
|
|
return location;
|
|
}
|