summaryrefslogtreecommitdiffstats
path: root/qt-ui/simplewidgets.cpp
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2014-11-26 14:22:41 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-12-01 14:23:45 -0800
commitfb265c292994d9afa252b5236a805f84cb0d4554 (patch)
treecb03a4d7f76cfa057948db6386fcb8f96780d350 /qt-ui/simplewidgets.cpp
parent96a94f1a19d22fa0432e10495315ce3e98b35c4f (diff)
downloadsubsurface-fb265c292994d9afa252b5236a805f84cb0d4554.tar.gz
Context menu entry to change setpoint
This patch adds a context menu entry to add a setpoint change event. In particular, this can be used to turn a logged dive into a CCR dive. 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.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/qt-ui/simplewidgets.cpp b/qt-ui/simplewidgets.cpp
index 6ab4566fd..91d003dc9 100644
--- a/qt-ui/simplewidgets.cpp
+++ b/qt-ui/simplewidgets.cpp
@@ -172,13 +172,18 @@ void SetpointDialog::setpointData(struct divecomputer *divecomputer, int second)
{
dc = divecomputer;
time = second;
+ qDebug() << second << time;
}
void SetpointDialog::buttonClicked(QAbstractButton *button)
{
if (ui.buttonBox->buttonRole(button) == QDialogButtonBox::AcceptRole) {
- add_event(dc, time, SAMPLE_EVENT_PO2, 0, ui.spinbox->value(), "SP change");
+ qDebug() << time << (int)(1000.0 * ui.spinbox->value());
+ add_event(dc, time, SAMPLE_EVENT_PO2, 0, (int)(1000.0 * ui.spinbox->value()), "SP change");
}
+ mark_divelist_changed(true);
+ MainWindow::instance()->graphics()->replot();
+
}
SetpointDialog::SetpointDialog(QWidget *parent) : QDialog(parent)