summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/tab-widgets/TabDiveInformation.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-04-26 10:03:32 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-04-29 12:58:49 -0700
commit26edea7f71bb1726cebe3955494ab049f337ecda (patch)
tree550cac2d735857aef34d37824374743745e60d1c /desktop-widgets/tab-widgets/TabDiveInformation.h
parent98a3eb414befe32f912b21e1db2fed17a2017943 (diff)
downloadsubsurface-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.h7
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