aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/maintab.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-02-04 13:59:20 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-03-04 12:16:49 -0800
commit74b542ee60887c3fda348212a0b35720b6e49548 (patch)
tree1512f5d9c0f4e6c37ee2bfb3761bc313d68135d4 /desktop-widgets/maintab.cpp
parentba570c9eea3645583b4b60806ce0c3f49c4dc65a (diff)
downloadsubsurface-74b542ee60887c3fda348212a0b35720b6e49548.tar.gz
Initial response to entering duration or depth
This marks the UI as modified and updates the maxdepth of the dive; it ignores changes to the duration, doesn't modify the profile, so it's nowhere near ready. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/maintab.cpp')
-rw-r--r--desktop-widgets/maintab.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/desktop-widgets/maintab.cpp b/desktop-widgets/maintab.cpp
index 8b24710a0..0b69fcdea 100644
--- a/desktop-widgets/maintab.cpp
+++ b/desktop-widgets/maintab.cpp
@@ -1237,6 +1237,22 @@ void MainTab::on_divemaster_textChanged()
markChangedWidget(ui.divemaster);
}
+void MainTab::on_duration_textChanged(const QString &text)
+{
+ if (editMode == IGNORE || acceptingEdit == true)
+ return;
+ qDebug() << "duration text changed";
+}
+
+void MainTab::on_depth_textChanged(const QString &text)
+{
+ if (editMode == IGNORE || acceptingEdit == true)
+ return;
+ displayed_dive.maxdepth.mm = parseLengthToMm(text);
+ markChangedWidget(ui.depth);
+ qDebug() << "depth text changed to" << displayed_dive.maxdepth.mm << "mm";
+}
+
void MainTab::on_airtemp_textChanged(const QString &text)
{
if (editMode == IGNORE || acceptingEdit == true)