mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
LocationInformationModel moved to qt-models
I forgot about this one, and we are going to use it in the mobile version too. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
88549d1874
commit
266e309962
5 changed files with 62 additions and 54 deletions
|
@ -264,8 +264,8 @@ set(SUBSURFACE_MODELS_LIB_SRCS
|
||||||
qt-models/completionmodels.cpp
|
qt-models/completionmodels.cpp
|
||||||
qt-models/profileprintmodel.cpp
|
qt-models/profileprintmodel.cpp
|
||||||
qt-models/divepicturemodel.cpp
|
qt-models/divepicturemodel.cpp
|
||||||
qt-models/diveplotdatamodel.cpp
|
qt-models/diveplotdatamodel.cpp
|
||||||
|
qt-models/divelocationmodel.cpp
|
||||||
)
|
)
|
||||||
source_group("Subsurface Models" FILES ${SUBSURFACE_MODELS})
|
source_group("Subsurface Models" FILES ${SUBSURFACE_MODELS})
|
||||||
|
|
||||||
|
|
42
qt-models/divelocationmodel.cpp
Normal file
42
qt-models/divelocationmodel.cpp
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
#include "divelocationmodel.h"
|
||||||
|
#include "dive.h"
|
||||||
|
|
||||||
|
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());
|
||||||
|
|
||||||
|
switch(role) {
|
||||||
|
case Qt::DisplayRole : return qPrintable(ds->name);
|
||||||
|
}
|
||||||
|
|
||||||
|
return QVariant();
|
||||||
|
}
|
||||||
|
|
||||||
|
void LocationInformationModel::update()
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
struct dive_site *ds;
|
||||||
|
for_each_dive_site (i, ds);
|
||||||
|
|
||||||
|
if (rowCount()) {
|
||||||
|
beginRemoveRows(QModelIndex(), 0, rowCount()-1);
|
||||||
|
endRemoveRows();
|
||||||
|
}
|
||||||
|
if (i) {
|
||||||
|
beginInsertRows(QModelIndex(), 0, i);
|
||||||
|
internalRowCount = i;
|
||||||
|
endInsertRows();
|
||||||
|
}
|
||||||
|
}
|
17
qt-models/divelocationmodel.h
Normal file
17
qt-models/divelocationmodel.h
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
#ifndef DIVELOCATIONMODEL_H
|
||||||
|
#define DIVELOCATIONMODEL_H
|
||||||
|
|
||||||
|
#include <QAbstractListModel>
|
||||||
|
|
||||||
|
class LocationInformationModel : public QAbstractListModel {
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
LocationInformationModel(QObject *obj = 0);
|
||||||
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
||||||
|
QVariant data(const QModelIndex &index = QModelIndex(), int role = Qt::DisplayRole) const;
|
||||||
|
void update();
|
||||||
|
private:
|
||||||
|
int internalRowCount;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
|
@ -5,50 +5,10 @@
|
||||||
#include "qthelper.h"
|
#include "qthelper.h"
|
||||||
#include "globe.h"
|
#include "globe.h"
|
||||||
#include "filtermodels.h"
|
#include "filtermodels.h"
|
||||||
|
#include "divelocationmodel.h"
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QShowEvent>
|
#include <QShowEvent>
|
||||||
|
|
||||||
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());
|
|
||||||
|
|
||||||
switch(role) {
|
|
||||||
case Qt::DisplayRole : return qPrintable(ds->name);
|
|
||||||
}
|
|
||||||
|
|
||||||
return QVariant();
|
|
||||||
}
|
|
||||||
|
|
||||||
void LocationInformationModel::update()
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
struct dive_site *ds;
|
|
||||||
for_each_dive_site (i, ds);
|
|
||||||
|
|
||||||
if (rowCount()) {
|
|
||||||
beginRemoveRows(QModelIndex(), 0, rowCount()-1);
|
|
||||||
endRemoveRows();
|
|
||||||
}
|
|
||||||
if (i) {
|
|
||||||
beginInsertRows(QModelIndex(), 0, i);
|
|
||||||
internalRowCount = i;
|
|
||||||
endInsertRows();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
LocationInformationWidget::LocationInformationWidget(QWidget *parent) : QGroupBox(parent), modified(false)
|
LocationInformationWidget::LocationInformationWidget(QWidget *parent) : QGroupBox(parent), modified(false)
|
||||||
{
|
{
|
||||||
ui.setupUi(this);
|
ui.setupUi(this);
|
||||||
|
|
|
@ -5,17 +5,6 @@
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <QAbstractListModel>
|
#include <QAbstractListModel>
|
||||||
|
|
||||||
class LocationInformationModel : public QAbstractListModel {
|
|
||||||
Q_OBJECT
|
|
||||||
public:
|
|
||||||
LocationInformationModel(QObject *obj = 0);
|
|
||||||
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
||||||
QVariant data(const QModelIndex &index = QModelIndex(), int role = Qt::DisplayRole) const;
|
|
||||||
void update();
|
|
||||||
private:
|
|
||||||
int internalRowCount;
|
|
||||||
};
|
|
||||||
|
|
||||||
class LocationInformationWidget : public QGroupBox {
|
class LocationInformationWidget : public QGroupBox {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Add table
Reference in a new issue