diff --git a/sleepyhead/statistics.cpp b/sleepyhead/statistics.cpp
index 6202de8d..4bf0fd66 100644
--- a/sleepyhead/statistics.cpp
+++ b/sleepyhead/statistics.cpp
@@ -45,6 +45,7 @@ Statistics::Statistics(QObject *parent) :
rows.push_back(StatisticsRow("ClearAirway", SC_CPH, MT_CPAP));
rows.push_back(StatisticsRow("FlowLimit", SC_CPH, MT_CPAP));
rows.push_back(StatisticsRow("RERA", SC_CPH, MT_CPAP));
+ rows.push_back(StatisticsRow("SensAwake", SC_CPH, MT_CPAP));
rows.push_back(StatisticsRow("CSR", SC_SPH, MT_CPAP));
rows.push_back(StatisticsRow(tr("Leak Statistics"), SC_SUBHEADING, MT_CPAP));
@@ -609,9 +610,9 @@ QString Statistics::GenerateHTML()
} else if ((row.calc == SC_HOURS) || (row.calc == SC_COMPLIANCE)) {
name = row.src;
} else if (row.calc == SC_COLUMNHEADERS) {
- html += QString("
%1 | ").arg(tr("Details"));
+ html += QString("
%1 | \n").arg(tr("Details"));
for (int j=0; j < periods.size(); j++) {
- html += QString("%3 | ").arg(periods.at(j).start.toString(Qt::ISODate)).arg(periods.at(j).end.toString(Qt::ISODate)).arg(periods.at(j).header);
+ html += QString("%3 | \n").arg(periods.at(j).start.toString(Qt::ISODate)).arg(periods.at(j).end.toString(Qt::ISODate)).arg(periods.at(j).header);
}
html += "
\n";
continue;
@@ -1022,20 +1023,29 @@ QString Statistics::GenerateHTML()
qSort(rxchange.begin(),rxchange.end());*/
html += "";
html += QString("
");
- html += "" + tr("Changes to Prescription Settings") + " |
";
+ html += "" + tr("Changes to Prescription Settings") + " |
";
QString extratxt;
QString tooltip;
- html += QString("%1 | %2 | %3 | %4 | %5 | %6 | %7 | %8 | %9 |
")
- .arg(STR_TR_First)
- .arg(STR_TR_Last)
- .arg(tr("Days"))
- .arg(ahitxt)
- .arg(tr("FL"))
- .arg(STR_TR_Machine)
- .arg(tr("Pr. Rel."))
- .arg(STR_TR_Mode)
- .arg(tr("Pressure Settings"));
+ QStringList hdrlist;
+ hdrlist.push_back(STR_TR_First);
+ hdrlist.push_back(STR_TR_Last);
+ hdrlist.push_back(tr("Days"));
+ hdrlist.push_back(ahitxt);
+ hdrlist.push_back(STR_TR_FL);
+ if (PROFILE.hasChannel(CPAP_SensAwake)) {
+ hdrlist.push_back(STR_TR_SA);
+ }
+ hdrlist.push_back(STR_TR_Machine);
+ hdrlist.push_back(tr("Pr. Rel."));
+ hdrlist.push_back(STR_TR_Mode);
+ hdrlist.push_back(tr("Pressure Settings"));
+
+ html+="\n";
+ for (int i=0; i < hdrlist.size(); ++i) {
+ html+=QString(" %1 | \n").arg(hdrlist.at(i));
+ }
+ html+="
\n";
for (int i = 0; i < rxchange.size(); i++) {
RXChange rx = rxchange.at(i);
@@ -1136,23 +1146,27 @@ QString Statistics::GenerateHTML()
tooltiphide = "tooltip.hide();";
}
- html += QString("%3 | %4 | %5 | %6 | %7 | %8 | %9 | %10 | %11 |
")
- .arg(rx.first.toString(Qt::ISODate))
- .arg(rx.last.toString(Qt::ISODate))
- .arg(rx.first.toString(Qt::SystemLocaleShortDate))
- .arg(rx.last.toString(Qt::SystemLocaleShortDate))
- .arg(rx.days)
- .arg(rx.ahi, 0, 'f', decimals)
- .arg(rx.fl, 0, 'f', decimals) // Not the best way to do this.. Todo: Add an extra field for data..
- .arg(rx.sa, 0, 'f', decimals) // Not the best way to do this.. Todo: Add an extra field for data..
- .arg(rx.machine->GetClass())
- .arg(presrel)
- .arg(schema::channel[CPAP_Mode].option(int(rx.mode) - 1))
- .arg(extratxt)
+ html += QString("")
+ .arg(color)
.arg(tooltipshow)
- .arg(tooltiphide);
+ .arg(tooltiphide)
+ .arg(rx.first.toString(Qt::ISODate))
+ .arg(rx.last.toString(Qt::ISODate));
+
+ html += QString("%1 | ").arg(rx.first.toString(Qt::SystemLocaleShortDate));
+ html += QString("%1 | ").arg(rx.last.toString(Qt::SystemLocaleShortDate));
+ html += QString("%1 | ").arg(rx.days);
+ html += QString("%1 | ").arg(rx.ahi, 0, 'f', decimals);
+ html += QString("%1 | ").arg(rx.fl, 0, 'f', decimals); // Not the best way to do this.. Todo: Add an extra field for data..
+
+ if (PROFILE.hasChannel(CPAP_SensAwake)) {
+ html += QString("%1 | ").arg(rx.sa, 0, 'f', decimals);
+ }
+ html += QString("%1 | ").arg(rx.machine->GetClass());
+ html += QString("%1 | ").arg(presrel);
+ html += QString("%1 | ").arg(schema::channel[CPAP_Mode].option(int(rx.mode) - 1));
+ html += QString("%1 | ").arg(extratxt);
+ html += "
";
}
html += "
";