From 5369ee7de29986d600cf75747160b8b275ea6dc2 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 12 Oct 2011 13:17:40 +1000 Subject: [PATCH] Minor Oximetry Preference stuff --- mainwindow.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index d179c823..958d86c9 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -113,6 +113,7 @@ MainWindow::MainWindow(QWidget *parent) : if (!PROFILE.Exists("MemoryHog")) PROFILE["MemoryHog"]=false; if (!PROFILE.Exists("EnableGraphSnapshots")) PROFILE["EnableGraphSnapshots"]=false; + if (!PROFILE.Exists("EnableOximetry")) PROFILE["EnableOximetry"]=false; if (!PROFILE.Exists("LinkGroups")) PROFILE["LinkGroups"]=false; if (!PROFILE.Exists("AlwaysShowOverlayBars")) PROFILE["AlwaysShowOverlayBars"]=0; if (!PROFILE.Exists("UseAntiAliasing")) PROFILE["UseAntiAliasing"]=false; @@ -182,7 +183,10 @@ void MainWindow::Startup() overview=new Overview(ui->tabWidget,daily->SharedWidget()); ui->tabWidget->insertTab(2,overview,tr("Overview")); - + if (PROFILE["EnableOximetry"].toBool()) { + oximetry=new Oximetry(ui->tabWidget,daily->SharedWidget()); + ui->tabWidget->insertTab(3,oximetry,tr("Oximetry")); + } if (daily) daily->ReloadGraphs(); if (overview) overview->ReloadGraphs(); qprogress->hide(); @@ -380,9 +384,9 @@ void MainWindow::on_oximetryButton_clicked() { bool first=false; if (!oximetry) { - if (!PROFILE.Exists("HaveCMS50") || !PROFILE["HaveCMS50"].toBool()) { + if (!PROFILE.Exists("EnableOximetry") || !PROFILE["EnableOximetry"].toBool()) { if (QMessageBox::question(this,"Question","Do you have a CMS50[x] Oximeter?\nOne is required to use this section.\nNote: This section is not fully completed yet.",QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) return; - PROFILE["HaveCMS50"]=true; + PROFILE["EnableOximetry"]=true; } oximetry=new Oximetry(ui->tabWidget,daily->SharedWidget()); ui->tabWidget->insertTab(3,oximetry,tr("Oximetry"));