Only nag with the oximetry message on first use

This commit is contained in:
Mark Watkins 2011-10-05 16:49:12 +10:00
parent 91da11e936
commit 9404891eb0

View File

@ -370,7 +370,10 @@ void MainWindow::on_oximetryButton_clicked()
{ {
bool first=false; bool first=false;
if (!oximetry) { if (!oximetry) {
if (QMessageBox::question(this,"Question","Do you have a CMS50[x] Oximeter?\nOne is required to use this section.",QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) return; if (!pref.Exists("HaveCMS50") || !pref["HaveCMS50"].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;
pref["HaveCMS50"]=true;
}
oximetry=new Oximetry(ui->tabWidget,profile,daily->SharedWidget()); oximetry=new Oximetry(ui->tabWidget,profile,daily->SharedWidget());
ui->tabWidget->insertTab(3,oximetry,tr("Oximetry")); ui->tabWidget->insertTab(3,oximetry,tr("Oximetry"));
first=true; first=true;