From 7c15e9bd9c6cde035b8847e5f47287f710516df7 Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Tue, 24 Dec 2019 23:12:49 -0700 Subject: [PATCH] Add PressureSet, EPAPSet, and IPAPSet lines to Statistics page --- oscar/statistics.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index afede063..2a50e984 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -556,13 +556,24 @@ Statistics::Statistics(QObject *parent) : rows.push_back(StatisticsRow("Pressure", SC_MIN, MT_CPAP)); rows.push_back(StatisticsRow("Pressure", SC_MAX, MT_CPAP)); rows.push_back(StatisticsRow("Pressure", SC_90P, MT_CPAP)); + rows.push_back(StatisticsRow("PressureSet", SC_WAVG, MT_CPAP)); + rows.push_back(StatisticsRow("PressureSet", SC_MIN, MT_CPAP)); + rows.push_back(StatisticsRow("PressureSet", SC_MAX, MT_CPAP)); + rows.push_back(StatisticsRow("PressureSet", SC_90P, MT_CPAP)); rows.push_back(StatisticsRow("EPAP", SC_WAVG, MT_CPAP)); rows.push_back(StatisticsRow("EPAP", SC_MIN, MT_CPAP)); rows.push_back(StatisticsRow("EPAP", SC_MAX, MT_CPAP)); + rows.push_back(StatisticsRow("EPAPSet", SC_WAVG, MT_CPAP)); + rows.push_back(StatisticsRow("EPAPSet", SC_MIN, MT_CPAP)); + rows.push_back(StatisticsRow("EPAPSet", SC_MAX, MT_CPAP)); rows.push_back(StatisticsRow("IPAP", SC_WAVG, MT_CPAP)); rows.push_back(StatisticsRow("IPAP", SC_90P, MT_CPAP)); rows.push_back(StatisticsRow("IPAP", SC_MIN, MT_CPAP)); rows.push_back(StatisticsRow("IPAP", SC_MAX, MT_CPAP)); + rows.push_back(StatisticsRow("IPAPSet", SC_WAVG, MT_CPAP)); + rows.push_back(StatisticsRow("IPAPSet", SC_90P, MT_CPAP)); + rows.push_back(StatisticsRow("IPAPSet", SC_MIN, MT_CPAP)); + rows.push_back(StatisticsRow("IPAPSet", SC_MAX, MT_CPAP)); rows.push_back(StatisticsRow("", SC_HEADING, MT_OXIMETER)); // Just adds some space rows.push_back(StatisticsRow(tr("Oximeter Statistics"), SC_HEADING, MT_OXIMETER));