diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-06-30 21:32:14 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-07-13 17:07:42 -0700 |
commit | 9efb56e2d43161d952efb444d1f13d87bfdd45b5 (patch) | |
tree | 6acecf55e52cea217b79d8632ab4c760ddc50070 /qt-models/divepicturemodel.h | |
parent | 0aaa1bf3862901933ed68c15a38fed9dc4c621a4 (diff) | |
download | subsurface-9efb56e2d43161d952efb444d1f13d87bfdd45b5.tar.gz |
Dive pictures: don't update all images on drag&drop to profile
Gracefully handle drag & drop to the profile, which changes the
offset of the pictures. To do this, keep the pictures in the
DivePictureModel and the ProfileWidget2 sorted by offset and
re-arrange if needed to keep the list sorted. This needs some
code reshuffling.
Introduce a helper-function that moves ranges in arrays.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/divepicturemodel.h')
-rw-r--r-- | qt-models/divepicturemodel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qt-models/divepicturemodel.h b/qt-models/divepicturemodel.h index 427ab0158..6dc633fb2 100644 --- a/qt-models/divepicturemodel.h +++ b/qt-models/divepicturemodel.h @@ -7,6 +7,7 @@ #include <QFuture> struct PictureEntry { + int diveId; struct picture *picture; QString filename; QImage image; @@ -22,7 +23,7 @@ public: virtual int rowCount(const QModelIndex &parent = QModelIndex()) const; virtual void updateDivePictures(); void removePictures(const QVector<QString> &fileUrls); - void updateDivePictureOffset(const QString &filename, int offsetSeconds); + void updateDivePictureOffset(int diveId, const QString &filename, int offsetSeconds); signals: void picturesRemoved(const QVector<QString> &fileUrls); public slots: |