diff options
author | Robert C. Helling <helling@atdotde.de> | 2014-02-12 16:46:17 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-17 10:56:43 -0800 |
commit | fe2a264db3ee9ef49c87e5530d8d198357cd43b5 (patch) | |
tree | d18afcb3ab3d71cd48e45b8ad6160091e4a83c05 /qt-ui/simplewidgets.cpp | |
parent | dd24eaa377bf95fa9dafd43ca5989aebd822663b (diff) | |
download | subsurface-fe2a264db3ee9ef49c87e5530d8d198357cd43b5.tar.gz |
Store camera time offset in preferences
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/simplewidgets.cpp')
-rw-r--r-- | qt-ui/simplewidgets.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/qt-ui/simplewidgets.cpp b/qt-ui/simplewidgets.cpp index 2a0b48307..5d7ed299a 100644 --- a/qt-ui/simplewidgets.cpp +++ b/qt-ui/simplewidgets.cpp @@ -11,6 +11,7 @@ #include <QProcess> #include <QStringList> #include <QDebug> +#include <QTime> #include "../dive.h" #include "mainwindow.h" @@ -163,6 +164,7 @@ void ShiftImageTimesDialog::buttonClicked(QAbstractButton* button) m_amount = ui.timeEdit->time().hour() * 3600 + ui.timeEdit->time().minute() * 60; if (ui.backwards->isChecked()) m_amount *= -1; + } } @@ -177,6 +179,17 @@ int ShiftImageTimesDialog::amount() const return m_amount; } +void ShiftImageTimesDialog::setOffset(int offset) +{ + if (offset >= 0) { + ui.forward->setDown(TRUE); + } else { + ui.backwards->setDown(TRUE); + offset *= -1; + } + ui.timeEdit->setTime(QTime::QTime(offset / 3600, (offset % 3600) / 60, offset % 60)); +} + bool isGnome3Session() { #if defined(QT_OS_WIW) || defined(QT_OS_MAC) |