mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
undo: make picture (media) deletion undoable
The code is rather complex. Firstly, we have different representations of pictures throughout the code. Secondly, this tries to do add the pictures in batches to the divepicture model and that is always rather tricky. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
9962d47b56
commit
434644b381
13 changed files with 286 additions and 54 deletions
|
@ -1,12 +1,13 @@
|
|||
// SPDX-License-Identifier: GPL-2.0
|
||||
#include "profile-widget/divepixmapitem.h"
|
||||
#include "profile-widget/animationfunctions.h"
|
||||
#include "qt-models/divepicturemodel.h"
|
||||
#include "core/pref.h"
|
||||
#include "core/qthelper.h"
|
||||
#include "core/settings/qPrefDisplay.h"
|
||||
#ifndef SUBSURFACE_MOBILE
|
||||
#include "desktop-widgets/preferences/preferencesdialog.h"
|
||||
#include "core/dive.h" // for displayed_dive
|
||||
#include "commands/command.h"
|
||||
#endif
|
||||
|
||||
#include <QDesktopServices>
|
||||
|
@ -123,6 +124,8 @@ void DivePictureItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|||
void DivePictureItem::removePicture()
|
||||
{
|
||||
#ifndef SUBSURFACE_MOBILE
|
||||
DivePictureModel::instance()->removePictures({ fileUrl });
|
||||
struct dive *d = get_dive_by_uniq_id(displayed_dive.id);
|
||||
if (d)
|
||||
Command::removePictures({ { d, { fileUrl.toStdString() } } });
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue