diff options
author | 2019-04-26 10:03:32 +0200 | |
---|---|---|
committer | 2019-04-29 12:58:49 -0700 | |
commit | 26edea7f71bb1726cebe3955494ab049f337ecda (patch) | |
tree | 550cac2d735857aef34d37824374743745e60d1c /desktop-widgets/tab-widgets/TabDiveInformation.h | |
parent | 98a3eb414befe32f912b21e1db2fed17a2017943 (diff) | |
download | subsurface-26edea7f71bb1726cebe3955494ab049f337ecda.tar.gz |
Desktop: automatically update dive information tab
Currently, the dive information tab was not updated when the user
edited fields. The fields were only updated when switching between
dives.
Therefore, hook into the "divesChanged" signal and update the fields
accordingly.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/tab-widgets/TabDiveInformation.h')
-rw-r--r-- | desktop-widgets/tab-widgets/TabDiveInformation.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/desktop-widgets/tab-widgets/TabDiveInformation.h b/desktop-widgets/tab-widgets/TabDiveInformation.h index 80579dbd1..a61b9b414 100644 --- a/desktop-widgets/tab-widgets/TabDiveInformation.h +++ b/desktop-widgets/tab-widgets/TabDiveInformation.h @@ -3,6 +3,7 @@ #define TAB_DIVE_INFORMATION_H #include "TabBase.h" +#include "core/subsurface-qt/DiveListNotifier.h" namespace Ui { class TabDiveInformation; @@ -15,10 +16,12 @@ public: ~TabDiveInformation(); void updateData() override; void clear() override; - +private slots: + void divesChanged(dive_trip *trip, const QVector<dive *> &dives, DiveField field); private: Ui::TabDiveInformation *ui; + void updateProfile(); + void updateWhen(); }; - #endif |