From 87bdf725a75586416b55d4310b41ed027e9de1cb Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 15 May 2014 14:26:48 +1000 Subject: [PATCH] Fix statistics page html generation error for FPIcon --- sleepyhead/statistics.cpp | 72 +++++++++++++++++++++++---------------- 1 file changed, 43 insertions(+), 29 deletions(-) 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 += ""; + html += ""; QString extratxt; QString tooltip; - html += QString("") - .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(" \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("") - .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("").arg(rx.first.toString(Qt::SystemLocaleShortDate)); + html += QString("").arg(rx.last.toString(Qt::SystemLocaleShortDate)); + html += QString("").arg(rx.days); + html += QString("").arg(rx.ahi, 0, 'f', decimals); + html += QString("").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("").arg(rx.sa, 0, 'f', decimals); + } + html += QString("").arg(rx.machine->GetClass()); + html += QString("").arg(presrel); + html += QString("").arg(schema::channel[CPAP_Mode].option(int(rx.mode) - 1)); + html += QString("").arg(extratxt); + html += ""; } html += "
" + tr("Changes to Prescription Settings") + "
" + tr("Changes to Prescription Settings") + "
%1%2%3%4%5%6%7%8%9
%1
%3%4%5%6%7%8%9%10%11
%1%1%1%1%1%1%1%1%1%1
";