diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-12-19 12:32:32 +0100 |
---|---|---|
committer | bstoeger <32835590+bstoeger@users.noreply.github.com> | 2020-12-19 20:19:51 +0100 |
commit | fceb3691d9b4ccccf1ebb76f83fb7d58067251d7 (patch) | |
tree | d6a145f13bf4fee7676d6874c0bc3e092194fe52 /profile-widget/divepixmapitem.h | |
parent | 636c932dfe202c44b6f8d13433dd8fef1c302277 (diff) | |
download | subsurface-fceb3691d9b4ccccf1ebb76f83fb7d58067251d7.tar.gz |
profile: move picture removal from DivePictureItem to ProfileWidget2
On clicking the DivePictureItem "trash" icon, the item would delete
the picture it represents in the currently displayed dive. This needed
an access to the global "displayed_dive" variable, which we want
to get rid of to make the profile more flexible. For example, we
want to render the profile for printing without messing with global
state.
One solution would be to save the dive with every DivePictureItem.
This commit follows a more Qt-ish strategy by handling this via
signals: The close button emits a signal that is recast by the
DivePictureItem and ultimately handled by the ProfileWidget2,
which knows which dive it represents.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'profile-widget/divepixmapitem.h')
-rw-r--r-- | profile-widget/divepixmapitem.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/profile-widget/divepixmapitem.h b/profile-widget/divepixmapitem.h index 545ecb2ae..44c5dd88e 100644 --- a/profile-widget/divepixmapitem.h +++ b/profile-widget/divepixmapitem.h @@ -19,6 +19,8 @@ class CloseButtonItem : public DivePixmapItem { Q_OBJECT public: CloseButtonItem(QGraphicsItem *parent = 0); +signals: + void clicked(); private: void mousePressEvent(QGraphicsSceneMouseEvent *event) override; }; @@ -30,10 +32,11 @@ public: DivePictureItem(QGraphicsItem *parent = 0); void setPixmap(const QPixmap& pix); void setBaseZValue(double z); + void setFileUrl(const QString& s); +signals: + void removePicture(const QString &fileUrl); public slots: void settingsChanged(); - void removePicture(); - void setFileUrl(const QString& s); private: void hoverEnterEvent(QGraphicsSceneHoverEvent *event); void hoverLeaveEvent(QGraphicsSceneHoverEvent *event); |