diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-01-27 22:08:13 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | 45ef87954669c765cb7b317384066c6eb88dc5d3 (patch) | |
tree | f8ef494e7d440e04a9b1d138e5c6816dc4834f88 /desktop-widgets/tab-widgets/maintab.h | |
parent | 9e603cbe2bbcae1822859b284c39dd804bf321fb (diff) | |
download | subsurface-45ef87954669c765cb7b317384066c6eb88dc5d3.tar.gz |
Undo: update notes field if changed by undo commands
To keep the UI in a consistent state, update the notes field if
it is changed by an undo command. To that purpose, add a new
signal to diveListNotifier with a list of dives and a field-id
as payload.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/tab-widgets/maintab.h')
-rw-r--r-- | desktop-widgets/tab-widgets/maintab.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop-widgets/tab-widgets/maintab.h b/desktop-widgets/tab-widgets/maintab.h index 00b94d1a0..e8fdd0ac4 100644 --- a/desktop-widgets/tab-widgets/maintab.h +++ b/desktop-widgets/tab-widgets/maintab.h @@ -17,6 +17,7 @@ #include "qt-models/completionmodels.h" #include "qt-models/divelocationmodel.h" #include "core/dive.h" +#include "core/subsurface-qt/DiveListNotifier.h" class WeightModel; class CylindersModel; @@ -62,9 +63,11 @@ signals: void diveSiteChanged(); public slots: + void divesEdited(const QVector<dive *> &dives, DiveField field); void addCylinder_clicked(); void addWeight_clicked(); void updateDiveInfo(bool clear = false); + void updateNotes(const struct dive *d); void updateDepthDuration(); void acceptChanges(); void rejectChanges(); |