mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
7f83b35ec9
Simple model that list the options for GeoRef. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
104 lines
2.7 KiB
C++
104 lines
2.7 KiB
C++
#include "divelocationmodel.h"
|
|
#include "dive.h"
|
|
#include <QDebug>
|
|
|
|
bool dive_site_less_than(dive_site *a, dive_site *b)
|
|
{
|
|
return QString(a->name) <= QString(b->name);
|
|
}
|
|
|
|
LocationInformationModel *LocationInformationModel::instance()
|
|
{
|
|
static LocationInformationModel *self = new LocationInformationModel();
|
|
return self;
|
|
}
|
|
|
|
LocationInformationModel::LocationInformationModel(QObject *obj) : QAbstractListModel(obj), internalRowCount(0)
|
|
{
|
|
}
|
|
|
|
int LocationInformationModel::rowCount(const QModelIndex &parent) const
|
|
{
|
|
Q_UNUSED(parent);
|
|
return internalRowCount;
|
|
}
|
|
|
|
QVariant LocationInformationModel::data(const QModelIndex &index, int role) const
|
|
{
|
|
if (!index.isValid())
|
|
return QVariant();
|
|
struct dive_site *ds = get_dive_site(index.row());
|
|
|
|
if (!ds)
|
|
return QVariant();
|
|
|
|
switch(role) {
|
|
case Qt::DisplayRole : return qPrintable(ds->name);
|
|
case DIVE_SITE_UUID : return ds->uuid;
|
|
}
|
|
|
|
return QVariant();
|
|
}
|
|
|
|
void LocationInformationModel::update()
|
|
{
|
|
beginResetModel();
|
|
internalRowCount = dive_site_table.nr;
|
|
qSort(dive_site_table.dive_sites, dive_site_table.dive_sites + dive_site_table.nr, dive_site_less_than);
|
|
endResetModel();
|
|
}
|
|
|
|
int32_t LocationInformationModel::addDiveSite(const QString& name, int lon, int lat)
|
|
{
|
|
degrees_t latitude, longitude;
|
|
latitude.udeg = lat;
|
|
longitude.udeg = lon;
|
|
|
|
beginInsertRows(QModelIndex(), dive_site_table.nr, dive_site_table.nr);
|
|
uint32_t uuid = create_dive_site_with_gps(name.toUtf8().data(), latitude, longitude);
|
|
qSort(dive_site_table.dive_sites, dive_site_table.dive_sites + dive_site_table.nr, dive_site_less_than);
|
|
internalRowCount = dive_site_table.nr;
|
|
endInsertRows();
|
|
return uuid;
|
|
}
|
|
|
|
bool LocationInformationModel::setData(const QModelIndex &index, const QVariant &value, int role)
|
|
{
|
|
if (!index.isValid())
|
|
return false;
|
|
|
|
if (role != Qt::EditRole)
|
|
return false;
|
|
|
|
struct dive_site *ds = get_dive_site(index.row());
|
|
free(ds->name);
|
|
ds->name = copy_string(qPrintable(value.toString()));
|
|
emit dataChanged(index, index);
|
|
return true;
|
|
}
|
|
|
|
bool LocationInformationModel::removeRows(int row, int count, const QModelIndex & parent)
|
|
{
|
|
if(row >= rowCount())
|
|
return false;
|
|
|
|
beginRemoveRows(QModelIndex(), row, row);
|
|
struct dive_site *ds = get_dive_site(row);
|
|
if (ds)
|
|
delete_dive_site(ds->uuid);
|
|
internalRowCount = dive_site_table.nr;
|
|
endRemoveRows();
|
|
return true;
|
|
}
|
|
|
|
GeoReferencingOptionsModel *GeoReferencingOptionsModel::instance() {
|
|
static GeoReferencingOptionsModel *self = new GeoReferencingOptionsModel();
|
|
return self;
|
|
}
|
|
|
|
GeoReferencingOptionsModel::GeoReferencingOptionsModel(QObject *parent) : QStringListModel(parent)
|
|
{
|
|
QStringList list;
|
|
list << "Country" << "State" << "District" << "Town" << "Suburb" << "Body of Water" << "Site Name";
|
|
setStringList(list);
|
|
}
|