diff --git a/SleepLib/schema.h b/SleepLib/schema.h index acdd33b5..f3fbdeb2 100644 --- a/SleepLib/schema.h +++ b/SleepLib/schema.h @@ -55,6 +55,7 @@ public: const QString & name() { return m_name; } const QString & description() { return m_description; } const QString & label() { return m_label; } + const QString & units() { return m_unit; } QColor & defaultColor() { return m_defaultcolor; } void setDefaultColor(QColor color) { m_defaultcolor=color; } QHash m_options; diff --git a/daily.cpp b/daily.cpp index 3b063b50..abb5bce6 100644 --- a/daily.cpp +++ b/daily.cpp @@ -335,6 +335,8 @@ void Daily::on_Link_clicked(const QUrl &url) ui->treeWidget->setCurrentItem(wi); ui->tabWidget->setCurrentIndex(1); } + } else if (code=="graph") { + qDebug() << "Select graph " << data; } else { qDebug() << "Clicked on" << code << data; } @@ -731,7 +733,9 @@ void Daily::Load(QDate date) ChannelID code=chans[i]; if (cpap && cpap->channelHasData(code)) { //if (code==CPAP_LeakTotal) suboffset=PROFILE["IntentionalLeak"].toDouble(); else suboffset=0; - html+=""+schema::channel[code].label(); + QString tooltip=schema::channel[code].description(); + if (!schema::channel[code].units().isEmpty()) tooltip+=" ("+schema::channel[code].units()+")"; + html+=""+schema::channel[code].label()+""; html+=""+a.sprintf("%.2f",cpap->min(code)-suboffset); html+=""+a.sprintf("%.2f",cpap->wavg(code)-suboffset); html+=""+a.sprintf("%.2f",cpap->p90(code)-suboffset); @@ -739,7 +743,9 @@ void Daily::Load(QDate date) html+=""; } if (oxi && oxi->channelHasData(code)) { - html+=""+schema::channel[code].label(); + QString tooltip=schema::channel[code].description(); + if (!schema::channel[code].units().isEmpty()) tooltip+=" ("+schema::channel[code].units()+")"; + html+=""+schema::channel[code].label()+""; html+=""+a.sprintf("%.2f",oxi->min(code)); html+=""+a.sprintf("%.2f",oxi->wavg(code)); html+=""+a.sprintf("%.2f",oxi->p90(code)); @@ -954,7 +960,7 @@ void Daily::Unload(QDate date) double bmi=(height*height)/kg; if (kg>0) { journal->settings["Weight"]=kg; - journal->settings["BMI"]=kg; + journal->settings["BMI"]=bmi; journal->SetChanged(true); } else { if (journal->settings.contains("Weight")) { diff --git a/docs/channels.xml b/docs/channels.xml index bef1fddd..736dbe94 100644 --- a/docs/channels.xml +++ b/docs/channels.xml @@ -30,10 +30,10 @@ One id code per item - + - + @@ -49,7 +49,7 @@ One id code per item - + @@ -73,8 +73,8 @@ One id code per item - - + +