2017-04-27 18:25:32 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-05-28 21:33:51 +00:00
|
|
|
#ifndef DIVETRIPMODEL_H
|
|
|
|
#define DIVETRIPMODEL_H
|
|
|
|
|
2016-04-05 05:02:03 +00:00
|
|
|
#include "core/dive.h"
|
2018-09-30 14:06:17 +00:00
|
|
|
#include <QAbstractItemModel>
|
|
|
|
#include <QCoreApplication> // For Q_DECLARE_TR_FUNCTIONS
|
2015-05-28 21:33:51 +00:00
|
|
|
|
2018-09-30 14:06:17 +00:00
|
|
|
struct DiveItem {
|
|
|
|
Q_DECLARE_TR_FUNCTIONS(TripItem) // Is that TripItem on purpose?
|
2015-10-20 12:36:53 +00:00
|
|
|
public:
|
2015-05-28 21:33:51 +00:00
|
|
|
enum Column {
|
|
|
|
NR,
|
|
|
|
DATE,
|
|
|
|
RATING,
|
|
|
|
DEPTH,
|
|
|
|
DURATION,
|
|
|
|
TEMPERATURE,
|
|
|
|
TOTALWEIGHT,
|
|
|
|
SUIT,
|
|
|
|
CYLINDER,
|
|
|
|
GAS,
|
|
|
|
SAC,
|
|
|
|
OTU,
|
|
|
|
MAXCNS,
|
2018-04-04 06:18:29 +00:00
|
|
|
TAGS,
|
2016-11-19 12:23:54 +00:00
|
|
|
PHOTOS,
|
2018-09-04 15:10:11 +00:00
|
|
|
BUDDIES,
|
2017-10-02 15:52:07 +00:00
|
|
|
COUNTRY,
|
2015-05-28 21:33:51 +00:00
|
|
|
LOCATION,
|
|
|
|
COLUMNS
|
|
|
|
};
|
|
|
|
|
2018-09-30 14:06:17 +00:00
|
|
|
QVariant data(int column, int role) const;
|
2018-09-06 20:15:37 +00:00
|
|
|
dive *d;
|
2018-09-30 14:06:17 +00:00
|
|
|
DiveItem(dive *dIn) : d(dIn) {} // Trivial constructor
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
|
2015-05-28 21:33:51 +00:00
|
|
|
QString displayDate() const;
|
|
|
|
QString displayDuration() const;
|
|
|
|
QString displayDepth() const;
|
|
|
|
QString displayDepthWithUnit() const;
|
|
|
|
QString displayTemperature() const;
|
2017-10-09 06:46:18 +00:00
|
|
|
QString displayTemperatureWithUnit() const;
|
2015-05-28 21:33:51 +00:00
|
|
|
QString displayWeight() const;
|
2017-10-09 06:46:18 +00:00
|
|
|
QString displayWeightWithUnit() const;
|
2015-05-28 21:33:51 +00:00
|
|
|
QString displaySac() const;
|
2017-10-09 06:46:18 +00:00
|
|
|
QString displaySacWithUnit() const;
|
2018-04-04 06:18:29 +00:00
|
|
|
QString displayTags() const;
|
2018-09-06 20:15:37 +00:00
|
|
|
int countPhotos() const;
|
2015-05-28 21:33:51 +00:00
|
|
|
int weight() const;
|
|
|
|
};
|
|
|
|
|
2018-09-30 14:06:17 +00:00
|
|
|
struct TripItem {
|
2015-10-20 12:36:53 +00:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(TripItem)
|
|
|
|
public:
|
2018-09-30 14:06:17 +00:00
|
|
|
QVariant data(int column, int role) const;
|
2015-05-28 21:33:51 +00:00
|
|
|
dive_trip_t *trip;
|
2018-09-30 14:06:17 +00:00
|
|
|
TripItem(dive_trip_t *tIn) : trip(tIn) {} // Trivial constructor
|
2015-05-28 21:33:51 +00:00
|
|
|
};
|
|
|
|
|
2018-09-30 14:06:17 +00:00
|
|
|
class DiveTripModel : public QAbstractItemModel {
|
2015-05-28 21:33:51 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum Column {
|
|
|
|
NR,
|
|
|
|
DATE,
|
|
|
|
RATING,
|
|
|
|
DEPTH,
|
|
|
|
DURATION,
|
|
|
|
TEMPERATURE,
|
|
|
|
TOTALWEIGHT,
|
|
|
|
SUIT,
|
|
|
|
CYLINDER,
|
|
|
|
GAS,
|
|
|
|
SAC,
|
|
|
|
OTU,
|
|
|
|
MAXCNS,
|
2018-04-04 06:18:29 +00:00
|
|
|
TAGS,
|
2016-11-19 12:23:54 +00:00
|
|
|
PHOTOS,
|
2018-09-04 15:10:11 +00:00
|
|
|
BUDDIES,
|
2017-10-02 15:52:07 +00:00
|
|
|
COUNTRY,
|
2015-05-28 21:33:51 +00:00
|
|
|
LOCATION,
|
|
|
|
COLUMNS
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ExtraRoles {
|
|
|
|
STAR_ROLE = Qt::UserRole + 1,
|
|
|
|
DIVE_ROLE,
|
|
|
|
TRIP_ROLE,
|
|
|
|
SORT_ROLE,
|
2018-08-01 08:47:09 +00:00
|
|
|
DIVE_IDX,
|
|
|
|
SELECTED_ROLE
|
2015-05-28 21:33:51 +00:00
|
|
|
};
|
|
|
|
enum Layout {
|
|
|
|
TREE,
|
|
|
|
LIST,
|
|
|
|
CURRENT
|
|
|
|
};
|
|
|
|
|
2018-07-25 19:23:19 +00:00
|
|
|
static DiveTripModel *instance();
|
2015-05-28 21:33:51 +00:00
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
2018-09-29 20:13:44 +00:00
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
|
2015-05-28 21:33:51 +00:00
|
|
|
DiveTripModel(QObject *parent = 0);
|
|
|
|
Layout layout() const;
|
|
|
|
void setLayout(Layout layout);
|
2018-09-30 14:06:17 +00:00
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
|
|
int columnCount(const QModelIndex&) const;
|
|
|
|
int rowCount(const QModelIndex &parent) const;
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent) const;
|
|
|
|
QModelIndex parent(const QModelIndex &index) const;
|
Undo: select dives after add, remove, merge, split dive commands
Select the proper dives after the add, remove, split and merge
dives commands on undo *and* redo. Generally, select the added
dives. For undo of add, remember the pre-addition selection.
For redo of remove, select the closest dive to the first removed
dive.
The biggest part of the commit is the signal-interface between
the dive commands and the dive-list model and dive-list view.
This is done in two steps:
1) To the DiveTripModel in batches of trips. The dive trip model
transforms the dives into indices.
2) To the DiveListView. The DiveListView has to translate the
DiveTripModel indexes to actual indexes via its QSortFilterProxy-
model.
For code-reuse, derive all divelist-changing commands from a new base-class,
which has a flag that describes whether the divelist changed. The helper
functions which add and remove dives are made members of the base class and
set the flag is a selected dive is added or removed.
To properly detect when the current dive was deleted it
became necessary to turn the current dive from an index
to a pointer, because indices are not stable.
Unfortunately, in some cases an index was expected and these
places now have to transform the dive into an index. These
should be converted in due course.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2018-08-03 09:35:43 +00:00
|
|
|
signals:
|
|
|
|
// The propagation of selection changes is complex.
|
|
|
|
// The control flow of dive-selection goes:
|
|
|
|
// Commands/DiveListNotifier ---(dive */dive_trip *)---> DiveTripModel ---(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). Finally, the DiveListView transforms these
|
|
|
|
// indexes into local indexes according to current sorting/filtering and instructs the QSelectionModel to
|
|
|
|
// perform the appropriate actions.
|
|
|
|
void selectionChanged(const QVector<QModelIndex> &indexes, bool select);
|
Dive list: implement proper Qt-model semantics for DiveTripModel
Previously, each dive-list modifying function would lead to a
full model reset. Instead, implement proper Qt-model semantics
using beginInsertRows()/endInsertRows(), beginRemoveRows()/
endRemoveRows(), dataChange().
To do so, a DiveListNotifer singleton is generatated, which
broadcasts all changes to the dive-list. Signals are sent by
the commands and received by the DiveTripModel. Signals are
batched by dive-trip. This seems to be an adequate compromise
for the two kinds of list-views (tree and list). In the common
usecase mostly dives of a single trip are affected.
Thus, batching of dives is performed in two positions:
- At command-level to batch by trip
- In DiveTripModel to feed batches of contiguous elements
to Qt's begin*/end*-functions.
This is conceptually simple, but rather complex code. To avoid
repetition of complex loops, the batching is implemented in
templated-functions, which are passed lambda-functions, which
are called for each batch.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2018-07-30 07:20:25 +00:00
|
|
|
private slots:
|
|
|
|
void divesAdded(dive_trip *trip, bool addTrip, const QVector<dive *> &dives);
|
|
|
|
void divesDeleted(dive_trip *trip, bool deleteTrip, const QVector<dive *> &dives);
|
|
|
|
void divesChanged(dive_trip *trip, const QVector<dive *> &dives);
|
|
|
|
void divesTimeChanged(dive_trip *trip, timestamp_t delta, const QVector<dive *> &dives);
|
|
|
|
void divesMovedBetweenTrips(dive_trip *from, dive_trip *to, bool deleteFrom, bool createTo, const QVector<dive *> &dives);
|
Undo: select dives after add, remove, merge, split dive commands
Select the proper dives after the add, remove, split and merge
dives commands on undo *and* redo. Generally, select the added
dives. For undo of add, remember the pre-addition selection.
For redo of remove, select the closest dive to the first removed
dive.
The biggest part of the commit is the signal-interface between
the dive commands and the dive-list model and dive-list view.
This is done in two steps:
1) To the DiveTripModel in batches of trips. The dive trip model
transforms the dives into indices.
2) To the DiveListView. The DiveListView has to translate the
DiveTripModel indexes to actual indexes via its QSortFilterProxy-
model.
For code-reuse, derive all divelist-changing commands from a new base-class,
which has a flag that describes whether the divelist changed. The helper
functions which add and remove dives are made members of the base class and
set the flag is a selected dive is added or removed.
To properly detect when the current dive was deleted it
became necessary to turn the current dive from an index
to a pointer, because indices are not stable.
Unfortunately, in some cases an index was expected and these
places now have to transform the dive into an index. These
should be converted in due course.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2018-08-03 09:35:43 +00:00
|
|
|
void divesSelected(dive_trip *trip, const QVector<dive *> &dives);
|
|
|
|
void divesDeselected(dive_trip *trip, const QVector<dive *> &dives);
|
2015-05-28 21:33:51 +00:00
|
|
|
private:
|
2018-09-30 14:06:17 +00:00
|
|
|
// The model has up to 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. Two cases two consider:
|
|
|
|
// 1) If "trip" is non-null, then this is a dive-trip and the dives are collected
|
|
|
|
// in the dives vector. Note that in principle we could also get the dives in a
|
|
|
|
// trip from the backend, but there they are collected in a linked-list, which is
|
|
|
|
// quite inconvenient to access.
|
|
|
|
// 2) If "trip" is null, this is a dive and dives is supposed to contain exactly
|
|
|
|
// one element, which is the corresponding dive.
|
|
|
|
struct Item {
|
|
|
|
dive_trip *trip;
|
Dive list: implement proper Qt-model semantics for DiveTripModel
Previously, each dive-list modifying function would lead to a
full model reset. Instead, implement proper Qt-model semantics
using beginInsertRows()/endInsertRows(), beginRemoveRows()/
endRemoveRows(), dataChange().
To do so, a DiveListNotifer singleton is generatated, which
broadcasts all changes to the dive-list. Signals are sent by
the commands and received by the DiveTripModel. Signals are
batched by dive-trip. This seems to be an adequate compromise
for the two kinds of list-views (tree and list). In the common
usecase mostly dives of a single trip are affected.
Thus, batching of dives is performed in two positions:
- At command-level to batch by trip
- In DiveTripModel to feed batches of contiguous elements
to Qt's begin*/end*-functions.
This is conceptually simple, but rather complex code. To avoid
repetition of complex loops, the batching is implemented in
templated-functions, which are passed lambda-functions, which
are called for each batch.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2018-07-30 07:20:25 +00:00
|
|
|
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
|
2018-09-30 14:06:17 +00:00
|
|
|
};
|
|
|
|
|
Dive list: implement proper Qt-model semantics for DiveTripModel
Previously, each dive-list modifying function would lead to a
full model reset. Instead, implement proper Qt-model semantics
using beginInsertRows()/endInsertRows(), beginRemoveRows()/
endRemoveRows(), dataChange().
To do so, a DiveListNotifer singleton is generatated, which
broadcasts all changes to the dive-list. Signals are sent by
the commands and received by the DiveTripModel. Signals are
batched by dive-trip. This seems to be an adequate compromise
for the two kinds of list-views (tree and list). In the common
usecase mostly dives of a single trip are affected.
Thus, batching of dives is performed in two positions:
- At command-level to batch by trip
- In DiveTripModel to feed batches of contiguous elements
to Qt's begin*/end*-functions.
This is conceptually simple, but rather complex code. To avoid
repetition of complex loops, the batching is implemented in
templated-functions, which are passed lambda-functions, which
are called for each batch.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2018-07-30 07:20:25 +00:00
|
|
|
// Access trips and dives
|
|
|
|
int findTripIdx(const dive_trip *trip) const;
|
|
|
|
int findDiveIdx(const dive *d) const; // Find _top_level_ dive
|
|
|
|
int findDiveInTrip(int tripIdx, const dive *d) const; // Find dive inside trip. Second parameter is index of trip
|
|
|
|
int findInsertionIndex(timestamp_t when) const; // Where to insert item with timestamp "when"
|
|
|
|
|
Undo: select dives after add, remove, merge, split dive commands
Select the proper dives after the add, remove, split and merge
dives commands on undo *and* redo. Generally, select the added
dives. For undo of add, remember the pre-addition selection.
For redo of remove, select the closest dive to the first removed
dive.
The biggest part of the commit is the signal-interface between
the dive commands and the dive-list model and dive-list view.
This is done in two steps:
1) To the DiveTripModel in batches of trips. The dive trip model
transforms the dives into indices.
2) To the DiveListView. The DiveListView has to translate the
DiveTripModel indexes to actual indexes via its QSortFilterProxy-
model.
For code-reuse, derive all divelist-changing commands from a new base-class,
which has a flag that describes whether the divelist changed. The helper
functions which add and remove dives are made members of the base class and
set the flag is a selected dive is added or removed.
To properly detect when the current dive was deleted it
became necessary to turn the current dive from an index
to a pointer, because indices are not stable.
Unfortunately, in some cases an index was expected and these
places now have to transform the dive into an index. These
should be converted in due course.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2018-08-03 09:35:43 +00:00
|
|
|
// Select or deselect dives
|
|
|
|
void changeDiveSelection(dive_trip *trip, const QVector<dive *> &dives, bool select);
|
|
|
|
|
Dive list: implement proper Qt-model semantics for DiveTripModel
Previously, each dive-list modifying function would lead to a
full model reset. Instead, implement proper Qt-model semantics
using beginInsertRows()/endInsertRows(), beginRemoveRows()/
endRemoveRows(), dataChange().
To do so, a DiveListNotifer singleton is generatated, which
broadcasts all changes to the dive-list. Signals are sent by
the commands and received by the DiveTripModel. Signals are
batched by dive-trip. This seems to be an adequate compromise
for the two kinds of list-views (tree and list). In the common
usecase mostly dives of a single trip are affected.
Thus, batching of dives is performed in two positions:
- At command-level to batch by trip
- In DiveTripModel to feed batches of contiguous elements
to Qt's begin*/end*-functions.
This is conceptually simple, but rather complex code. To avoid
repetition of complex loops, the batching is implemented in
templated-functions, which are passed lambda-functions, which
are called for each batch.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2018-07-30 07:20:25 +00:00
|
|
|
// Addition and deletion of dives
|
|
|
|
void addDivesToTrip(int idx, const QVector<dive *> &dives);
|
|
|
|
|
2018-09-30 14:06:17 +00:00
|
|
|
dive *diveOrNull(const QModelIndex &index) const; // Returns a dive if this index represents a dive, null otherwise
|
|
|
|
QPair<dive_trip *, dive *> 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
|
2015-05-28 21:33:51 +00:00
|
|
|
void setupModelData();
|
2018-09-30 14:06:17 +00:00
|
|
|
std::vector<Item> items; // Use std::vector for convenience of emplace_back()
|
2015-05-28 21:33:51 +00:00
|
|
|
Layout currentLayout;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|