mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
cad80e5a53
The current dc global makes no sense on mobile. Therefore, move the logic of the currently displayed dive computer to the profile widget and remove the dc_number global variable. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
223 lines
9.1 KiB
C++
223 lines
9.1 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef DIVETRIPMODEL_H
|
|
#define DIVETRIPMODEL_H
|
|
|
|
#include "core/dive.h"
|
|
#include "core/subsurface-qt/divelistnotifier.h"
|
|
#include <QAbstractItemModel>
|
|
#include <QBrush>
|
|
#include <QFont>
|
|
|
|
class DiveFilter;
|
|
|
|
// There are two different representations of the dive list:
|
|
// 1) Tree view: two-level model where dives are grouped by trips
|
|
// 2) List view: one-level model where dives are sorted by one out
|
|
// of many keys (e.g. date, depth, etc.).
|
|
//
|
|
// These two representations are realized by two classes, viz.
|
|
// DiveTripModelTree and DiveTripModelList. Both classes derive
|
|
// from DiveTripModelBase, which implements common features (e.g.
|
|
// definition of the column types, access of data from the core
|
|
// structures) and a common interface.
|
|
class DiveTripModelBase : public QAbstractItemModel {
|
|
Q_OBJECT
|
|
public:
|
|
enum Column {
|
|
NR,
|
|
DATE,
|
|
RATING,
|
|
DEPTH,
|
|
DURATION,
|
|
TEMPERATURE,
|
|
TOTALWEIGHT,
|
|
SUIT,
|
|
CYLINDER,
|
|
GAS,
|
|
SAC,
|
|
OTU,
|
|
MAXCNS,
|
|
TAGS,
|
|
PHOTOS,
|
|
BUDDIES,
|
|
DIVEGUIDE,
|
|
COUNTRY,
|
|
LOCATION,
|
|
NOTES,
|
|
COLUMNS
|
|
};
|
|
|
|
enum ExtraRoles {
|
|
STAR_ROLE = Qt::UserRole + 1,
|
|
IS_TRIP_ROLE,
|
|
DIVE_ROLE,
|
|
TRIP_ROLE,
|
|
DIVE_IDX,
|
|
SELECTED_ROLE,
|
|
CURRENT_ROLE,
|
|
TRIP_HAS_CURRENT_ROLE, // Returns true if this is a trip and it contains the current dive
|
|
LAST_ROLE
|
|
};
|
|
enum Layout {
|
|
TREE,
|
|
LIST,
|
|
};
|
|
|
|
// Call after having set the model to be informed of the current selection.
|
|
void initSelection();
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
|
|
DiveTripModelBase(QObject *parent = 0);
|
|
int columnCount(const QModelIndex&) const;
|
|
|
|
// Used for sorting. This is a bit of a layering violation, as sorting should be performed
|
|
// by the higher-up QSortFilterProxyModel, but it makes things so much easier!
|
|
virtual bool lessThan(const QModelIndex &i1, const QModelIndex &i2) const = 0;
|
|
protected slots:
|
|
void reset();
|
|
signals:
|
|
// The propagation of selection changes is complex.
|
|
// The control flow of programmatical dive-selection goes:
|
|
// Commands/DiveListNotifier ---(dive */dive_trip *)---> DiveTripModel
|
|
// ---(QModelIndex)---> MultiFilterSortModel
|
|
// ---(QModelIndex)---> DiveListView
|
|
// i.e. The command objects send changes in terms of pointer-to-dives, which the DiveTripModel transforms
|
|
// into QModelIndexes according to the current view (tree/list). These are modified according to current
|
|
// filtering/sorting. Finally, the DiveListView instructs the QSelectionModel to
|
|
// perform the appropriate actions.
|
|
void divesSelected(const QVector<QModelIndex> &indices, QModelIndex currentDive, int currentDC); // currentDC < 0 -> keep DC.
|
|
void tripSelected(QModelIndex trip, QModelIndex currentDive);
|
|
protected:
|
|
dive *oldCurrent;
|
|
QBrush invalidForeground;
|
|
QFont invalidFont;
|
|
|
|
// Access trip and dive data
|
|
QVariant diveData(const struct dive *d, int column, int role) const; // Not static because we have to access invalidFont
|
|
static QVariant tripData(const dive_trip *trip, int column, int role);
|
|
static QString tripTitle(const dive_trip *trip);
|
|
static QString tripShortDate(const dive_trip *trip);
|
|
static QString getDescription(int column);
|
|
void currentChanged(dive *currentDive);
|
|
|
|
virtual dive *diveOrNull(const QModelIndex &index) const = 0; // Returns a dive if this index represents a dive, null otherwise
|
|
virtual void clearData() = 0;
|
|
virtual void populate() = 0;
|
|
virtual QModelIndex diveToIdx(const dive *d) const = 0;
|
|
};
|
|
|
|
class DiveTripModelTree final : public DiveTripModelBase
|
|
{
|
|
Q_OBJECT
|
|
public slots:
|
|
void divesAdded(dive_trip *trip, bool addTrip, const QVector<dive *> &dives);
|
|
void divesDeleted(dive_trip *trip, bool deleteTrip, const QVector<dive *> &dives);
|
|
void divesMovedBetweenTrips(dive_trip *from, dive_trip *to, bool deleteFrom, bool createTo, const QVector<dive *> &dives);
|
|
void diveSiteChanged(dive_site *ds, int field);
|
|
void divesChanged(const QVector<dive *> &dives);
|
|
void diveChanged(dive *d);
|
|
void divesTimeChanged(timestamp_t delta, const QVector<dive *> &dives);
|
|
void divesSelectedSlot(const QVector<dive *> &dives, dive *currentDive, int currentDC);
|
|
void tripSelected(dive_trip *trip, dive *currentDive);
|
|
void tripChanged(dive_trip *trip, TripField);
|
|
void filterReset();
|
|
|
|
public:
|
|
DiveTripModelTree(QObject *parent = nullptr);
|
|
int tripInDirection(const struct dive *d, int direction) const;
|
|
private:
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
void clearData() override;
|
|
void populate() override;
|
|
QModelIndex index(int row, int column, const QModelIndex &parent) const override;
|
|
QModelIndex parent(const QModelIndex &index) const override;
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
bool lessThan(const QModelIndex &i1, const QModelIndex &i2) const override;
|
|
void divesSelectedTrip(dive_trip *trip, const QVector<dive *> &dives, QVector<QModelIndex> &);
|
|
dive *diveOrNull(const QModelIndex &index) const override;
|
|
void divesChangedTrip(dive_trip *trip, const QVector<dive *> &dives);
|
|
void divesShown(dive_trip *trip, const QVector<dive *> &dives);
|
|
void divesHidden(dive_trip *trip, const QVector<dive *> &dives);
|
|
void divesTimeChangedTrip(dive_trip *trip, timestamp_t delta, const QVector<dive *> &dives);
|
|
void divesDeletedInternal(dive_trip *trip, bool deleteTrip, const QVector<dive *> &dives);
|
|
|
|
// The tree model has two levels. At the top level, we have either trips or dives
|
|
// that do not belong to trips. Such a top-level item is represented by the "Item"
|
|
// struct, which is based on the dive_or_trip structure.
|
|
// If it is a trip, additionally, the dives are collected in a vector.
|
|
// The items are ordered chronologically according to the dive_or_trip_less_than()
|
|
// function, which guarantees a stable ordering even in the case of equal timestamps.
|
|
// For dives and trips, it place dives chronologically after trips, so that in
|
|
// the default-descending view they are shown before trips.
|
|
struct Item {
|
|
dive_or_trip d_or_t;
|
|
std::vector<dive *> dives; // std::vector<> instead of QVector for insert() with three iterators
|
|
Item(dive_trip *t, const QVector<dive *> &dives);
|
|
Item(dive_trip *t, dive *d); // Initialize a trip with one dive
|
|
Item(dive *d); // Initialize a top-level dive
|
|
bool isDive(const dive *) const; // Helper function: is this the give dive?
|
|
dive *getDive() const; // Helper function: returns top-level-dive or null
|
|
timestamp_t when() const; // Helper function: start time of dive *or* trip
|
|
};
|
|
std::vector<Item> items; // Use std::vector for convenience of emplace_back()
|
|
|
|
dive_or_trip tripOrDive(const QModelIndex &index) const;
|
|
// Returns either a pointer to a trip or a dive, or twice null of index is invalid
|
|
// null, something is really wrong
|
|
// Addition and deletion of dives and trips
|
|
void addTrip(dive_trip *trip, const QVector<dive *> &dives);
|
|
void addDivesToTrip(int idx, const QVector<dive *> &dives);
|
|
void addDivesTopLevel(const QVector<dive *> &dives);
|
|
void removeDivesFromTrip(int idx, const QVector<dive *> &dives);
|
|
void removeDivesTopLevel(const QVector<dive *> &dives);
|
|
void removeTrip(int idx);
|
|
void topLevelChanged(int idx);
|
|
|
|
// Access trips and dives
|
|
int findTripIdx(const dive_trip *trip) const;
|
|
int findDiveIdx(const dive *d) const; // Find _top_level_ dive
|
|
QModelIndex diveToIdx(const dive *d) const; // Find _any_ dive
|
|
int findDiveInTrip(int tripIdx, const dive *d) const; // Find dive inside trip. Second parameter is index of trip
|
|
int findInsertionIndex(const dive_trip *trip) const; // Where to insert trip
|
|
|
|
// Comparison function between dive and arbitrary entry
|
|
static bool dive_before_entry(const dive *d, const Item &entry);
|
|
};
|
|
|
|
class DiveTripModelList final : public DiveTripModelBase
|
|
{
|
|
Q_OBJECT
|
|
public slots:
|
|
void divesAdded(dive_trip *trip, bool addTrip, const QVector<dive *> &dives);
|
|
void divesDeleted(dive_trip *trip, bool deleteTrip, const QVector<dive *> &dives);
|
|
void diveSiteChanged(dive_site *ds, int field);
|
|
void divesChanged(const QVector<dive *> &dives);
|
|
void diveChanged(dive *d);
|
|
void divesTimeChanged(timestamp_t delta, const QVector<dive *> &dives);
|
|
// Does nothing in list view.
|
|
//void divesMovedBetweenTrips(dive_trip *from, dive_trip *to, bool deleteFrom, bool createTo, const QVector<dive *> &dives);
|
|
void divesSelectedSlot(const QVector<dive *> &dives, dive *currentDive, int currentDC);
|
|
void tripSelected(dive_trip *trip, dive *currentDive);
|
|
void filterReset();
|
|
|
|
public:
|
|
DiveTripModelList(QObject *parent = nullptr);
|
|
private:
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
void clearData() override;
|
|
void populate() override;
|
|
QModelIndex index(int row, int column, const QModelIndex &parent) const override;
|
|
QModelIndex parent(const QModelIndex &index) const override;
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
bool lessThan(const QModelIndex &i1, const QModelIndex &i2) const override;
|
|
dive *diveOrNull(const QModelIndex &index) const override;
|
|
void addDives(QVector<dive *> &dives);
|
|
void removeDives(QVector<dive *> dives);
|
|
QModelIndex diveToIdx(const dive *d) const;
|
|
void divesDeletedInternal(const QVector<dive *> &dives);
|
|
|
|
std::vector<dive *> items; // TODO: access core data directly
|
|
};
|
|
|
|
#endif
|