diff --git a/sleepyhead/SleepLib/schema.h b/sleepyhead/SleepLib/schema.h index f25757cc..1a5c8a9b 100644 --- a/sleepyhead/SleepLib/schema.h +++ b/sleepyhead/SleepLib/schema.h @@ -67,10 +67,10 @@ class Channel const QString &label() { return m_label; } const QString &units() { return m_unit; } - inline const EventDataType &upperThreshold() { return m_upperThreshold; } - inline const EventDataType &lowerThreshold() { return m_lowerThreshold; } - inline QColor &upperThresholdColor() { return m_upperThresholdColor; } - inline QColor &lowerThresholdColor() { return m_lowerThresholdColor; } + const EventDataType &upperThreshold() { return m_upperThreshold; } + const EventDataType &lowerThreshold() { return m_lowerThreshold; } + const QColor &upperThresholdColor() { return m_upperThresholdColor; } + const QColor &lowerThresholdColor() { return m_lowerThresholdColor; } const int &linkid() { return m_link; } diff --git a/sleepyhead/SleepLib/session.cpp b/sleepyhead/SleepLib/session.cpp index 06e57da8..836d3605 100644 --- a/sleepyhead/SleepLib/session.cpp +++ b/sleepyhead/SleepLib/session.cpp @@ -1660,6 +1660,9 @@ EventDataType Session::timeAboveThreshold(ChannelID id, EventDataType threshold) } } } + if (started) { + total += ti-started; + } EventDataType time = double(total) / 60000.0; return time; } @@ -1697,6 +1700,11 @@ EventDataType Session::timeBelowThreshold(ChannelID id, EventDataType threshold) } } } + + if (started) { + total += ti-started; + } + EventDataType time = double(total) / 60000.0; return time; } diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp index 8f8c28db..f470a947 100644 --- a/sleepyhead/daily.cpp +++ b/sleepyhead/daily.cpp @@ -371,6 +371,12 @@ Daily::Daily(QWidget *parent,gGraphView * shared) it.value()->AddLayer(new gXAxis(),LayerBottom,0,20); } + if (PROFILE.cpap->showLeakRedline()) { + schema::channel[CPAP_Leak].setUpperThreshold(PROFILE.cpap->leakRedline()); + } else { + schema::channel[CPAP_Leak].setUpperThreshold(0); // switch it off + } + layout->layout(); QTextCharFormat format = ui->calendar->weekdayTextFormat(Qt::Saturday); diff --git a/sleepyhead/statistics.cpp b/sleepyhead/statistics.cpp index d8c4d4a5..879bd40f 100644 --- a/sleepyhead/statistics.cpp +++ b/sleepyhead/statistics.cpp @@ -612,12 +612,6 @@ QString Statistics::GenerateHTML() name = ahitxt; } else if ((row.calc == SC_HOURS) || (row.calc == SC_COMPLIANCE)) { name = row.src; - } else if ((row.calc == SC_ABOVE) || (row.calc == SC_BELOW)) { - ChannelID id = schema::channel[row.src].id(); - if ((id == NoChannel) || (!PROFILE.hasChannel(id))) { - continue; - } - name = calcnames[row.calc].arg(schema::channel[id].fullname()); //.arg(tr("threshold")); } else if (row.calc == SC_COLUMNHEADERS) { html += QString("