2017-04-27 20:25:32 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-06-09 22:20:44 +03:00
|
|
|
#ifndef DIVELISTMODEL_H
|
|
|
|
#define DIVELISTMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
2016-01-28 18:23:14 -08:00
|
|
|
#include <QSortFilterProxyModel>
|
2016-01-07 16:01:24 -02:00
|
|
|
|
2016-04-04 22:02:03 -07:00
|
|
|
#include "core/subsurface-qt/DiveObjectHelper.h"
|
2015-06-09 22:20:44 +03:00
|
|
|
|
2019-11-06 06:54:03 +01:00
|
|
|
class CollapsedDiveListSortModel : public QSortFilterProxyModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
static CollapsedDiveListSortModel *instance();
|
|
|
|
void setSourceModel(QAbstractItemModel *sourceModel);
|
|
|
|
Q_INVOKABLE QString tripTitle(const QString &trip);
|
|
|
|
Q_INVOKABLE QString tripShortDate(const QString &trip);
|
|
|
|
Q_INVOKABLE void setActiveTrip(const QString &trip);
|
|
|
|
Q_INVOKABLE QString activeTrip() const;
|
|
|
|
// super subtle optimization alert - in order to reduce the number of model accesses from QML,
|
|
|
|
// the two states where we show the dive in question have odd numbers
|
|
|
|
enum CollapsedState {
|
|
|
|
DontShow = 0,
|
|
|
|
ShowDive = 1,
|
|
|
|
ShowTrip = 2,
|
|
|
|
ShowDiveAndTrip = 3
|
|
|
|
};
|
|
|
|
void updateFilterState();
|
|
|
|
void updateSelectionState();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
CollapsedDiveListSortModel();
|
|
|
|
bool isExpanded(struct dive_trip *dt) const;
|
|
|
|
QString m_activeTrip;
|
|
|
|
};
|
|
|
|
|
2016-01-28 18:23:14 -08:00
|
|
|
class DiveListSortModel : public QSortFilterProxyModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-09-28 23:31:40 +02:00
|
|
|
static DiveListSortModel *instance();
|
2018-10-22 14:00:53 +01:00
|
|
|
void setSourceModel(QAbstractItemModel *sourceModel);
|
2019-11-06 06:54:03 +01:00
|
|
|
QString getFilterString() const;
|
2019-08-14 18:09:17 +02:00
|
|
|
Q_INVOKABLE void reload();
|
2019-11-06 06:54:03 +01:00
|
|
|
QString filterString;
|
|
|
|
void updateFilterState();
|
2016-01-28 18:23:14 -08:00
|
|
|
public slots:
|
|
|
|
int getIdxForId(int id);
|
2018-02-04 16:46:03 +01:00
|
|
|
void setFilter(QString f);
|
|
|
|
void resetFilter();
|
2018-10-17 06:28:53 -04:00
|
|
|
int shown();
|
2018-10-22 14:00:53 +01:00
|
|
|
protected:
|
|
|
|
bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
|
|
|
|
private:
|
2019-09-29 10:44:27 +02:00
|
|
|
DiveListSortModel();
|
2016-01-28 18:23:14 -08:00
|
|
|
};
|
|
|
|
|
2019-10-19 22:12:50 -04:00
|
|
|
QString formatSac(const dive *d);
|
|
|
|
QString formatNotes(const dive *d);
|
|
|
|
QString format_gps_decimal(const dive *d);
|
|
|
|
QStringList formatGetCylinder(const dive *d);
|
|
|
|
QStringList getStartPressure(const dive *d);
|
|
|
|
QStringList getEndPressure(const dive *d);
|
|
|
|
QStringList getFirstGas(const dive *d);
|
2019-10-20 07:37:51 -04:00
|
|
|
QStringList getFullCylinderList();
|
2019-10-19 22:12:50 -04:00
|
|
|
|
2019-09-27 16:26:54 -07:00
|
|
|
class DiveListModel : public QAbstractListModel
|
2015-06-09 22:20:44 +03:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum DiveListRoles {
|
2019-10-20 07:37:51 -04:00
|
|
|
DiveDateRole = Qt::UserRole + 1,
|
2019-08-14 23:53:28 +02:00
|
|
|
TripIdRole,
|
2019-08-15 00:03:15 +02:00
|
|
|
TripNrDivesRole,
|
2019-08-15 00:15:30 +02:00
|
|
|
DateTimeRole,
|
2019-08-15 00:18:25 +02:00
|
|
|
IdRole,
|
|
|
|
NumberRole,
|
2019-08-15 00:23:25 +02:00
|
|
|
LocationRole,
|
2019-10-19 22:12:50 -04:00
|
|
|
DepthRole,
|
|
|
|
DurationRole,
|
2019-08-15 00:30:56 +02:00
|
|
|
DepthDurationRole,
|
2019-10-19 22:12:50 -04:00
|
|
|
RatingRole,
|
|
|
|
VizRole,
|
|
|
|
SuitRole,
|
|
|
|
AirTempRole,
|
|
|
|
WaterTempRole,
|
|
|
|
SacRole,
|
|
|
|
SumWeightRole,
|
|
|
|
DiveMasterRole,
|
|
|
|
BuddyRole,
|
|
|
|
NotesRole,
|
|
|
|
GpsDecimalRole,
|
|
|
|
GpsRole,
|
|
|
|
NoDiveRole,
|
|
|
|
DiveSiteRole,
|
|
|
|
CylinderRole,
|
2019-10-20 07:37:51 -04:00
|
|
|
GetCylinderRole,
|
|
|
|
CylinderListRole,
|
2019-10-19 22:12:50 -04:00
|
|
|
SingleWeightRole,
|
|
|
|
StartPressureRole,
|
|
|
|
EndPressureRole,
|
|
|
|
FirstGasRole,
|
2019-11-06 06:54:03 +01:00
|
|
|
CollapsedRole,
|
|
|
|
SelectedRole,
|
2015-06-09 22:20:44 +03:00
|
|
|
};
|
|
|
|
|
2019-09-27 16:26:54 -07:00
|
|
|
static DiveListModel *instance();
|
2019-04-01 22:15:19 +02:00
|
|
|
void addDive(const QList<dive *> &listOfDives);
|
2016-04-05 21:17:37 -07:00
|
|
|
void addAllDives();
|
2019-08-13 17:22:15 +02:00
|
|
|
void insertDive(int i);
|
2016-01-27 11:27:41 -08:00
|
|
|
void removeDive(int i);
|
2016-01-29 06:25:13 -08:00
|
|
|
void removeDiveById(int id);
|
2016-01-27 11:50:04 -08:00
|
|
|
void updateDive(int i, dive *d);
|
2019-09-26 13:47:49 +02:00
|
|
|
void reload(); // Only call after clearing the model!
|
2019-08-13 21:11:08 +02:00
|
|
|
struct dive *getDive(int i);
|
2015-06-09 22:20:44 +03:00
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
2016-03-02 04:41:36 -08:00
|
|
|
int getDiveIdx(int id) const;
|
2019-08-13 21:31:53 +02:00
|
|
|
QModelIndex getDiveQIdx(int id);
|
2015-06-09 22:20:44 +03:00
|
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
|
|
|
|
QHash<int, QByteArray> roleNames() const;
|
2015-12-26 21:37:18 -08:00
|
|
|
QString startAddDive();
|
2018-01-07 16:08:25 +01:00
|
|
|
void resetInternalData();
|
2019-09-26 13:37:44 +02:00
|
|
|
void clear(); // Clear all dives in core
|
2019-08-13 08:19:04 +02:00
|
|
|
Q_INVOKABLE DiveObjectHelper at(int i);
|
2019-09-29 10:44:27 +02:00
|
|
|
private:
|
|
|
|
DiveListModel();
|
2015-06-09 22:20:44 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DIVELISTMODEL_H
|