diff options
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r-- | qt-ui/mainwindow.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index ccba66d70..34ff4baf4 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -166,6 +166,23 @@ void MainWindow::cleanUpEmpty() setTitle(MWTF_DEFAULT); } +void MainWindow::setToolButtonsEnabled(bool enabled) +{ + ui.profPO2->setEnabled(enabled); + ui.profPn2->setEnabled(enabled); + ui.profPhe->setEnabled(enabled); + ui.profDcCeiling->setEnabled(enabled); + ui.profCalcCeiling->setEnabled(enabled); + ui.profCalcAllTissues->setEnabled(enabled); + ui.profIncrement3m->setEnabled(enabled); + ui.profMod->setEnabled(enabled); + ui.profEad->setEnabled(enabled); + ui.profNdl_tts->setEnabled(enabled); + ui.profSAC->setEnabled(enabled); + ui.profRuler->setEnabled(enabled); + ui.profScaled->setEnabled(enabled); +} + void MainWindow::on_actionClose_triggered() { if (DivePlannerPointsModel::instance()->currentMode() != DivePlannerPointsModel::NOTHING || |