diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-09-20 16:41:42 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-09-21 08:30:32 -0700 |
commit | a8888eaf26c9355f3f2d20c24526489e17d3404a (patch) | |
tree | b45150112874e018d80dba76cac913faec22393d /qt-ui/maintab.h | |
parent | acd35995484ba8b0a4ee416b5dcceb76b843439e (diff) | |
download | subsurface-a8888eaf26c9355f3f2d20c24526489e17d3404a.tar.gz |
Allow editing of date & time and air & water temperatures
Add two more rows to the widget - this is getting quite busy.
There still is some weirdness where the focus isn't returned where it
should be and a few other details, but overall getting there.
Added helper functions to parse a temperature and to deal with the
timezone offset - with that latter one I also fixed the time offset bug in
the planner.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.h')
-rw-r--r-- | qt-ui/maintab.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qt-ui/maintab.h b/qt-ui/maintab.h index 041611b26..1970bad1f 100644 --- a/qt-ui/maintab.h +++ b/qt-ui/maintab.h @@ -21,6 +21,9 @@ namespace Ui } struct NotesBackup{ + QString airtemp; + QString watertemp; + QString datetime; QString location; QString coordinates; degrees_t latitude; @@ -64,6 +67,9 @@ public slots: void on_buddy_textChanged(const QString& text); void on_suit_textChanged(const QString& text); void on_notes_textChanged(); + void on_airtemp_textChanged(const QString& text); + void on_watertemp_textChanged(const QString& text); + void on_dateTimeEdit_dateTimeChanged(const QDateTime& datetime); void on_rating_valueChanged(int value); void on_visibility_valueChanged(int value); void editCylinderWidget(const QModelIndex& index); |